diff --git a/docs/Any.md b/docs/Any.md index e2b6e149..453798cb 100644 --- a/docs/Any.md +++ b/docs/Any.md @@ -1,12 +1,12 @@ # Any -`Any` contains an arbitrary serialized protocol buffer message along with a URL that describes the type of the serialized message. Protobuf library provides support to pack/unpack Any values in the form of utility functions or additional generated methods of the Any type. Example 1: Pack and unpack a message in C++. Foo foo = ...; Any any; any.PackFrom(foo); ... if (any.UnpackTo(&foo)) { ... } Example 2: Pack and unpack a message in Java. Foo foo = ...; Any any = Any.pack(foo); ... if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() any.Pack(foo) ... if any.Is(Foo.DESCRIPTOR): any.Unpack(foo) ... Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) if err != nil { ... } ... foo := &pb.Foo{} if err := any.UnmarshalTo(foo); err != nil { ... } The pack methods provided by protobuf library will by default use 'type.googleapis.com/full.type.name' as the type URL and the unpack methods only use the fully qualified type name after the last '/' in the type URL, for example \"foo.bar.com/x/y.z\" will yield type name \"y.z\". JSON The JSON representation of an `Any` value uses the regular representation of the deserialized, embedded message, with an additional field `@type` which contains the type URL. Example: package google.profile; message Person { string first_name = 1; string last_name = 2; } { \"@type\": \"type.googleapis.com/google.profile.Person\", \"firstName\": , \"lastName\": } If the embedded message type is well-known and has a custom JSON representation, that representation will be embedded adding a field `value` which holds the custom JSON in addition to the `@type` field. Example (for message [google.protobuf.Duration][]): { \"@type\": \"type.googleapis.com/google.protobuf.Duration\", \"value\": \"1.212s\" } +`Any` contains an arbitrary serialized protocol buffer message along with a URL that describes the type of the serialized message. Protobuf library provides support to pack/unpack Any values in the form of utility functions or additional generated methods of the Any type. Example 1: Pack and unpack a message in C++. Foo foo = ...; Any any; any.PackFrom(foo); ... if (any.UnpackTo(&foo)) { ... } Example 2: Pack and unpack a message in Java. Foo foo = ...; Any any = Any.pack(foo); ... if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } // or ... if (any.isSameTypeAs(Foo.getDefaultInstance())) { foo = any.unpack(Foo.getDefaultInstance()); } Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() any.Pack(foo) ... if any.Is(Foo.DESCRIPTOR): any.Unpack(foo) ... Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) if err != nil { ... } ... foo := &pb.Foo{} if err := any.UnmarshalTo(foo); err != nil { ... } The pack methods provided by protobuf library will by default use 'type.googleapis.com/full.type.name' as the type URL and the unpack methods only use the fully qualified type name after the last '/' in the type URL, for example \"foo.bar.com/x/y.z\" will yield type name \"y.z\". JSON ==== The JSON representation of an `Any` value uses the regular representation of the deserialized, embedded message, with an additional field `@type` which contains the type URL. Example: package google.profile; message Person { string first_name = 1; string last_name = 2; } { \"@type\": \"type.googleapis.com/google.profile.Person\", \"firstName\": , \"lastName\": } If the embedded message type is well-known and has a custom JSON representation, that representation will be embedded adding a field `value` which holds the custom JSON in addition to the `@type` field. Example (for message [google.protobuf.Duration][]): { \"@type\": \"type.googleapis.com/google.protobuf.Duration\", \"value\": \"1.212s\" } ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**type** | **str** | A URL/resource name that uniquely identifies the type of the serialized protocol buffer message. This string must contain at least one \"/\" character. The last segment of the URL's path must represent the fully qualified name of the type (as in `path/google.protobuf.Duration`). The name should be in a canonical form (e.g., leading \".\" is not accepted). In practice, teams usually precompile into the binary all types that they expect it to use in the context of Any. However, for URLs which use the scheme `http`, `https`, or no scheme, one can optionally set up a type server that maps type URLs to message definitions as follows: * If no scheme is provided, `https` is assumed. * An HTTP GET on the URL must yield a [google.protobuf.Type][] value in binary format, or produce an error. * Applications are allowed to cache lookup results based on the URL, or have them precompiled into a binary to avoid any lookup. Therefore, binary compatibility needs to be preserved on changes to types. (Use versioned type names to manage breaking changes.) Note: this functionality is not currently available in the official protobuf release, and it is not used for type URLs beginning with type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) might be used with implementation specific semantics. | [optional] +**type** | **str** | A URL/resource name that uniquely identifies the type of the serialized protocol buffer message. This string must contain at least one \"/\" character. The last segment of the URL's path must represent the fully qualified name of the type (as in `path/google.protobuf.Duration`). The name should be in a canonical form (e.g., leading \".\" is not accepted). In practice, teams usually precompile into the binary all types that they expect it to use in the context of Any. However, for URLs which use the scheme `http`, `https`, or no scheme, one can optionally set up a type server that maps type URLs to message definitions as follows: * If no scheme is provided, `https` is assumed. * An HTTP GET on the URL must yield a [google.protobuf.Type][] value in binary format, or produce an error. * Applications are allowed to cache lookup results based on the URL, or have them precompiled into a binary to avoid any lookup. Therefore, binary compatibility needs to be preserved on changes to types. (Use versioned type names to manage breaking changes.) Note: this functionality is not currently available in the official protobuf release, and it is not used for type URLs beginning with type.googleapis.com. As of May 2023, there are no widely used type server implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) might be used with implementation specific semantics. | [optional] ## Example diff --git a/permify/api/bundle_api.py b/permify/api/bundle_api.py index 04986634..53261964 100644 --- a/permify/api/bundle_api.py +++ b/permify/api/bundle_api.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/api/data_api.py b/permify/api/data_api.py index 3c6cb791..4981b5df 100644 --- a/permify/api/data_api.py +++ b/permify/api/data_api.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/api/permission_api.py b/permify/api/permission_api.py index 61eaf6f6..0b3884ec 100644 --- a/permify/api/permission_api.py +++ b/permify/api/permission_api.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/api/schema_api.py b/permify/api/schema_api.py index e2e705cf..7480503a 100644 --- a/permify/api/schema_api.py +++ b/permify/api/schema_api.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/api/tenancy_api.py b/permify/api/tenancy_api.py index de221514..0517104e 100644 --- a/permify/api/tenancy_api.py +++ b/permify/api/tenancy_api.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/api/watch_api.py b/permify/api/watch_api.py index 1e7f4c88..0c80a3d2 100644 --- a/permify/api/watch_api.py +++ b/permify/api/watch_api.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/abstract_type.py b/permify/models/abstract_type.py index b7598455..36d2905a 100644 --- a/permify/models/abstract_type.py +++ b/permify/models/abstract_type.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/any.py b/permify/models/any.py index 293bf42a..89446116 100644 --- a/permify/models/any.py +++ b/permify/models/any.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -25,9 +25,9 @@ class Any(BaseModel): """ - `Any` contains an arbitrary serialized protocol buffer message along with a URL that describes the type of the serialized message. Protobuf library provides support to pack/unpack Any values in the form of utility functions or additional generated methods of the Any type. Example 1: Pack and unpack a message in C++. Foo foo = ...; Any any; any.PackFrom(foo); ... if (any.UnpackTo(&foo)) { ... } Example 2: Pack and unpack a message in Java. Foo foo = ...; Any any = Any.pack(foo); ... if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() any.Pack(foo) ... if any.Is(Foo.DESCRIPTOR): any.Unpack(foo) ... Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) if err != nil { ... } ... foo := &pb.Foo{} if err := any.UnmarshalTo(foo); err != nil { ... } The pack methods provided by protobuf library will by default use 'type.googleapis.com/full.type.name' as the type URL and the unpack methods only use the fully qualified type name after the last '/' in the type URL, for example \"foo.bar.com/x/y.z\" will yield type name \"y.z\". JSON The JSON representation of an `Any` value uses the regular representation of the deserialized, embedded message, with an additional field `@type` which contains the type URL. Example: package google.profile; message Person { string first_name = 1; string last_name = 2; } { \"@type\": \"type.googleapis.com/google.profile.Person\", \"firstName\": , \"lastName\": } If the embedded message type is well-known and has a custom JSON representation, that representation will be embedded adding a field `value` which holds the custom JSON in addition to the `@type` field. Example (for message [google.protobuf.Duration][]): { \"@type\": \"type.googleapis.com/google.protobuf.Duration\", \"value\": \"1.212s\" } + `Any` contains an arbitrary serialized protocol buffer message along with a URL that describes the type of the serialized message. Protobuf library provides support to pack/unpack Any values in the form of utility functions or additional generated methods of the Any type. Example 1: Pack and unpack a message in C++. Foo foo = ...; Any any; any.PackFrom(foo); ... if (any.UnpackTo(&foo)) { ... } Example 2: Pack and unpack a message in Java. Foo foo = ...; Any any = Any.pack(foo); ... if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } // or ... if (any.isSameTypeAs(Foo.getDefaultInstance())) { foo = any.unpack(Foo.getDefaultInstance()); } Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() any.Pack(foo) ... if any.Is(Foo.DESCRIPTOR): any.Unpack(foo) ... Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) if err != nil { ... } ... foo := &pb.Foo{} if err := any.UnmarshalTo(foo); err != nil { ... } The pack methods provided by protobuf library will by default use 'type.googleapis.com/full.type.name' as the type URL and the unpack methods only use the fully qualified type name after the last '/' in the type URL, for example \"foo.bar.com/x/y.z\" will yield type name \"y.z\". JSON ==== The JSON representation of an `Any` value uses the regular representation of the deserialized, embedded message, with an additional field `@type` which contains the type URL. Example: package google.profile; message Person { string first_name = 1; string last_name = 2; } { \"@type\": \"type.googleapis.com/google.profile.Person\", \"firstName\": , \"lastName\": } If the embedded message type is well-known and has a custom JSON representation, that representation will be embedded adding a field `value` which holds the custom JSON in addition to the `@type` field. Example (for message [google.protobuf.Duration][]): { \"@type\": \"type.googleapis.com/google.protobuf.Duration\", \"value\": \"1.212s\" } """ # noqa: E501 - type: Optional[StrictStr] = Field(default=None, description="A URL/resource name that uniquely identifies the type of the serialized protocol buffer message. This string must contain at least one \"/\" character. The last segment of the URL's path must represent the fully qualified name of the type (as in `path/google.protobuf.Duration`). The name should be in a canonical form (e.g., leading \".\" is not accepted). In practice, teams usually precompile into the binary all types that they expect it to use in the context of Any. However, for URLs which use the scheme `http`, `https`, or no scheme, one can optionally set up a type server that maps type URLs to message definitions as follows: * If no scheme is provided, `https` is assumed. * An HTTP GET on the URL must yield a [google.protobuf.Type][] value in binary format, or produce an error. * Applications are allowed to cache lookup results based on the URL, or have them precompiled into a binary to avoid any lookup. Therefore, binary compatibility needs to be preserved on changes to types. (Use versioned type names to manage breaking changes.) Note: this functionality is not currently available in the official protobuf release, and it is not used for type URLs beginning with type.googleapis.com. Schemes other than `http`, `https` (or the empty scheme) might be used with implementation specific semantics.", alias="@type") + type: Optional[StrictStr] = Field(default=None, description="A URL/resource name that uniquely identifies the type of the serialized protocol buffer message. This string must contain at least one \"/\" character. The last segment of the URL's path must represent the fully qualified name of the type (as in `path/google.protobuf.Duration`). The name should be in a canonical form (e.g., leading \".\" is not accepted). In practice, teams usually precompile into the binary all types that they expect it to use in the context of Any. However, for URLs which use the scheme `http`, `https`, or no scheme, one can optionally set up a type server that maps type URLs to message definitions as follows: * If no scheme is provided, `https` is assumed. * An HTTP GET on the URL must yield a [google.protobuf.Type][] value in binary format, or produce an error. * Applications are allowed to cache lookup results based on the URL, or have them precompiled into a binary to avoid any lookup. Therefore, binary compatibility needs to be preserved on changes to types. (Use versioned type names to manage breaking changes.) Note: this functionality is not currently available in the official protobuf release, and it is not used for type URLs beginning with type.googleapis.com. As of May 2023, there are no widely used type server implementations and no plans to implement one. Schemes other than `http`, `https` (or the empty scheme) might be used with implementation specific semantics.", alias="@type") additional_properties: Dict[str, Any] = {} __properties: ClassVar[List[str]] = ["@type"] diff --git a/permify/models/argument.py b/permify/models/argument.py index 703f3208..b416030a 100644 --- a/permify/models/argument.py +++ b/permify/models/argument.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/attribute.py b/permify/models/attribute.py index a79430e5..bab360fe 100644 --- a/permify/models/attribute.py +++ b/permify/models/attribute.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/attribute_definition.py b/permify/models/attribute_definition.py index 05c680ff..317c5095 100644 --- a/permify/models/attribute_definition.py +++ b/permify/models/attribute_definition.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/attribute_filter.py b/permify/models/attribute_filter.py index ac7648e1..c0d1e0e6 100644 --- a/permify/models/attribute_filter.py +++ b/permify/models/attribute_filter.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/attribute_read_request_metadata.py b/permify/models/attribute_read_request_metadata.py index a56951bf..431bd8d4 100644 --- a/permify/models/attribute_read_request_metadata.py +++ b/permify/models/attribute_read_request_metadata.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/attribute_read_response.py b/permify/models/attribute_read_response.py index f98f19a9..b501dac2 100644 --- a/permify/models/attribute_read_response.py +++ b/permify/models/attribute_read_response.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/attribute_type.py b/permify/models/attribute_type.py index 0e19e302..b2efd2d2 100644 --- a/permify/models/attribute_type.py +++ b/permify/models/attribute_type.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/bundle_delete_body.py b/permify/models/bundle_delete_body.py index fc2b3ec0..c3dac26c 100644 --- a/permify/models/bundle_delete_body.py +++ b/permify/models/bundle_delete_body.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/bundle_delete_response.py b/permify/models/bundle_delete_response.py index e6992ae3..3d6eabf2 100644 --- a/permify/models/bundle_delete_response.py +++ b/permify/models/bundle_delete_response.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/bundle_read_body.py b/permify/models/bundle_read_body.py index 94925535..5718db53 100644 --- a/permify/models/bundle_read_body.py +++ b/permify/models/bundle_read_body.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/bundle_read_response.py b/permify/models/bundle_read_response.py index d5c0505f..593d15e0 100644 --- a/permify/models/bundle_read_response.py +++ b/permify/models/bundle_read_response.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/bundle_run_response.py b/permify/models/bundle_run_response.py index 02b67576..fe85f34a 100644 --- a/permify/models/bundle_run_response.py +++ b/permify/models/bundle_run_response.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/bundle_write_body.py b/permify/models/bundle_write_body.py index 11a8a65b..39094a5e 100644 --- a/permify/models/bundle_write_body.py +++ b/permify/models/bundle_write_body.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/bundle_write_response.py b/permify/models/bundle_write_response.py index 1dcd06eb..f7ad350d 100644 --- a/permify/models/bundle_write_response.py +++ b/permify/models/bundle_write_response.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/check_body.py b/permify/models/check_body.py index 1475f63c..030afa50 100644 --- a/permify/models/check_body.py +++ b/permify/models/check_body.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/check_result.py b/permify/models/check_result.py index b7aa0490..1920a664 100644 --- a/permify/models/check_result.py +++ b/permify/models/check_result.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/checked_expr.py b/permify/models/checked_expr.py index 4ff74f42..12c22d46 100644 --- a/permify/models/checked_expr.py +++ b/permify/models/checked_expr.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/child.py b/permify/models/child.py index 1fd0d9b7..2941ab21 100644 --- a/permify/models/child.py +++ b/permify/models/child.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/comprehension.py b/permify/models/comprehension.py index 6345d8ce..1950e651 100644 --- a/permify/models/comprehension.py +++ b/permify/models/comprehension.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/computed_attribute.py b/permify/models/computed_attribute.py index 35bfdd58..0a231802 100644 --- a/permify/models/computed_attribute.py +++ b/permify/models/computed_attribute.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/computed_user_set.py b/permify/models/computed_user_set.py index a2977879..09813734 100644 --- a/permify/models/computed_user_set.py +++ b/permify/models/computed_user_set.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/constant.py b/permify/models/constant.py index eca9fb4c..0c9e8b18 100644 --- a/permify/models/constant.py +++ b/permify/models/constant.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/context.py b/permify/models/context.py index 25722529..fd2d08c3 100644 --- a/permify/models/context.py +++ b/permify/models/context.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/context_attribute.py b/permify/models/context_attribute.py index 38482e79..115bb7ce 100644 --- a/permify/models/context_attribute.py +++ b/permify/models/context_attribute.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/create_list.py b/permify/models/create_list.py index 11a0d418..5dd20ba6 100644 --- a/permify/models/create_list.py +++ b/permify/models/create_list.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/create_struct.py b/permify/models/create_struct.py index 5b405faf..302bca8d 100644 --- a/permify/models/create_struct.py +++ b/permify/models/create_struct.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/data_bundle.py b/permify/models/data_bundle.py index a2b26846..b21cbafd 100644 --- a/permify/models/data_bundle.py +++ b/permify/models/data_bundle.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/data_change.py b/permify/models/data_change.py index 0a225cbb..d5aecefb 100644 --- a/permify/models/data_change.py +++ b/permify/models/data_change.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/data_change_operation.py b/permify/models/data_change_operation.py index 32cd1a34..d254f527 100644 --- a/permify/models/data_change_operation.py +++ b/permify/models/data_change_operation.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/data_changes.py b/permify/models/data_changes.py index 38cf903a..b6762e9d 100644 --- a/permify/models/data_changes.py +++ b/permify/models/data_changes.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/data_delete_body.py b/permify/models/data_delete_body.py index aad00578..6bcc550c 100644 --- a/permify/models/data_delete_body.py +++ b/permify/models/data_delete_body.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/data_delete_response.py b/permify/models/data_delete_response.py index 36b7ff6e..65ca5fdf 100644 --- a/permify/models/data_delete_response.py +++ b/permify/models/data_delete_response.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/data_write_body.py b/permify/models/data_write_body.py index 08c25cad..7177442f 100644 --- a/permify/models/data_write_body.py +++ b/permify/models/data_write_body.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/data_write_request_metadata.py b/permify/models/data_write_request_metadata.py index cb26c15a..9f577633 100644 --- a/permify/models/data_write_request_metadata.py +++ b/permify/models/data_write_request_metadata.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/data_write_response.py b/permify/models/data_write_response.py index 701870d7..aeb11e8d 100644 --- a/permify/models/data_write_response.py +++ b/permify/models/data_write_response.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/delete_relationships_body.py b/permify/models/delete_relationships_body.py index 0c461408..e913c2a5 100644 --- a/permify/models/delete_relationships_body.py +++ b/permify/models/delete_relationships_body.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/entity.py b/permify/models/entity.py index 3ca8bd61..635564cf 100644 --- a/permify/models/entity.py +++ b/permify/models/entity.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/entity_definition.py b/permify/models/entity_definition.py index 43c83116..5ef68a57 100644 --- a/permify/models/entity_definition.py +++ b/permify/models/entity_definition.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/entity_definition_reference.py b/permify/models/entity_definition_reference.py index 124d54d3..17634d38 100644 --- a/permify/models/entity_definition_reference.py +++ b/permify/models/entity_definition_reference.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/entity_filter.py b/permify/models/entity_filter.py index 13ade507..6a5da1e7 100644 --- a/permify/models/entity_filter.py +++ b/permify/models/entity_filter.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/entry.py b/permify/models/entry.py index 64e92cce..92f82da4 100644 --- a/permify/models/entry.py +++ b/permify/models/entry.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/expand_leaf.py b/permify/models/expand_leaf.py index 6f5dfe6f..2f986958 100644 --- a/permify/models/expand_leaf.py +++ b/permify/models/expand_leaf.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/expand_tree_node.py b/permify/models/expand_tree_node.py index 66a1472f..63e2cea6 100644 --- a/permify/models/expand_tree_node.py +++ b/permify/models/expand_tree_node.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/expand_tree_node_operation.py b/permify/models/expand_tree_node_operation.py index 9d173fb6..b7b81742 100644 --- a/permify/models/expand_tree_node_operation.py +++ b/permify/models/expand_tree_node_operation.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/expr.py b/permify/models/expr.py index 278ceb62..d75576b1 100644 --- a/permify/models/expr.py +++ b/permify/models/expr.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/expr_call.py b/permify/models/expr_call.py index 1bb4f4d7..32d982c9 100644 --- a/permify/models/expr_call.py +++ b/permify/models/expr_call.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/function_type.py b/permify/models/function_type.py index d8e38490..6627bcf7 100644 --- a/permify/models/function_type.py +++ b/permify/models/function_type.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/ident.py b/permify/models/ident.py index b9eb6f96..68130530 100644 --- a/permify/models/ident.py +++ b/permify/models/ident.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/leaf.py b/permify/models/leaf.py index 1d7c9a84..615f4a53 100644 --- a/permify/models/leaf.py +++ b/permify/models/leaf.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/list_type.py b/permify/models/list_type.py index e0a45eee..31c8fa06 100644 --- a/permify/models/list_type.py +++ b/permify/models/list_type.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/lookup_entity_body.py b/permify/models/lookup_entity_body.py index c88a3347..debaf255 100644 --- a/permify/models/lookup_entity_body.py +++ b/permify/models/lookup_entity_body.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/lookup_entity_stream_body.py b/permify/models/lookup_entity_stream_body.py index ee99c771..4105a1c6 100644 --- a/permify/models/lookup_entity_stream_body.py +++ b/permify/models/lookup_entity_stream_body.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/lookup_subject_body.py b/permify/models/lookup_subject_body.py index 03db7d9f..d1d2684f 100644 --- a/permify/models/lookup_subject_body.py +++ b/permify/models/lookup_subject_body.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/map_type.py b/permify/models/map_type.py index 7d36be8c..85e20736 100644 --- a/permify/models/map_type.py +++ b/permify/models/map_type.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/partial_write_body.py b/permify/models/partial_write_body.py index bcac7f02..a3eeed32 100644 --- a/permify/models/partial_write_body.py +++ b/permify/models/partial_write_body.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/partials.py b/permify/models/partials.py index 514e0705..8342898f 100644 --- a/permify/models/partials.py +++ b/permify/models/partials.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/permission_check_request_metadata.py b/permify/models/permission_check_request_metadata.py index 22aea41f..daa2e7af 100644 --- a/permify/models/permission_check_request_metadata.py +++ b/permify/models/permission_check_request_metadata.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/permission_check_response.py b/permify/models/permission_check_response.py index 6453293d..b30dce56 100644 --- a/permify/models/permission_check_response.py +++ b/permify/models/permission_check_response.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/permission_check_response_metadata.py b/permify/models/permission_check_response_metadata.py index ba0c01b1..db28dd38 100644 --- a/permify/models/permission_check_response_metadata.py +++ b/permify/models/permission_check_response_metadata.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/permission_definition.py b/permify/models/permission_definition.py index 0866fad9..bd44c350 100644 --- a/permify/models/permission_definition.py +++ b/permify/models/permission_definition.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/permission_expand_body.py b/permify/models/permission_expand_body.py index 12c67cfd..da1bb161 100644 --- a/permify/models/permission_expand_body.py +++ b/permify/models/permission_expand_body.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/permission_expand_request_metadata.py b/permify/models/permission_expand_request_metadata.py index d201056c..cda74d62 100644 --- a/permify/models/permission_expand_request_metadata.py +++ b/permify/models/permission_expand_request_metadata.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/permission_expand_response.py b/permify/models/permission_expand_response.py index bd37279c..9cedec1e 100644 --- a/permify/models/permission_expand_response.py +++ b/permify/models/permission_expand_response.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/permission_lookup_entity_request_metadata.py b/permify/models/permission_lookup_entity_request_metadata.py index 67c0ee7b..1413596a 100644 --- a/permify/models/permission_lookup_entity_request_metadata.py +++ b/permify/models/permission_lookup_entity_request_metadata.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/permission_lookup_entity_response.py b/permify/models/permission_lookup_entity_response.py index 69057211..12ab206c 100644 --- a/permify/models/permission_lookup_entity_response.py +++ b/permify/models/permission_lookup_entity_response.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/permission_lookup_entity_stream_response.py b/permify/models/permission_lookup_entity_stream_response.py index 96025edf..600674dc 100644 --- a/permify/models/permission_lookup_entity_stream_response.py +++ b/permify/models/permission_lookup_entity_stream_response.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/permission_lookup_subject_request_metadata.py b/permify/models/permission_lookup_subject_request_metadata.py index 021af199..fd5455cf 100644 --- a/permify/models/permission_lookup_subject_request_metadata.py +++ b/permify/models/permission_lookup_subject_request_metadata.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/permission_lookup_subject_response.py b/permify/models/permission_lookup_subject_response.py index 8496f752..54878d52 100644 --- a/permify/models/permission_lookup_subject_response.py +++ b/permify/models/permission_lookup_subject_response.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/permission_subject_permission_request_metadata.py b/permify/models/permission_subject_permission_request_metadata.py index 58042af3..246535ba 100644 --- a/permify/models/permission_subject_permission_request_metadata.py +++ b/permify/models/permission_subject_permission_request_metadata.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/permission_subject_permission_response.py b/permify/models/permission_subject_permission_response.py index cec24309..78fd2022 100644 --- a/permify/models/permission_subject_permission_response.py +++ b/permify/models/permission_subject_permission_response.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/primitive_type.py b/permify/models/primitive_type.py index 7d6a5107..573cc69f 100644 --- a/permify/models/primitive_type.py +++ b/permify/models/primitive_type.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/read_attributes_body.py b/permify/models/read_attributes_body.py index 57812b17..8a7a0b96 100644 --- a/permify/models/read_attributes_body.py +++ b/permify/models/read_attributes_body.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/read_relationships_body.py b/permify/models/read_relationships_body.py index 09b1de22..3cf99f63 100644 --- a/permify/models/read_relationships_body.py +++ b/permify/models/read_relationships_body.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/relation_definition.py b/permify/models/relation_definition.py index 1c101f26..f326ea68 100644 --- a/permify/models/relation_definition.py +++ b/permify/models/relation_definition.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/relation_reference.py b/permify/models/relation_reference.py index 6492ff0b..7e26b9ed 100644 --- a/permify/models/relation_reference.py +++ b/permify/models/relation_reference.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/relationship_delete_response.py b/permify/models/relationship_delete_response.py index 87c20440..1f7243dc 100644 --- a/permify/models/relationship_delete_response.py +++ b/permify/models/relationship_delete_response.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/relationship_read_request_metadata.py b/permify/models/relationship_read_request_metadata.py index bc124c76..860e3c0f 100644 --- a/permify/models/relationship_read_request_metadata.py +++ b/permify/models/relationship_read_request_metadata.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/relationship_read_response.py b/permify/models/relationship_read_response.py index 7f3a7236..9fab4980 100644 --- a/permify/models/relationship_read_response.py +++ b/permify/models/relationship_read_response.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/relationship_write_request_metadata.py b/permify/models/relationship_write_request_metadata.py index 58352799..cec2f138 100644 --- a/permify/models/relationship_write_request_metadata.py +++ b/permify/models/relationship_write_request_metadata.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/relationship_write_response.py b/permify/models/relationship_write_response.py index 2750fd55..ec201adb 100644 --- a/permify/models/relationship_write_response.py +++ b/permify/models/relationship_write_response.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/rewrite.py b/permify/models/rewrite.py index fc3ddd74..8a1d33b0 100644 --- a/permify/models/rewrite.py +++ b/permify/models/rewrite.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/rewrite_operation.py b/permify/models/rewrite_operation.py index 49b15af3..634f65e7 100644 --- a/permify/models/rewrite_operation.py +++ b/permify/models/rewrite_operation.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/rule_definition.py b/permify/models/rule_definition.py index c8f5846f..804fdc68 100644 --- a/permify/models/rule_definition.py +++ b/permify/models/rule_definition.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/run_bundle_body.py b/permify/models/run_bundle_body.py index f957d507..88bcfde6 100644 --- a/permify/models/run_bundle_body.py +++ b/permify/models/run_bundle_body.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/schema_definition.py b/permify/models/schema_definition.py index dd3189eb..59f6d413 100644 --- a/permify/models/schema_definition.py +++ b/permify/models/schema_definition.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/schema_definition_reference.py b/permify/models/schema_definition_reference.py index f3463f5d..b74ad2ca 100644 --- a/permify/models/schema_definition_reference.py +++ b/permify/models/schema_definition_reference.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/schema_list.py b/permify/models/schema_list.py index bb4aa2a7..0458caa9 100644 --- a/permify/models/schema_list.py +++ b/permify/models/schema_list.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/schema_list_body.py b/permify/models/schema_list_body.py index 5aafa25b..23fbd8b6 100644 --- a/permify/models/schema_list_body.py +++ b/permify/models/schema_list_body.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/schema_list_response.py b/permify/models/schema_list_response.py index 3043a396..2ad8bee0 100644 --- a/permify/models/schema_list_response.py +++ b/permify/models/schema_list_response.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/schema_partial_write_request_metadata.py b/permify/models/schema_partial_write_request_metadata.py index 01131f11..eb85dcde 100644 --- a/permify/models/schema_partial_write_request_metadata.py +++ b/permify/models/schema_partial_write_request_metadata.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/schema_partial_write_response.py b/permify/models/schema_partial_write_response.py index 9e265c14..26af4863 100644 --- a/permify/models/schema_partial_write_response.py +++ b/permify/models/schema_partial_write_response.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/schema_read_body.py b/permify/models/schema_read_body.py index 97cb5201..41bc40df 100644 --- a/permify/models/schema_read_body.py +++ b/permify/models/schema_read_body.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/schema_read_request_metadata.py b/permify/models/schema_read_request_metadata.py index 5ecc36d1..2191e345 100644 --- a/permify/models/schema_read_request_metadata.py +++ b/permify/models/schema_read_request_metadata.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/schema_read_response.py b/permify/models/schema_read_response.py index 8cb9cd09..f06b020f 100644 --- a/permify/models/schema_read_response.py +++ b/permify/models/schema_read_response.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/schema_write_body.py b/permify/models/schema_write_body.py index 6c7d787a..f0bfcad0 100644 --- a/permify/models/schema_write_body.py +++ b/permify/models/schema_write_body.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/schema_write_response.py b/permify/models/schema_write_response.py index d2c5da33..eaa4b08e 100644 --- a/permify/models/schema_write_response.py +++ b/permify/models/schema_write_response.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/select.py b/permify/models/select.py index 3ef799b2..76233419 100644 --- a/permify/models/select.py +++ b/permify/models/select.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/source_info.py b/permify/models/source_info.py index d0a49e11..f2b6eee8 100644 --- a/permify/models/source_info.py +++ b/permify/models/source_info.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/status.py b/permify/models/status.py index d8a7e322..9bf6f646 100644 --- a/permify/models/status.py +++ b/permify/models/status.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/stream_result_of_permission_lookup_entity_stream_response.py b/permify/models/stream_result_of_permission_lookup_entity_stream_response.py index 3f42c048..154fd83d 100644 --- a/permify/models/stream_result_of_permission_lookup_entity_stream_response.py +++ b/permify/models/stream_result_of_permission_lookup_entity_stream_response.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/stream_result_of_watch_response.py b/permify/models/stream_result_of_watch_response.py index b1268a8d..6a70f365 100644 --- a/permify/models/stream_result_of_watch_response.py +++ b/permify/models/stream_result_of_watch_response.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/subject.py b/permify/models/subject.py index a26ad7ac..d4a5748c 100644 --- a/permify/models/subject.py +++ b/permify/models/subject.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/subject_filter.py b/permify/models/subject_filter.py index 9a97022e..56541827 100644 --- a/permify/models/subject_filter.py +++ b/permify/models/subject_filter.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/subject_permission_body.py b/permify/models/subject_permission_body.py index 7b83e5c5..ed806404 100644 --- a/permify/models/subject_permission_body.py +++ b/permify/models/subject_permission_body.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/subjects.py b/permify/models/subjects.py index a948d75e..762fd69f 100644 --- a/permify/models/subjects.py +++ b/permify/models/subjects.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/tenant.py b/permify/models/tenant.py index 12b8ef39..3b0add94 100644 --- a/permify/models/tenant.py +++ b/permify/models/tenant.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/tenant_create_request.py b/permify/models/tenant_create_request.py index d00bb291..0183b476 100644 --- a/permify/models/tenant_create_request.py +++ b/permify/models/tenant_create_request.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/tenant_create_response.py b/permify/models/tenant_create_response.py index 0b469e8c..07f875ce 100644 --- a/permify/models/tenant_create_response.py +++ b/permify/models/tenant_create_response.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/tenant_delete_response.py b/permify/models/tenant_delete_response.py index 3f3af101..64a31eb8 100644 --- a/permify/models/tenant_delete_response.py +++ b/permify/models/tenant_delete_response.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/tenant_list_request.py b/permify/models/tenant_list_request.py index a38bb98e..335e0cee 100644 --- a/permify/models/tenant_list_request.py +++ b/permify/models/tenant_list_request.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/tenant_list_response.py b/permify/models/tenant_list_response.py index e787953b..6e9846ac 100644 --- a/permify/models/tenant_list_response.py +++ b/permify/models/tenant_list_response.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/tuple.py b/permify/models/tuple.py index d318cdbc..cf930741 100644 --- a/permify/models/tuple.py +++ b/permify/models/tuple.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/tuple_filter.py b/permify/models/tuple_filter.py index 81d46a92..aed3d4b6 100644 --- a/permify/models/tuple_filter.py +++ b/permify/models/tuple_filter.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/tuple_set.py b/permify/models/tuple_set.py index ca8d423d..de47e090 100644 --- a/permify/models/tuple_set.py +++ b/permify/models/tuple_set.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/tuple_to_user_set.py b/permify/models/tuple_to_user_set.py index 200c5f82..74af3657 100644 --- a/permify/models/tuple_to_user_set.py +++ b/permify/models/tuple_to_user_set.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/v1_call.py b/permify/models/v1_call.py index 4adda0b5..fbf18aa1 100644 --- a/permify/models/v1_call.py +++ b/permify/models/v1_call.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/v1_expand.py b/permify/models/v1_expand.py index d19a0e16..27025aa8 100644 --- a/permify/models/v1_expand.py +++ b/permify/models/v1_expand.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/v1_operation.py b/permify/models/v1_operation.py index 0ac6baa3..ab467b49 100644 --- a/permify/models/v1_operation.py +++ b/permify/models/v1_operation.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/v1alpha1_reference.py b/permify/models/v1alpha1_reference.py index d3073561..3547647b 100644 --- a/permify/models/v1alpha1_reference.py +++ b/permify/models/v1alpha1_reference.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/v1alpha1_type.py b/permify/models/v1alpha1_type.py index 6b889659..a5fb79dd 100644 --- a/permify/models/v1alpha1_type.py +++ b/permify/models/v1alpha1_type.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/values.py b/permify/models/values.py index 62bdd7b5..ec518e37 100644 --- a/permify/models/values.py +++ b/permify/models/values.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/watch_body.py b/permify/models/watch_body.py index 66ed9c42..ab4d16e7 100644 --- a/permify/models/watch_body.py +++ b/permify/models/watch_body.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/watch_response.py b/permify/models/watch_response.py index 5d5a7ff1..4109b09e 100644 --- a/permify/models/watch_response.py +++ b/permify/models/watch_response.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/well_known_type.py b/permify/models/well_known_type.py index 31d6d167..f8e04bbd 100644 --- a/permify/models/well_known_type.py +++ b/permify/models/well_known_type.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/permify/models/write_relationships_body.py b/permify/models/write_relationships_body.py index 1080bd43..539b0886 100644 --- a/permify/models/write_relationships_body.py +++ b/permify/models/write_relationships_body.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_abstract_type.py b/test/test_abstract_type.py index c0c024a0..eaf069fa 100644 --- a/test/test_abstract_type.py +++ b/test/test_abstract_type.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_any.py b/test/test_any.py index dddfb1c4..560e2e9d 100644 --- a/test/test_any.py +++ b/test/test_any.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_argument.py b/test/test_argument.py index 3136fdc3..ad2b9704 100644 --- a/test/test_argument.py +++ b/test/test_argument.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_attribute.py b/test/test_attribute.py index f6012c9d..9419a709 100644 --- a/test/test_attribute.py +++ b/test/test_attribute.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_attribute_definition.py b/test/test_attribute_definition.py index f1948f41..3e56081c 100644 --- a/test/test_attribute_definition.py +++ b/test/test_attribute_definition.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_attribute_filter.py b/test/test_attribute_filter.py index 8b421f82..58354731 100644 --- a/test/test_attribute_filter.py +++ b/test/test_attribute_filter.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_attribute_read_request_metadata.py b/test/test_attribute_read_request_metadata.py index 88fb4f4e..d8e9ed02 100644 --- a/test/test_attribute_read_request_metadata.py +++ b/test/test_attribute_read_request_metadata.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_attribute_read_response.py b/test/test_attribute_read_response.py index 3d509376..74421c23 100644 --- a/test/test_attribute_read_response.py +++ b/test/test_attribute_read_response.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_attribute_type.py b/test/test_attribute_type.py index 0845e0cd..6fac20f4 100644 --- a/test/test_attribute_type.py +++ b/test/test_attribute_type.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_bundle_api.py b/test/test_bundle_api.py index 2473c7ea..db1326e7 100644 --- a/test/test_bundle_api.py +++ b/test/test_bundle_api.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_bundle_delete_body.py b/test/test_bundle_delete_body.py index 16d94688..e0eb4891 100644 --- a/test/test_bundle_delete_body.py +++ b/test/test_bundle_delete_body.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_bundle_delete_response.py b/test/test_bundle_delete_response.py index 5e91f58f..a53b5325 100644 --- a/test/test_bundle_delete_response.py +++ b/test/test_bundle_delete_response.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_bundle_read_body.py b/test/test_bundle_read_body.py index b3cc6f09..897f708a 100644 --- a/test/test_bundle_read_body.py +++ b/test/test_bundle_read_body.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_bundle_read_response.py b/test/test_bundle_read_response.py index 34380ee6..fe49b5e7 100644 --- a/test/test_bundle_read_response.py +++ b/test/test_bundle_read_response.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_bundle_run_response.py b/test/test_bundle_run_response.py index 5781d504..910c151b 100644 --- a/test/test_bundle_run_response.py +++ b/test/test_bundle_run_response.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_bundle_write_body.py b/test/test_bundle_write_body.py index b3b63eb1..ab9211fc 100644 --- a/test/test_bundle_write_body.py +++ b/test/test_bundle_write_body.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_bundle_write_response.py b/test/test_bundle_write_response.py index a5643024..3ac9048b 100644 --- a/test/test_bundle_write_response.py +++ b/test/test_bundle_write_response.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_check_body.py b/test/test_check_body.py index 2787c86b..6493054f 100644 --- a/test/test_check_body.py +++ b/test/test_check_body.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_check_result.py b/test/test_check_result.py index c69ddc4a..89f97db6 100644 --- a/test/test_check_result.py +++ b/test/test_check_result.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_checked_expr.py b/test/test_checked_expr.py index a62785f2..b9f91375 100644 --- a/test/test_checked_expr.py +++ b/test/test_checked_expr.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_child.py b/test/test_child.py index c6502d40..d32a41f9 100644 --- a/test/test_child.py +++ b/test/test_child.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_comprehension.py b/test/test_comprehension.py index edc7062b..c9f6b487 100644 --- a/test/test_comprehension.py +++ b/test/test_comprehension.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_computed_attribute.py b/test/test_computed_attribute.py index 7c59be15..82cdf6ea 100644 --- a/test/test_computed_attribute.py +++ b/test/test_computed_attribute.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_computed_user_set.py b/test/test_computed_user_set.py index 0ccb6d08..b07d2609 100644 --- a/test/test_computed_user_set.py +++ b/test/test_computed_user_set.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_constant.py b/test/test_constant.py index 0ee818ba..a4c80d72 100644 --- a/test/test_constant.py +++ b/test/test_constant.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_context.py b/test/test_context.py index 95c3dc49..51bed26a 100644 --- a/test/test_context.py +++ b/test/test_context.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_context_attribute.py b/test/test_context_attribute.py index 07b5ce38..5aa7fdb3 100644 --- a/test/test_context_attribute.py +++ b/test/test_context_attribute.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_create_list.py b/test/test_create_list.py index a19fb2b3..29a7c80d 100644 --- a/test/test_create_list.py +++ b/test/test_create_list.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_create_struct.py b/test/test_create_struct.py index c0fa1d46..faa016a7 100644 --- a/test/test_create_struct.py +++ b/test/test_create_struct.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_data_api.py b/test/test_data_api.py index 5c1485c3..3eb9e720 100644 --- a/test/test_data_api.py +++ b/test/test_data_api.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_data_bundle.py b/test/test_data_bundle.py index e2079dfd..0c430393 100644 --- a/test/test_data_bundle.py +++ b/test/test_data_bundle.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_data_change.py b/test/test_data_change.py index 6f3da843..acbc0ae1 100644 --- a/test/test_data_change.py +++ b/test/test_data_change.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_data_change_operation.py b/test/test_data_change_operation.py index 576b3b7d..d26d91f8 100644 --- a/test/test_data_change_operation.py +++ b/test/test_data_change_operation.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_data_changes.py b/test/test_data_changes.py index 93231fc9..c5da75c7 100644 --- a/test/test_data_changes.py +++ b/test/test_data_changes.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_data_delete_body.py b/test/test_data_delete_body.py index 50e02dc6..9b9900ce 100644 --- a/test/test_data_delete_body.py +++ b/test/test_data_delete_body.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_data_delete_response.py b/test/test_data_delete_response.py index 80f23865..7cef55fc 100644 --- a/test/test_data_delete_response.py +++ b/test/test_data_delete_response.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_data_write_body.py b/test/test_data_write_body.py index deb0b415..7feaa8ca 100644 --- a/test/test_data_write_body.py +++ b/test/test_data_write_body.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_data_write_request_metadata.py b/test/test_data_write_request_metadata.py index 7901518c..10568d03 100644 --- a/test/test_data_write_request_metadata.py +++ b/test/test_data_write_request_metadata.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_data_write_response.py b/test/test_data_write_response.py index 56e7d3e7..2c9b5980 100644 --- a/test/test_data_write_response.py +++ b/test/test_data_write_response.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_delete_relationships_body.py b/test/test_delete_relationships_body.py index 1e69e809..f5d14914 100644 --- a/test/test_delete_relationships_body.py +++ b/test/test_delete_relationships_body.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_entity.py b/test/test_entity.py index 9a79bc96..9d83a4f5 100644 --- a/test/test_entity.py +++ b/test/test_entity.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_entity_definition.py b/test/test_entity_definition.py index f9990fc6..4bdb3998 100644 --- a/test/test_entity_definition.py +++ b/test/test_entity_definition.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_entity_definition_reference.py b/test/test_entity_definition_reference.py index 300bc503..b08959e9 100644 --- a/test/test_entity_definition_reference.py +++ b/test/test_entity_definition_reference.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_entity_filter.py b/test/test_entity_filter.py index cc76e078..12886700 100644 --- a/test/test_entity_filter.py +++ b/test/test_entity_filter.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_entry.py b/test/test_entry.py index 247e3e97..8aff379a 100644 --- a/test/test_entry.py +++ b/test/test_entry.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_expand_leaf.py b/test/test_expand_leaf.py index 9f48fc20..6993597b 100644 --- a/test/test_expand_leaf.py +++ b/test/test_expand_leaf.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_expand_tree_node.py b/test/test_expand_tree_node.py index 38ffe0b2..1ad9949f 100644 --- a/test/test_expand_tree_node.py +++ b/test/test_expand_tree_node.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_expand_tree_node_operation.py b/test/test_expand_tree_node_operation.py index 50a25adc..afbd3eb3 100644 --- a/test/test_expand_tree_node_operation.py +++ b/test/test_expand_tree_node_operation.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_expr.py b/test/test_expr.py index 2ef8ab98..12a3f3f5 100644 --- a/test/test_expr.py +++ b/test/test_expr.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_expr_call.py b/test/test_expr_call.py index fc30df90..098589fd 100644 --- a/test/test_expr_call.py +++ b/test/test_expr_call.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_function_type.py b/test/test_function_type.py index 4f123835..63c95f85 100644 --- a/test/test_function_type.py +++ b/test/test_function_type.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_ident.py b/test/test_ident.py index 9bd3873c..d8287422 100644 --- a/test/test_ident.py +++ b/test/test_ident.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_leaf.py b/test/test_leaf.py index 03529d90..63067f8d 100644 --- a/test/test_leaf.py +++ b/test/test_leaf.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_list_type.py b/test/test_list_type.py index 3cdbe4f9..8a5277ca 100644 --- a/test/test_list_type.py +++ b/test/test_list_type.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_lookup_entity_body.py b/test/test_lookup_entity_body.py index 6d4ffffd..d0cad82a 100644 --- a/test/test_lookup_entity_body.py +++ b/test/test_lookup_entity_body.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_lookup_entity_stream_body.py b/test/test_lookup_entity_stream_body.py index f6bdb85d..64a5cb84 100644 --- a/test/test_lookup_entity_stream_body.py +++ b/test/test_lookup_entity_stream_body.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_lookup_subject_body.py b/test/test_lookup_subject_body.py index 93438ab6..0cd00e28 100644 --- a/test/test_lookup_subject_body.py +++ b/test/test_lookup_subject_body.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_map_type.py b/test/test_map_type.py index 37c77076..e0c3c928 100644 --- a/test/test_map_type.py +++ b/test/test_map_type.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_partial_write_body.py b/test/test_partial_write_body.py index fd4f8df9..d4b7d43e 100644 --- a/test/test_partial_write_body.py +++ b/test/test_partial_write_body.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_partials.py b/test/test_partials.py index 13796ec8..90a229b9 100644 --- a/test/test_partials.py +++ b/test/test_partials.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_permission_api.py b/test/test_permission_api.py index 2cdb2339..92ea0606 100644 --- a/test/test_permission_api.py +++ b/test/test_permission_api.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_permission_check_request_metadata.py b/test/test_permission_check_request_metadata.py index b5739665..f354c24a 100644 --- a/test/test_permission_check_request_metadata.py +++ b/test/test_permission_check_request_metadata.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_permission_check_response.py b/test/test_permission_check_response.py index 15cf9dfe..00130fab 100644 --- a/test/test_permission_check_response.py +++ b/test/test_permission_check_response.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_permission_check_response_metadata.py b/test/test_permission_check_response_metadata.py index c4cf1c9d..1750dca4 100644 --- a/test/test_permission_check_response_metadata.py +++ b/test/test_permission_check_response_metadata.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_permission_definition.py b/test/test_permission_definition.py index 9ef85d3e..6b128705 100644 --- a/test/test_permission_definition.py +++ b/test/test_permission_definition.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_permission_expand_body.py b/test/test_permission_expand_body.py index 355a36fb..f5008534 100644 --- a/test/test_permission_expand_body.py +++ b/test/test_permission_expand_body.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_permission_expand_request_metadata.py b/test/test_permission_expand_request_metadata.py index 328d13b0..ad47cf62 100644 --- a/test/test_permission_expand_request_metadata.py +++ b/test/test_permission_expand_request_metadata.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_permission_expand_response.py b/test/test_permission_expand_response.py index a964ab4e..cb56e8c3 100644 --- a/test/test_permission_expand_response.py +++ b/test/test_permission_expand_response.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_permission_lookup_entity_request_metadata.py b/test/test_permission_lookup_entity_request_metadata.py index 7757a1ac..b2b6671a 100644 --- a/test/test_permission_lookup_entity_request_metadata.py +++ b/test/test_permission_lookup_entity_request_metadata.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_permission_lookup_entity_response.py b/test/test_permission_lookup_entity_response.py index 001be71b..a00f1fa3 100644 --- a/test/test_permission_lookup_entity_response.py +++ b/test/test_permission_lookup_entity_response.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_permission_lookup_entity_stream_response.py b/test/test_permission_lookup_entity_stream_response.py index 656cb2d6..b9be80d9 100644 --- a/test/test_permission_lookup_entity_stream_response.py +++ b/test/test_permission_lookup_entity_stream_response.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_permission_lookup_subject_request_metadata.py b/test/test_permission_lookup_subject_request_metadata.py index 0fc108f4..f3ce398b 100644 --- a/test/test_permission_lookup_subject_request_metadata.py +++ b/test/test_permission_lookup_subject_request_metadata.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_permission_lookup_subject_response.py b/test/test_permission_lookup_subject_response.py index e29bd1ab..d8a4cd2a 100644 --- a/test/test_permission_lookup_subject_response.py +++ b/test/test_permission_lookup_subject_response.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_permission_subject_permission_request_metadata.py b/test/test_permission_subject_permission_request_metadata.py index b33d9376..a6e22d2a 100644 --- a/test/test_permission_subject_permission_request_metadata.py +++ b/test/test_permission_subject_permission_request_metadata.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_permission_subject_permission_response.py b/test/test_permission_subject_permission_response.py index 34c0843e..321cf006 100644 --- a/test/test_permission_subject_permission_response.py +++ b/test/test_permission_subject_permission_response.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_primitive_type.py b/test/test_primitive_type.py index 23a6d923..d125bc88 100644 --- a/test/test_primitive_type.py +++ b/test/test_primitive_type.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_read_attributes_body.py b/test/test_read_attributes_body.py index f1775a02..eefdd17b 100644 --- a/test/test_read_attributes_body.py +++ b/test/test_read_attributes_body.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_read_relationships_body.py b/test/test_read_relationships_body.py index e1194dce..b97149c7 100644 --- a/test/test_read_relationships_body.py +++ b/test/test_read_relationships_body.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_relation_definition.py b/test/test_relation_definition.py index 4f639dc4..7793db41 100644 --- a/test/test_relation_definition.py +++ b/test/test_relation_definition.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_relation_reference.py b/test/test_relation_reference.py index b7821115..2cbb4d0f 100644 --- a/test/test_relation_reference.py +++ b/test/test_relation_reference.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_relationship_delete_response.py b/test/test_relationship_delete_response.py index 36f7b782..cc4ada5f 100644 --- a/test/test_relationship_delete_response.py +++ b/test/test_relationship_delete_response.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_relationship_read_request_metadata.py b/test/test_relationship_read_request_metadata.py index 944e6c91..aa10c533 100644 --- a/test/test_relationship_read_request_metadata.py +++ b/test/test_relationship_read_request_metadata.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_relationship_read_response.py b/test/test_relationship_read_response.py index dedf375b..8b3c54fd 100644 --- a/test/test_relationship_read_response.py +++ b/test/test_relationship_read_response.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_relationship_write_request_metadata.py b/test/test_relationship_write_request_metadata.py index 72edc36b..1c345cae 100644 --- a/test/test_relationship_write_request_metadata.py +++ b/test/test_relationship_write_request_metadata.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_relationship_write_response.py b/test/test_relationship_write_response.py index 12941e89..78d23b70 100644 --- a/test/test_relationship_write_response.py +++ b/test/test_relationship_write_response.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_rewrite.py b/test/test_rewrite.py index f67088f2..1c6e7237 100644 --- a/test/test_rewrite.py +++ b/test/test_rewrite.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_rewrite_operation.py b/test/test_rewrite_operation.py index 99a9fd55..7d73e20f 100644 --- a/test/test_rewrite_operation.py +++ b/test/test_rewrite_operation.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_rule_definition.py b/test/test_rule_definition.py index 0925034f..8fbe00e5 100644 --- a/test/test_rule_definition.py +++ b/test/test_rule_definition.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_run_bundle_body.py b/test/test_run_bundle_body.py index 5f57ee20..866e2cf8 100644 --- a/test/test_run_bundle_body.py +++ b/test/test_run_bundle_body.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_schema_api.py b/test/test_schema_api.py index 68aa7699..dbe50f96 100644 --- a/test/test_schema_api.py +++ b/test/test_schema_api.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_schema_definition.py b/test/test_schema_definition.py index 0d2bd899..33a2f8a9 100644 --- a/test/test_schema_definition.py +++ b/test/test_schema_definition.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_schema_definition_reference.py b/test/test_schema_definition_reference.py index 1e43be5b..09ea3cbf 100644 --- a/test/test_schema_definition_reference.py +++ b/test/test_schema_definition_reference.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_schema_list.py b/test/test_schema_list.py index 6bf6447e..a35b70ae 100644 --- a/test/test_schema_list.py +++ b/test/test_schema_list.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_schema_list_body.py b/test/test_schema_list_body.py index db1a8202..5475167f 100644 --- a/test/test_schema_list_body.py +++ b/test/test_schema_list_body.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_schema_list_response.py b/test/test_schema_list_response.py index 1773c15d..90a9e614 100644 --- a/test/test_schema_list_response.py +++ b/test/test_schema_list_response.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_schema_partial_write_request_metadata.py b/test/test_schema_partial_write_request_metadata.py index 1bc3ffac..e482bb49 100644 --- a/test/test_schema_partial_write_request_metadata.py +++ b/test/test_schema_partial_write_request_metadata.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_schema_partial_write_response.py b/test/test_schema_partial_write_response.py index 2170d762..a3cfaf12 100644 --- a/test/test_schema_partial_write_response.py +++ b/test/test_schema_partial_write_response.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_schema_read_body.py b/test/test_schema_read_body.py index 9213f531..bc72073f 100644 --- a/test/test_schema_read_body.py +++ b/test/test_schema_read_body.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_schema_read_request_metadata.py b/test/test_schema_read_request_metadata.py index 17f87231..ebd04aa6 100644 --- a/test/test_schema_read_request_metadata.py +++ b/test/test_schema_read_request_metadata.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_schema_read_response.py b/test/test_schema_read_response.py index 1e6557d7..dc4c32c2 100644 --- a/test/test_schema_read_response.py +++ b/test/test_schema_read_response.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_schema_write_body.py b/test/test_schema_write_body.py index 3ab13e91..ba6514c6 100644 --- a/test/test_schema_write_body.py +++ b/test/test_schema_write_body.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_schema_write_response.py b/test/test_schema_write_response.py index 7da110d0..fe7bb3af 100644 --- a/test/test_schema_write_response.py +++ b/test/test_schema_write_response.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_select.py b/test/test_select.py index 51704ceb..cefcd926 100644 --- a/test/test_select.py +++ b/test/test_select.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_source_info.py b/test/test_source_info.py index edfa71a2..91b69257 100644 --- a/test/test_source_info.py +++ b/test/test_source_info.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_status.py b/test/test_status.py index 0ea373e3..e3b87c0b 100644 --- a/test/test_status.py +++ b/test/test_status.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_stream_result_of_permission_lookup_entity_stream_response.py b/test/test_stream_result_of_permission_lookup_entity_stream_response.py index 863fb7c3..daff0f2e 100644 --- a/test/test_stream_result_of_permission_lookup_entity_stream_response.py +++ b/test/test_stream_result_of_permission_lookup_entity_stream_response.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_stream_result_of_watch_response.py b/test/test_stream_result_of_watch_response.py index 53d126d5..1f735a14 100644 --- a/test/test_stream_result_of_watch_response.py +++ b/test/test_stream_result_of_watch_response.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_subject.py b/test/test_subject.py index 3c3e5e19..9b1195e5 100644 --- a/test/test_subject.py +++ b/test/test_subject.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_subject_filter.py b/test/test_subject_filter.py index b2e5d857..28eebb66 100644 --- a/test/test_subject_filter.py +++ b/test/test_subject_filter.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_subject_permission_body.py b/test/test_subject_permission_body.py index 481f5683..03b3c764 100644 --- a/test/test_subject_permission_body.py +++ b/test/test_subject_permission_body.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_subjects.py b/test/test_subjects.py index a9c2556b..635e7d6d 100644 --- a/test/test_subjects.py +++ b/test/test_subjects.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_tenancy_api.py b/test/test_tenancy_api.py index 4a9997a6..4aa13729 100644 --- a/test/test_tenancy_api.py +++ b/test/test_tenancy_api.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_tenant.py b/test/test_tenant.py index 24afbfde..ffc83f63 100644 --- a/test/test_tenant.py +++ b/test/test_tenant.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_tenant_create_request.py b/test/test_tenant_create_request.py index f511776f..2945d630 100644 --- a/test/test_tenant_create_request.py +++ b/test/test_tenant_create_request.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_tenant_create_response.py b/test/test_tenant_create_response.py index fd7f0f05..11899883 100644 --- a/test/test_tenant_create_response.py +++ b/test/test_tenant_create_response.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_tenant_delete_response.py b/test/test_tenant_delete_response.py index 032a73ee..f00b0f15 100644 --- a/test/test_tenant_delete_response.py +++ b/test/test_tenant_delete_response.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_tenant_list_request.py b/test/test_tenant_list_request.py index 547edf7c..1bd98f6d 100644 --- a/test/test_tenant_list_request.py +++ b/test/test_tenant_list_request.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_tenant_list_response.py b/test/test_tenant_list_response.py index 630d5436..e10edaa9 100644 --- a/test/test_tenant_list_response.py +++ b/test/test_tenant_list_response.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_tuple.py b/test/test_tuple.py index 1fea3d6e..eb46658b 100644 --- a/test/test_tuple.py +++ b/test/test_tuple.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_tuple_filter.py b/test/test_tuple_filter.py index 9351124b..05e5bb8f 100644 --- a/test/test_tuple_filter.py +++ b/test/test_tuple_filter.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_tuple_set.py b/test/test_tuple_set.py index 43134c1a..f70086f3 100644 --- a/test/test_tuple_set.py +++ b/test/test_tuple_set.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_tuple_to_user_set.py b/test/test_tuple_to_user_set.py index 82238592..4543c7ac 100644 --- a/test/test_tuple_to_user_set.py +++ b/test/test_tuple_to_user_set.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_v1_call.py b/test/test_v1_call.py index dfcd125b..2564be98 100644 --- a/test/test_v1_call.py +++ b/test/test_v1_call.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_v1_expand.py b/test/test_v1_expand.py index ca4076da..697641b5 100644 --- a/test/test_v1_expand.py +++ b/test/test_v1_expand.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_v1_operation.py b/test/test_v1_operation.py index 16830142..626908ab 100644 --- a/test/test_v1_operation.py +++ b/test/test_v1_operation.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_v1alpha1_reference.py b/test/test_v1alpha1_reference.py index b070dfd0..ac21f430 100644 --- a/test/test_v1alpha1_reference.py +++ b/test/test_v1alpha1_reference.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_v1alpha1_type.py b/test/test_v1alpha1_type.py index 6e72a081..c0ae60ec 100644 --- a/test/test_v1alpha1_type.py +++ b/test/test_v1alpha1_type.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_values.py b/test/test_values.py index 85b39aeb..20740c5f 100644 --- a/test/test_values.py +++ b/test/test_values.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_watch_api.py b/test/test_watch_api.py index 140c20c9..fd1d26ad 100644 --- a/test/test_watch_api.py +++ b/test/test_watch_api.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_watch_body.py b/test/test_watch_body.py index 6cbdb264..0940b739 100644 --- a/test/test_watch_body.py +++ b/test/test_watch_body.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_watch_response.py b/test/test_watch_response.py index 45a467c0..c07a7a1e 100644 --- a/test/test_watch_response.py +++ b/test/test_watch_response.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_well_known_type.py b/test/test_well_known_type.py index cc7b366e..aecb6e71 100644 --- a/test/test_well_known_type.py +++ b/test/test_well_known_type.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/test/test_write_relationships_body.py b/test/test_write_relationships_body.py index 641eaaf5..e1851f8c 100644 --- a/test/test_write_relationships_body.py +++ b/test/test_write_relationships_body.py @@ -5,7 +5,7 @@ Permify is an open source authorization service for creating fine-grained and scalable authorization systems. - The version of the OpenAPI document: v0.10.0 + The version of the OpenAPI document: v0.10.1 Contact: hello@permify.co Generated by OpenAPI Generator (https://openapi-generator.tech)