diff --git a/build.gradle b/build.gradle
index 31ff168..464cf27 100644
--- a/build.gradle
+++ b/build.gradle
@@ -9,7 +9,7 @@ plugins {
}
group = 'co.permify'
-version = '1.4.3'
+version = '1.4.4'
repositories {
mavenCentral()
@@ -120,7 +120,7 @@ task execute(type: JavaExec) {
ext {
jackson_version = "2.14.1"
- jakarta_annotation_version = "2.1.1"
+ jakarta_annotation_version = "1.3.5"
beanvalidation_version = "3.0.2"
junit_version = "4.13.2"
}
diff --git a/docs/TenantDeleteResponse.md b/docs/TenantDeleteResponse.md
index bccbc8b..38a395e 100644
--- a/docs/TenantDeleteResponse.md
+++ b/docs/TenantDeleteResponse.md
@@ -8,7 +8,7 @@ TenantDeleteResponse is the message returned from the request to delete a tenant
| Name | Type | Description | Notes |
|------------ | ------------- | ------------- | -------------|
-|**tenant** | [**Tenant**](Tenant.md) | | [optional] |
+|**tenantId** | **String** | tenant_id is the tenant id that was deleted. | [optional] |
diff --git a/generator/openapi.json b/generator/openapi.json
index ef6356e..6b60679 100644
--- a/generator/openapi.json
+++ b/generator/openapi.json
@@ -3,7 +3,7 @@
"info": {
"title": "Permify API",
"description": "Permify is an open source authorization service for creating fine-grained and scalable authorization systems.",
- "version": "v1.4.3",
+ "version": "v1.4.4",
"contact": {
"name": "API Support",
"url": "https://github.com/Permify/permify/issues",
@@ -3211,9 +3211,9 @@
"TenantDeleteResponse": {
"type": "object",
"properties": {
- "tenant": {
- "$ref": "#/definitions/Tenant",
- "description": "tenant is the tenant information that was deleted."
+ "tenant_id": {
+ "type": "string",
+ "description": "tenant_id is the tenant id that was deleted."
}
},
"description": "TenantDeleteResponse is the message returned from the request to delete a tenant."
diff --git a/pom.xml b/pom.xml
index c083efd..2430002 100644
--- a/pom.xml
+++ b/pom.xml
@@ -5,7 +5,7 @@
permify-java
jar
Permify Java
- 1.4.3
+ 1.4.4
https://github.com/Permify/permify-java
Java SDK for Permify - Authorization as a Service
diff --git a/src/main/java/co/permify/sdk/api/BundleApi.java b/src/main/java/co/permify/sdk/api/BundleApi.java
index 762ef3b..d48fcc8 100644
--- a/src/main/java/co/permify/sdk/api/BundleApi.java
+++ b/src/main/java/co/permify/sdk/api/BundleApi.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/api/DataApi.java b/src/main/java/co/permify/sdk/api/DataApi.java
index e5a1760..0c4d181 100644
--- a/src/main/java/co/permify/sdk/api/DataApi.java
+++ b/src/main/java/co/permify/sdk/api/DataApi.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/api/PermissionApi.java b/src/main/java/co/permify/sdk/api/PermissionApi.java
index 58b5791..03da5a0 100644
--- a/src/main/java/co/permify/sdk/api/PermissionApi.java
+++ b/src/main/java/co/permify/sdk/api/PermissionApi.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/api/SchemaApi.java b/src/main/java/co/permify/sdk/api/SchemaApi.java
index 8c5d8a6..2409a75 100644
--- a/src/main/java/co/permify/sdk/api/SchemaApi.java
+++ b/src/main/java/co/permify/sdk/api/SchemaApi.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/api/TenancyApi.java b/src/main/java/co/permify/sdk/api/TenancyApi.java
index e42e1f3..6fbcc7b 100644
--- a/src/main/java/co/permify/sdk/api/TenancyApi.java
+++ b/src/main/java/co/permify/sdk/api/TenancyApi.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/api/WatchApi.java b/src/main/java/co/permify/sdk/api/WatchApi.java
index e98ea6c..5a36204 100644
--- a/src/main/java/co/permify/sdk/api/WatchApi.java
+++ b/src/main/java/co/permify/sdk/api/WatchApi.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/client/ApiClient.java b/src/main/java/co/permify/sdk/client/ApiClient.java
index c0b4c7c..2853d0a 100644
--- a/src/main/java/co/permify/sdk/client/ApiClient.java
+++ b/src/main/java/co/permify/sdk/client/ApiClient.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/client/ApiException.java b/src/main/java/co/permify/sdk/client/ApiException.java
index 7a066d7..c21a53b 100644
--- a/src/main/java/co/permify/sdk/client/ApiException.java
+++ b/src/main/java/co/permify/sdk/client/ApiException.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/client/ApiResponse.java b/src/main/java/co/permify/sdk/client/ApiResponse.java
index 477ef01..970716d 100644
--- a/src/main/java/co/permify/sdk/client/ApiResponse.java
+++ b/src/main/java/co/permify/sdk/client/ApiResponse.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/client/Configuration.java b/src/main/java/co/permify/sdk/client/Configuration.java
index e74f1a5..04e9f2f 100644
--- a/src/main/java/co/permify/sdk/client/Configuration.java
+++ b/src/main/java/co/permify/sdk/client/Configuration.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -15,7 +15,7 @@
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class Configuration {
- public static final String VERSION = "v1.4.3";
+ public static final String VERSION = "v1.4.4";
private static ApiClient defaultApiClient = new ApiClient();
diff --git a/src/main/java/co/permify/sdk/client/Pair.java b/src/main/java/co/permify/sdk/client/Pair.java
index 86e99dd..9d6812b 100644
--- a/src/main/java/co/permify/sdk/client/Pair.java
+++ b/src/main/java/co/permify/sdk/client/Pair.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/client/RFC3339DateFormat.java b/src/main/java/co/permify/sdk/client/RFC3339DateFormat.java
index 563ff1a..f9c4f35 100644
--- a/src/main/java/co/permify/sdk/client/RFC3339DateFormat.java
+++ b/src/main/java/co/permify/sdk/client/RFC3339DateFormat.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/AbstractOpenApiSchema.java b/src/main/java/co/permify/sdk/model/AbstractOpenApiSchema.java
index 3eeb226..77f6c83 100644
--- a/src/main/java/co/permify/sdk/model/AbstractOpenApiSchema.java
+++ b/src/main/java/co/permify/sdk/model/AbstractOpenApiSchema.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/AbstractType.java b/src/main/java/co/permify/sdk/model/AbstractType.java
index 1d3a188..2936686 100644
--- a/src/main/java/co/permify/sdk/model/AbstractType.java
+++ b/src/main/java/co/permify/sdk/model/AbstractType.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/Any.java b/src/main/java/co/permify/sdk/model/Any.java
index 3057d67..f2439ea 100644
--- a/src/main/java/co/permify/sdk/model/Any.java
+++ b/src/main/java/co/permify/sdk/model/Any.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/Argument.java b/src/main/java/co/permify/sdk/model/Argument.java
index a60a861..6b61a68 100644
--- a/src/main/java/co/permify/sdk/model/Argument.java
+++ b/src/main/java/co/permify/sdk/model/Argument.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/Attribute.java b/src/main/java/co/permify/sdk/model/Attribute.java
index b98712f..79858e2 100644
--- a/src/main/java/co/permify/sdk/model/Attribute.java
+++ b/src/main/java/co/permify/sdk/model/Attribute.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/AttributeDefinition.java b/src/main/java/co/permify/sdk/model/AttributeDefinition.java
index 18eaafc..b646591 100644
--- a/src/main/java/co/permify/sdk/model/AttributeDefinition.java
+++ b/src/main/java/co/permify/sdk/model/AttributeDefinition.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/AttributeFilter.java b/src/main/java/co/permify/sdk/model/AttributeFilter.java
index 3d02076..1ea5839 100644
--- a/src/main/java/co/permify/sdk/model/AttributeFilter.java
+++ b/src/main/java/co/permify/sdk/model/AttributeFilter.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/AttributeReadRequestMetadata.java b/src/main/java/co/permify/sdk/model/AttributeReadRequestMetadata.java
index bd7f926..b0bb992 100644
--- a/src/main/java/co/permify/sdk/model/AttributeReadRequestMetadata.java
+++ b/src/main/java/co/permify/sdk/model/AttributeReadRequestMetadata.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/AttributeReadResponse.java b/src/main/java/co/permify/sdk/model/AttributeReadResponse.java
index 8edac8a..7067cf0 100644
--- a/src/main/java/co/permify/sdk/model/AttributeReadResponse.java
+++ b/src/main/java/co/permify/sdk/model/AttributeReadResponse.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/AttributeType.java b/src/main/java/co/permify/sdk/model/AttributeType.java
index 6189883..4912885 100644
--- a/src/main/java/co/permify/sdk/model/AttributeType.java
+++ b/src/main/java/co/permify/sdk/model/AttributeType.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/BundleDeleteBody.java b/src/main/java/co/permify/sdk/model/BundleDeleteBody.java
index 5f07502..e625706 100644
--- a/src/main/java/co/permify/sdk/model/BundleDeleteBody.java
+++ b/src/main/java/co/permify/sdk/model/BundleDeleteBody.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/BundleDeleteResponse.java b/src/main/java/co/permify/sdk/model/BundleDeleteResponse.java
index 7d8ef71..d671451 100644
--- a/src/main/java/co/permify/sdk/model/BundleDeleteResponse.java
+++ b/src/main/java/co/permify/sdk/model/BundleDeleteResponse.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/BundleReadBody.java b/src/main/java/co/permify/sdk/model/BundleReadBody.java
index 00b09e0..94a0261 100644
--- a/src/main/java/co/permify/sdk/model/BundleReadBody.java
+++ b/src/main/java/co/permify/sdk/model/BundleReadBody.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/BundleReadResponse.java b/src/main/java/co/permify/sdk/model/BundleReadResponse.java
index b81d628..49d0132 100644
--- a/src/main/java/co/permify/sdk/model/BundleReadResponse.java
+++ b/src/main/java/co/permify/sdk/model/BundleReadResponse.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/BundleRunResponse.java b/src/main/java/co/permify/sdk/model/BundleRunResponse.java
index bb90931..0b85e4b 100644
--- a/src/main/java/co/permify/sdk/model/BundleRunResponse.java
+++ b/src/main/java/co/permify/sdk/model/BundleRunResponse.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/BundleWriteBody.java b/src/main/java/co/permify/sdk/model/BundleWriteBody.java
index d066fa9..5a3353d 100644
--- a/src/main/java/co/permify/sdk/model/BundleWriteBody.java
+++ b/src/main/java/co/permify/sdk/model/BundleWriteBody.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/BundleWriteResponse.java b/src/main/java/co/permify/sdk/model/BundleWriteResponse.java
index e53c1a1..b897531 100644
--- a/src/main/java/co/permify/sdk/model/BundleWriteResponse.java
+++ b/src/main/java/co/permify/sdk/model/BundleWriteResponse.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/CheckBody.java b/src/main/java/co/permify/sdk/model/CheckBody.java
index 097b9d1..be1f545 100644
--- a/src/main/java/co/permify/sdk/model/CheckBody.java
+++ b/src/main/java/co/permify/sdk/model/CheckBody.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/CheckResult.java b/src/main/java/co/permify/sdk/model/CheckResult.java
index 82e30e9..3a9844f 100644
--- a/src/main/java/co/permify/sdk/model/CheckResult.java
+++ b/src/main/java/co/permify/sdk/model/CheckResult.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/CheckedExpr.java b/src/main/java/co/permify/sdk/model/CheckedExpr.java
index 4ff852a..8138674 100644
--- a/src/main/java/co/permify/sdk/model/CheckedExpr.java
+++ b/src/main/java/co/permify/sdk/model/CheckedExpr.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/Child.java b/src/main/java/co/permify/sdk/model/Child.java
index e03cb6f..ddedcab 100644
--- a/src/main/java/co/permify/sdk/model/Child.java
+++ b/src/main/java/co/permify/sdk/model/Child.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/Comprehension.java b/src/main/java/co/permify/sdk/model/Comprehension.java
index 64de381..5b42286 100644
--- a/src/main/java/co/permify/sdk/model/Comprehension.java
+++ b/src/main/java/co/permify/sdk/model/Comprehension.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/ComputedAttribute.java b/src/main/java/co/permify/sdk/model/ComputedAttribute.java
index 1f98384..7805544 100644
--- a/src/main/java/co/permify/sdk/model/ComputedAttribute.java
+++ b/src/main/java/co/permify/sdk/model/ComputedAttribute.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/ComputedUserSet.java b/src/main/java/co/permify/sdk/model/ComputedUserSet.java
index 0103258..f20475f 100644
--- a/src/main/java/co/permify/sdk/model/ComputedUserSet.java
+++ b/src/main/java/co/permify/sdk/model/ComputedUserSet.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/Constant.java b/src/main/java/co/permify/sdk/model/Constant.java
index 2297aa5..03a3fb5 100644
--- a/src/main/java/co/permify/sdk/model/Constant.java
+++ b/src/main/java/co/permify/sdk/model/Constant.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/Context.java b/src/main/java/co/permify/sdk/model/Context.java
index 468c1c9..71aba2b 100644
--- a/src/main/java/co/permify/sdk/model/Context.java
+++ b/src/main/java/co/permify/sdk/model/Context.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/CreateList.java b/src/main/java/co/permify/sdk/model/CreateList.java
index 4eead25..9bd1412 100644
--- a/src/main/java/co/permify/sdk/model/CreateList.java
+++ b/src/main/java/co/permify/sdk/model/CreateList.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/CreateStruct.java b/src/main/java/co/permify/sdk/model/CreateStruct.java
index f7e9e8c..f94010f 100644
--- a/src/main/java/co/permify/sdk/model/CreateStruct.java
+++ b/src/main/java/co/permify/sdk/model/CreateStruct.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/DataBundle.java b/src/main/java/co/permify/sdk/model/DataBundle.java
index 3dff803..bb35896 100644
--- a/src/main/java/co/permify/sdk/model/DataBundle.java
+++ b/src/main/java/co/permify/sdk/model/DataBundle.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/DataChange.java b/src/main/java/co/permify/sdk/model/DataChange.java
index 0cb40ce..b0ab33f 100644
--- a/src/main/java/co/permify/sdk/model/DataChange.java
+++ b/src/main/java/co/permify/sdk/model/DataChange.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/DataChangeOperation.java b/src/main/java/co/permify/sdk/model/DataChangeOperation.java
index d67395b..9948120 100644
--- a/src/main/java/co/permify/sdk/model/DataChangeOperation.java
+++ b/src/main/java/co/permify/sdk/model/DataChangeOperation.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/DataChanges.java b/src/main/java/co/permify/sdk/model/DataChanges.java
index c748dcc..18f4856 100644
--- a/src/main/java/co/permify/sdk/model/DataChanges.java
+++ b/src/main/java/co/permify/sdk/model/DataChanges.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/DataDeleteBody.java b/src/main/java/co/permify/sdk/model/DataDeleteBody.java
index e3806dc..3c9b72e 100644
--- a/src/main/java/co/permify/sdk/model/DataDeleteBody.java
+++ b/src/main/java/co/permify/sdk/model/DataDeleteBody.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/DataDeleteResponse.java b/src/main/java/co/permify/sdk/model/DataDeleteResponse.java
index c6e6387..1b531a7 100644
--- a/src/main/java/co/permify/sdk/model/DataDeleteResponse.java
+++ b/src/main/java/co/permify/sdk/model/DataDeleteResponse.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/DataWriteBody.java b/src/main/java/co/permify/sdk/model/DataWriteBody.java
index 9b63b93..aabcd8b 100644
--- a/src/main/java/co/permify/sdk/model/DataWriteBody.java
+++ b/src/main/java/co/permify/sdk/model/DataWriteBody.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/DataWriteRequestMetadata.java b/src/main/java/co/permify/sdk/model/DataWriteRequestMetadata.java
index b1bd429..15642e4 100644
--- a/src/main/java/co/permify/sdk/model/DataWriteRequestMetadata.java
+++ b/src/main/java/co/permify/sdk/model/DataWriteRequestMetadata.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/DataWriteResponse.java b/src/main/java/co/permify/sdk/model/DataWriteResponse.java
index 34cc813..eb3fad4 100644
--- a/src/main/java/co/permify/sdk/model/DataWriteResponse.java
+++ b/src/main/java/co/permify/sdk/model/DataWriteResponse.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/DeleteRelationshipsBody.java b/src/main/java/co/permify/sdk/model/DeleteRelationshipsBody.java
index b41db54..4ebbd82 100644
--- a/src/main/java/co/permify/sdk/model/DeleteRelationshipsBody.java
+++ b/src/main/java/co/permify/sdk/model/DeleteRelationshipsBody.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/Entity.java b/src/main/java/co/permify/sdk/model/Entity.java
index 6388655..f94a4e6 100644
--- a/src/main/java/co/permify/sdk/model/Entity.java
+++ b/src/main/java/co/permify/sdk/model/Entity.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/EntityDefinition.java b/src/main/java/co/permify/sdk/model/EntityDefinition.java
index 9e6bd28..73c049d 100644
--- a/src/main/java/co/permify/sdk/model/EntityDefinition.java
+++ b/src/main/java/co/permify/sdk/model/EntityDefinition.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/EntityDefinitionReference.java b/src/main/java/co/permify/sdk/model/EntityDefinitionReference.java
index 3b6f6b5..8051b2a 100644
--- a/src/main/java/co/permify/sdk/model/EntityDefinitionReference.java
+++ b/src/main/java/co/permify/sdk/model/EntityDefinitionReference.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/EntityFilter.java b/src/main/java/co/permify/sdk/model/EntityFilter.java
index caaec55..8546e5e 100644
--- a/src/main/java/co/permify/sdk/model/EntityFilter.java
+++ b/src/main/java/co/permify/sdk/model/EntityFilter.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/Entry.java b/src/main/java/co/permify/sdk/model/Entry.java
index 9879027..3a8cbf4 100644
--- a/src/main/java/co/permify/sdk/model/Entry.java
+++ b/src/main/java/co/permify/sdk/model/Entry.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/ExpandLeaf.java b/src/main/java/co/permify/sdk/model/ExpandLeaf.java
index 97d52f5..ac9ca37 100644
--- a/src/main/java/co/permify/sdk/model/ExpandLeaf.java
+++ b/src/main/java/co/permify/sdk/model/ExpandLeaf.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/ExpandTreeNode.java b/src/main/java/co/permify/sdk/model/ExpandTreeNode.java
index 4b3b926..8b7046c 100644
--- a/src/main/java/co/permify/sdk/model/ExpandTreeNode.java
+++ b/src/main/java/co/permify/sdk/model/ExpandTreeNode.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/ExpandTreeNodeOperation.java b/src/main/java/co/permify/sdk/model/ExpandTreeNodeOperation.java
index 95cae6d..893f856 100644
--- a/src/main/java/co/permify/sdk/model/ExpandTreeNodeOperation.java
+++ b/src/main/java/co/permify/sdk/model/ExpandTreeNodeOperation.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/Expr.java b/src/main/java/co/permify/sdk/model/Expr.java
index 6bbc700..37cf485 100644
--- a/src/main/java/co/permify/sdk/model/Expr.java
+++ b/src/main/java/co/permify/sdk/model/Expr.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/ExprCall.java b/src/main/java/co/permify/sdk/model/ExprCall.java
index a60f82b..643362f 100644
--- a/src/main/java/co/permify/sdk/model/ExprCall.java
+++ b/src/main/java/co/permify/sdk/model/ExprCall.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/FunctionType.java b/src/main/java/co/permify/sdk/model/FunctionType.java
index 4579f3c..7607c46 100644
--- a/src/main/java/co/permify/sdk/model/FunctionType.java
+++ b/src/main/java/co/permify/sdk/model/FunctionType.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/Ident.java b/src/main/java/co/permify/sdk/model/Ident.java
index 74f055a..8e38c4f 100644
--- a/src/main/java/co/permify/sdk/model/Ident.java
+++ b/src/main/java/co/permify/sdk/model/Ident.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/Leaf.java b/src/main/java/co/permify/sdk/model/Leaf.java
index de50b6f..2d1861b 100644
--- a/src/main/java/co/permify/sdk/model/Leaf.java
+++ b/src/main/java/co/permify/sdk/model/Leaf.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/ListType.java b/src/main/java/co/permify/sdk/model/ListType.java
index cabed4e..2071e73 100644
--- a/src/main/java/co/permify/sdk/model/ListType.java
+++ b/src/main/java/co/permify/sdk/model/ListType.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/LookupEntityBody.java b/src/main/java/co/permify/sdk/model/LookupEntityBody.java
index 14a1bf9..2c213e4 100644
--- a/src/main/java/co/permify/sdk/model/LookupEntityBody.java
+++ b/src/main/java/co/permify/sdk/model/LookupEntityBody.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/LookupEntityStreamBody.java b/src/main/java/co/permify/sdk/model/LookupEntityStreamBody.java
index 3a74cfb..5329e2a 100644
--- a/src/main/java/co/permify/sdk/model/LookupEntityStreamBody.java
+++ b/src/main/java/co/permify/sdk/model/LookupEntityStreamBody.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/LookupSubjectBody.java b/src/main/java/co/permify/sdk/model/LookupSubjectBody.java
index c5926e7..6293124 100644
--- a/src/main/java/co/permify/sdk/model/LookupSubjectBody.java
+++ b/src/main/java/co/permify/sdk/model/LookupSubjectBody.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/MapType.java b/src/main/java/co/permify/sdk/model/MapType.java
index 7787e49..2a77bb4 100644
--- a/src/main/java/co/permify/sdk/model/MapType.java
+++ b/src/main/java/co/permify/sdk/model/MapType.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/PartialWriteBody.java b/src/main/java/co/permify/sdk/model/PartialWriteBody.java
index bd431c0..280e3ea 100644
--- a/src/main/java/co/permify/sdk/model/PartialWriteBody.java
+++ b/src/main/java/co/permify/sdk/model/PartialWriteBody.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/Partials.java b/src/main/java/co/permify/sdk/model/Partials.java
index ccc0b02..25632f7 100644
--- a/src/main/java/co/permify/sdk/model/Partials.java
+++ b/src/main/java/co/permify/sdk/model/Partials.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/PermissionCheckRequestMetadata.java b/src/main/java/co/permify/sdk/model/PermissionCheckRequestMetadata.java
index 9b11034..9beab0e 100644
--- a/src/main/java/co/permify/sdk/model/PermissionCheckRequestMetadata.java
+++ b/src/main/java/co/permify/sdk/model/PermissionCheckRequestMetadata.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/PermissionCheckResponse.java b/src/main/java/co/permify/sdk/model/PermissionCheckResponse.java
index 43a61b8..4e7b017 100644
--- a/src/main/java/co/permify/sdk/model/PermissionCheckResponse.java
+++ b/src/main/java/co/permify/sdk/model/PermissionCheckResponse.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/PermissionCheckResponseMetadata.java b/src/main/java/co/permify/sdk/model/PermissionCheckResponseMetadata.java
index ddb6e42..d8edad5 100644
--- a/src/main/java/co/permify/sdk/model/PermissionCheckResponseMetadata.java
+++ b/src/main/java/co/permify/sdk/model/PermissionCheckResponseMetadata.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/PermissionDefinition.java b/src/main/java/co/permify/sdk/model/PermissionDefinition.java
index 5f07183..66dbfa2 100644
--- a/src/main/java/co/permify/sdk/model/PermissionDefinition.java
+++ b/src/main/java/co/permify/sdk/model/PermissionDefinition.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/PermissionExpandBody.java b/src/main/java/co/permify/sdk/model/PermissionExpandBody.java
index 6bb8e30..1fe3a3c 100644
--- a/src/main/java/co/permify/sdk/model/PermissionExpandBody.java
+++ b/src/main/java/co/permify/sdk/model/PermissionExpandBody.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/PermissionExpandRequestMetadata.java b/src/main/java/co/permify/sdk/model/PermissionExpandRequestMetadata.java
index bdd49bb..c604097 100644
--- a/src/main/java/co/permify/sdk/model/PermissionExpandRequestMetadata.java
+++ b/src/main/java/co/permify/sdk/model/PermissionExpandRequestMetadata.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/PermissionExpandResponse.java b/src/main/java/co/permify/sdk/model/PermissionExpandResponse.java
index 413df48..7d5ff12 100644
--- a/src/main/java/co/permify/sdk/model/PermissionExpandResponse.java
+++ b/src/main/java/co/permify/sdk/model/PermissionExpandResponse.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/PermissionLookupEntityRequestMetadata.java b/src/main/java/co/permify/sdk/model/PermissionLookupEntityRequestMetadata.java
index d13630c..2d9b04f 100644
--- a/src/main/java/co/permify/sdk/model/PermissionLookupEntityRequestMetadata.java
+++ b/src/main/java/co/permify/sdk/model/PermissionLookupEntityRequestMetadata.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/PermissionLookupEntityResponse.java b/src/main/java/co/permify/sdk/model/PermissionLookupEntityResponse.java
index 6954ec9..c46c935 100644
--- a/src/main/java/co/permify/sdk/model/PermissionLookupEntityResponse.java
+++ b/src/main/java/co/permify/sdk/model/PermissionLookupEntityResponse.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/PermissionLookupEntityStreamResponse.java b/src/main/java/co/permify/sdk/model/PermissionLookupEntityStreamResponse.java
index 2dd8ffa..50ad7c2 100644
--- a/src/main/java/co/permify/sdk/model/PermissionLookupEntityStreamResponse.java
+++ b/src/main/java/co/permify/sdk/model/PermissionLookupEntityStreamResponse.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/PermissionLookupSubjectRequestMetadata.java b/src/main/java/co/permify/sdk/model/PermissionLookupSubjectRequestMetadata.java
index 8a9f50b..83ac720 100644
--- a/src/main/java/co/permify/sdk/model/PermissionLookupSubjectRequestMetadata.java
+++ b/src/main/java/co/permify/sdk/model/PermissionLookupSubjectRequestMetadata.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/PermissionLookupSubjectResponse.java b/src/main/java/co/permify/sdk/model/PermissionLookupSubjectResponse.java
index e33ce4d..f469555 100644
--- a/src/main/java/co/permify/sdk/model/PermissionLookupSubjectResponse.java
+++ b/src/main/java/co/permify/sdk/model/PermissionLookupSubjectResponse.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/PermissionSubjectPermissionRequestMetadata.java b/src/main/java/co/permify/sdk/model/PermissionSubjectPermissionRequestMetadata.java
index 3da9c02..77f6bda 100644
--- a/src/main/java/co/permify/sdk/model/PermissionSubjectPermissionRequestMetadata.java
+++ b/src/main/java/co/permify/sdk/model/PermissionSubjectPermissionRequestMetadata.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/PermissionSubjectPermissionResponse.java b/src/main/java/co/permify/sdk/model/PermissionSubjectPermissionResponse.java
index 0412301..c5ee49a 100644
--- a/src/main/java/co/permify/sdk/model/PermissionSubjectPermissionResponse.java
+++ b/src/main/java/co/permify/sdk/model/PermissionSubjectPermissionResponse.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/PrimitiveType.java b/src/main/java/co/permify/sdk/model/PrimitiveType.java
index 3d57de9..b626471 100644
--- a/src/main/java/co/permify/sdk/model/PrimitiveType.java
+++ b/src/main/java/co/permify/sdk/model/PrimitiveType.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/ReadAttributesBody.java b/src/main/java/co/permify/sdk/model/ReadAttributesBody.java
index c3339e9..cccbe8f 100644
--- a/src/main/java/co/permify/sdk/model/ReadAttributesBody.java
+++ b/src/main/java/co/permify/sdk/model/ReadAttributesBody.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/ReadRelationshipsBody.java b/src/main/java/co/permify/sdk/model/ReadRelationshipsBody.java
index 41d931c..5e044be 100644
--- a/src/main/java/co/permify/sdk/model/ReadRelationshipsBody.java
+++ b/src/main/java/co/permify/sdk/model/ReadRelationshipsBody.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/RelationDefinition.java b/src/main/java/co/permify/sdk/model/RelationDefinition.java
index 6b3faa0..f7e2bd4 100644
--- a/src/main/java/co/permify/sdk/model/RelationDefinition.java
+++ b/src/main/java/co/permify/sdk/model/RelationDefinition.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/RelationReference.java b/src/main/java/co/permify/sdk/model/RelationReference.java
index de7cf85..3f155a0 100644
--- a/src/main/java/co/permify/sdk/model/RelationReference.java
+++ b/src/main/java/co/permify/sdk/model/RelationReference.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/RelationshipDeleteResponse.java b/src/main/java/co/permify/sdk/model/RelationshipDeleteResponse.java
index 78e70bc..d33dbf1 100644
--- a/src/main/java/co/permify/sdk/model/RelationshipDeleteResponse.java
+++ b/src/main/java/co/permify/sdk/model/RelationshipDeleteResponse.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/RelationshipReadRequestMetadata.java b/src/main/java/co/permify/sdk/model/RelationshipReadRequestMetadata.java
index 5c27aa7..bf00a14 100644
--- a/src/main/java/co/permify/sdk/model/RelationshipReadRequestMetadata.java
+++ b/src/main/java/co/permify/sdk/model/RelationshipReadRequestMetadata.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/RelationshipReadResponse.java b/src/main/java/co/permify/sdk/model/RelationshipReadResponse.java
index dffcbc5..15759a3 100644
--- a/src/main/java/co/permify/sdk/model/RelationshipReadResponse.java
+++ b/src/main/java/co/permify/sdk/model/RelationshipReadResponse.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/RelationshipWriteRequestMetadata.java b/src/main/java/co/permify/sdk/model/RelationshipWriteRequestMetadata.java
index 30b9c9b..451c79a 100644
--- a/src/main/java/co/permify/sdk/model/RelationshipWriteRequestMetadata.java
+++ b/src/main/java/co/permify/sdk/model/RelationshipWriteRequestMetadata.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/RelationshipWriteResponse.java b/src/main/java/co/permify/sdk/model/RelationshipWriteResponse.java
index 1ed0caf..4b71853 100644
--- a/src/main/java/co/permify/sdk/model/RelationshipWriteResponse.java
+++ b/src/main/java/co/permify/sdk/model/RelationshipWriteResponse.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/Rewrite.java b/src/main/java/co/permify/sdk/model/Rewrite.java
index 3a438d0..993e412 100644
--- a/src/main/java/co/permify/sdk/model/Rewrite.java
+++ b/src/main/java/co/permify/sdk/model/Rewrite.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/RewriteOperation.java b/src/main/java/co/permify/sdk/model/RewriteOperation.java
index 3f958d0..15a9486 100644
--- a/src/main/java/co/permify/sdk/model/RewriteOperation.java
+++ b/src/main/java/co/permify/sdk/model/RewriteOperation.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/RuleDefinition.java b/src/main/java/co/permify/sdk/model/RuleDefinition.java
index 75af831..d96f6f8 100644
--- a/src/main/java/co/permify/sdk/model/RuleDefinition.java
+++ b/src/main/java/co/permify/sdk/model/RuleDefinition.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/RunBundleBody.java b/src/main/java/co/permify/sdk/model/RunBundleBody.java
index 15abd50..4dd9901 100644
--- a/src/main/java/co/permify/sdk/model/RunBundleBody.java
+++ b/src/main/java/co/permify/sdk/model/RunBundleBody.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/SchemaDefinition.java b/src/main/java/co/permify/sdk/model/SchemaDefinition.java
index 03a848d..b8ebdd3 100644
--- a/src/main/java/co/permify/sdk/model/SchemaDefinition.java
+++ b/src/main/java/co/permify/sdk/model/SchemaDefinition.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/SchemaDefinitionReference.java b/src/main/java/co/permify/sdk/model/SchemaDefinitionReference.java
index 1091450..f7bf53b 100644
--- a/src/main/java/co/permify/sdk/model/SchemaDefinitionReference.java
+++ b/src/main/java/co/permify/sdk/model/SchemaDefinitionReference.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/SchemaList.java b/src/main/java/co/permify/sdk/model/SchemaList.java
index 55d309a..b7a435a 100644
--- a/src/main/java/co/permify/sdk/model/SchemaList.java
+++ b/src/main/java/co/permify/sdk/model/SchemaList.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/SchemaListBody.java b/src/main/java/co/permify/sdk/model/SchemaListBody.java
index 5a1dbae..d18153a 100644
--- a/src/main/java/co/permify/sdk/model/SchemaListBody.java
+++ b/src/main/java/co/permify/sdk/model/SchemaListBody.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/SchemaListResponse.java b/src/main/java/co/permify/sdk/model/SchemaListResponse.java
index b91da76..4dd491a 100644
--- a/src/main/java/co/permify/sdk/model/SchemaListResponse.java
+++ b/src/main/java/co/permify/sdk/model/SchemaListResponse.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/SchemaPartialWriteRequestMetadata.java b/src/main/java/co/permify/sdk/model/SchemaPartialWriteRequestMetadata.java
index da47258..43c2e94 100644
--- a/src/main/java/co/permify/sdk/model/SchemaPartialWriteRequestMetadata.java
+++ b/src/main/java/co/permify/sdk/model/SchemaPartialWriteRequestMetadata.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/SchemaPartialWriteResponse.java b/src/main/java/co/permify/sdk/model/SchemaPartialWriteResponse.java
index d48484c..a903493 100644
--- a/src/main/java/co/permify/sdk/model/SchemaPartialWriteResponse.java
+++ b/src/main/java/co/permify/sdk/model/SchemaPartialWriteResponse.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/SchemaReadBody.java b/src/main/java/co/permify/sdk/model/SchemaReadBody.java
index f02c33e..0695427 100644
--- a/src/main/java/co/permify/sdk/model/SchemaReadBody.java
+++ b/src/main/java/co/permify/sdk/model/SchemaReadBody.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/SchemaReadRequestMetadata.java b/src/main/java/co/permify/sdk/model/SchemaReadRequestMetadata.java
index dfe8d07..76ff904 100644
--- a/src/main/java/co/permify/sdk/model/SchemaReadRequestMetadata.java
+++ b/src/main/java/co/permify/sdk/model/SchemaReadRequestMetadata.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/SchemaReadResponse.java b/src/main/java/co/permify/sdk/model/SchemaReadResponse.java
index 7ba6b0f..e01eaed 100644
--- a/src/main/java/co/permify/sdk/model/SchemaReadResponse.java
+++ b/src/main/java/co/permify/sdk/model/SchemaReadResponse.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/SchemaWriteBody.java b/src/main/java/co/permify/sdk/model/SchemaWriteBody.java
index bc27475..6fa74d8 100644
--- a/src/main/java/co/permify/sdk/model/SchemaWriteBody.java
+++ b/src/main/java/co/permify/sdk/model/SchemaWriteBody.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/SchemaWriteResponse.java b/src/main/java/co/permify/sdk/model/SchemaWriteResponse.java
index 2825c7c..cdedb49 100644
--- a/src/main/java/co/permify/sdk/model/SchemaWriteResponse.java
+++ b/src/main/java/co/permify/sdk/model/SchemaWriteResponse.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/Select.java b/src/main/java/co/permify/sdk/model/Select.java
index aa2405d..9c00f69 100644
--- a/src/main/java/co/permify/sdk/model/Select.java
+++ b/src/main/java/co/permify/sdk/model/Select.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/SourceInfo.java b/src/main/java/co/permify/sdk/model/SourceInfo.java
index e40e733..52e5ef5 100644
--- a/src/main/java/co/permify/sdk/model/SourceInfo.java
+++ b/src/main/java/co/permify/sdk/model/SourceInfo.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/Status.java b/src/main/java/co/permify/sdk/model/Status.java
index b9619a2..49951e7 100644
--- a/src/main/java/co/permify/sdk/model/Status.java
+++ b/src/main/java/co/permify/sdk/model/Status.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/StreamResultOfPermissionLookupEntityStreamResponse.java b/src/main/java/co/permify/sdk/model/StreamResultOfPermissionLookupEntityStreamResponse.java
index ba925a6..c766c33 100644
--- a/src/main/java/co/permify/sdk/model/StreamResultOfPermissionLookupEntityStreamResponse.java
+++ b/src/main/java/co/permify/sdk/model/StreamResultOfPermissionLookupEntityStreamResponse.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/StreamResultOfWatchResponse.java b/src/main/java/co/permify/sdk/model/StreamResultOfWatchResponse.java
index 27d70c3..1aff80b 100644
--- a/src/main/java/co/permify/sdk/model/StreamResultOfWatchResponse.java
+++ b/src/main/java/co/permify/sdk/model/StreamResultOfWatchResponse.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/StringArrayValue.java b/src/main/java/co/permify/sdk/model/StringArrayValue.java
index c03344a..f853782 100644
--- a/src/main/java/co/permify/sdk/model/StringArrayValue.java
+++ b/src/main/java/co/permify/sdk/model/StringArrayValue.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/Subject.java b/src/main/java/co/permify/sdk/model/Subject.java
index 7136477..46b9273 100644
--- a/src/main/java/co/permify/sdk/model/Subject.java
+++ b/src/main/java/co/permify/sdk/model/Subject.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/SubjectFilter.java b/src/main/java/co/permify/sdk/model/SubjectFilter.java
index b944424..edac45b 100644
--- a/src/main/java/co/permify/sdk/model/SubjectFilter.java
+++ b/src/main/java/co/permify/sdk/model/SubjectFilter.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/SubjectPermissionBody.java b/src/main/java/co/permify/sdk/model/SubjectPermissionBody.java
index f57dcea..a1b401f 100644
--- a/src/main/java/co/permify/sdk/model/SubjectPermissionBody.java
+++ b/src/main/java/co/permify/sdk/model/SubjectPermissionBody.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/Subjects.java b/src/main/java/co/permify/sdk/model/Subjects.java
index b47ca26..d499c20 100644
--- a/src/main/java/co/permify/sdk/model/Subjects.java
+++ b/src/main/java/co/permify/sdk/model/Subjects.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/Tenant.java b/src/main/java/co/permify/sdk/model/Tenant.java
index 5eec767..04844c2 100644
--- a/src/main/java/co/permify/sdk/model/Tenant.java
+++ b/src/main/java/co/permify/sdk/model/Tenant.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/TenantCreateRequest.java b/src/main/java/co/permify/sdk/model/TenantCreateRequest.java
index f834a30..00090ae 100644
--- a/src/main/java/co/permify/sdk/model/TenantCreateRequest.java
+++ b/src/main/java/co/permify/sdk/model/TenantCreateRequest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/TenantCreateResponse.java b/src/main/java/co/permify/sdk/model/TenantCreateResponse.java
index 041ed08..b5fff91 100644
--- a/src/main/java/co/permify/sdk/model/TenantCreateResponse.java
+++ b/src/main/java/co/permify/sdk/model/TenantCreateResponse.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/TenantDeleteResponse.java b/src/main/java/co/permify/sdk/model/TenantDeleteResponse.java
index 2f86446..20689cd 100644
--- a/src/main/java/co/permify/sdk/model/TenantDeleteResponse.java
+++ b/src/main/java/co/permify/sdk/model/TenantDeleteResponse.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -19,7 +19,6 @@
import java.util.Objects;
import java.util.Map;
import java.util.HashMap;
-import co.permify.sdk.model.Tenant;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
@@ -33,38 +32,38 @@
* TenantDeleteResponse is the message returned from the request to delete a tenant.
*/
@JsonPropertyOrder({
- TenantDeleteResponse.JSON_PROPERTY_TENANT
+ TenantDeleteResponse.JSON_PROPERTY_TENANT_ID
})
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class TenantDeleteResponse {
- public static final String JSON_PROPERTY_TENANT = "tenant";
- private Tenant tenant;
+ public static final String JSON_PROPERTY_TENANT_ID = "tenant_id";
+ private String tenantId;
public TenantDeleteResponse() {
}
- public TenantDeleteResponse tenant(Tenant tenant) {
- this.tenant = tenant;
+ public TenantDeleteResponse tenantId(String tenantId) {
+ this.tenantId = tenantId;
return this;
}
/**
- * Get tenant
- * @return tenant
+ * tenant_id is the tenant id that was deleted.
+ * @return tenantId
**/
@jakarta.annotation.Nullable
- @JsonProperty(JSON_PROPERTY_TENANT)
+ @JsonProperty(JSON_PROPERTY_TENANT_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
- public Tenant getTenant() {
- return tenant;
+ public String getTenantId() {
+ return tenantId;
}
- @JsonProperty(JSON_PROPERTY_TENANT)
+ @JsonProperty(JSON_PROPERTY_TENANT_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
- public void setTenant(Tenant tenant) {
- this.tenant = tenant;
+ public void setTenantId(String tenantId) {
+ this.tenantId = tenantId;
}
@@ -80,19 +79,19 @@ public boolean equals(Object o) {
return false;
}
TenantDeleteResponse tenantDeleteResponse = (TenantDeleteResponse) o;
- return Objects.equals(this.tenant, tenantDeleteResponse.tenant);
+ return Objects.equals(this.tenantId, tenantDeleteResponse.tenantId);
}
@Override
public int hashCode() {
- return Objects.hash(tenant);
+ return Objects.hash(tenantId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class TenantDeleteResponse {\n");
- sb.append(" tenant: ").append(toIndentedString(tenant)).append("\n");
+ sb.append(" tenantId: ").append(toIndentedString(tenantId)).append("\n");
sb.append("}");
return sb.toString();
}
@@ -140,9 +139,9 @@ public String toUrlQueryString(String prefix) {
StringJoiner joiner = new StringJoiner("&");
- // add `tenant` to the URL query string
- if (getTenant() != null) {
- joiner.add(getTenant().toUrlQueryString(prefix + "tenant" + suffix));
+ // add `tenant_id` to the URL query string
+ if (getTenantId() != null) {
+ joiner.add(String.format("%stenant_id%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getTenantId()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
}
return joiner.toString();
diff --git a/src/main/java/co/permify/sdk/model/TenantListRequest.java b/src/main/java/co/permify/sdk/model/TenantListRequest.java
index b0cc5af..751cdf2 100644
--- a/src/main/java/co/permify/sdk/model/TenantListRequest.java
+++ b/src/main/java/co/permify/sdk/model/TenantListRequest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/TenantListResponse.java b/src/main/java/co/permify/sdk/model/TenantListResponse.java
index 63f45cf..63c1b42 100644
--- a/src/main/java/co/permify/sdk/model/TenantListResponse.java
+++ b/src/main/java/co/permify/sdk/model/TenantListResponse.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/Tuple.java b/src/main/java/co/permify/sdk/model/Tuple.java
index 87de17c..1bf911c 100644
--- a/src/main/java/co/permify/sdk/model/Tuple.java
+++ b/src/main/java/co/permify/sdk/model/Tuple.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/TupleFilter.java b/src/main/java/co/permify/sdk/model/TupleFilter.java
index e3f8887..272821d 100644
--- a/src/main/java/co/permify/sdk/model/TupleFilter.java
+++ b/src/main/java/co/permify/sdk/model/TupleFilter.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/TupleSet.java b/src/main/java/co/permify/sdk/model/TupleSet.java
index a8035d8..b9c633d 100644
--- a/src/main/java/co/permify/sdk/model/TupleSet.java
+++ b/src/main/java/co/permify/sdk/model/TupleSet.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/TupleToUserSet.java b/src/main/java/co/permify/sdk/model/TupleToUserSet.java
index 792e98e..a83faed 100644
--- a/src/main/java/co/permify/sdk/model/TupleToUserSet.java
+++ b/src/main/java/co/permify/sdk/model/TupleToUserSet.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/V1Call.java b/src/main/java/co/permify/sdk/model/V1Call.java
index 010cb30..98c16d8 100644
--- a/src/main/java/co/permify/sdk/model/V1Call.java
+++ b/src/main/java/co/permify/sdk/model/V1Call.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/V1Expand.java b/src/main/java/co/permify/sdk/model/V1Expand.java
index 6eb8dd7..1366546 100644
--- a/src/main/java/co/permify/sdk/model/V1Expand.java
+++ b/src/main/java/co/permify/sdk/model/V1Expand.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/V1Operation.java b/src/main/java/co/permify/sdk/model/V1Operation.java
index 05c6d8e..c8c1e6f 100644
--- a/src/main/java/co/permify/sdk/model/V1Operation.java
+++ b/src/main/java/co/permify/sdk/model/V1Operation.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/V1alpha1Reference.java b/src/main/java/co/permify/sdk/model/V1alpha1Reference.java
index f0f1536..f5a1b2d 100644
--- a/src/main/java/co/permify/sdk/model/V1alpha1Reference.java
+++ b/src/main/java/co/permify/sdk/model/V1alpha1Reference.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/V1alpha1Type.java b/src/main/java/co/permify/sdk/model/V1alpha1Type.java
index 1a9bc40..df6a2b6 100644
--- a/src/main/java/co/permify/sdk/model/V1alpha1Type.java
+++ b/src/main/java/co/permify/sdk/model/V1alpha1Type.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/Values.java b/src/main/java/co/permify/sdk/model/Values.java
index 5f9c28f..7e3a253 100644
--- a/src/main/java/co/permify/sdk/model/Values.java
+++ b/src/main/java/co/permify/sdk/model/Values.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/WatchBody.java b/src/main/java/co/permify/sdk/model/WatchBody.java
index c2c2ff5..f206f50 100644
--- a/src/main/java/co/permify/sdk/model/WatchBody.java
+++ b/src/main/java/co/permify/sdk/model/WatchBody.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/WatchResponse.java b/src/main/java/co/permify/sdk/model/WatchResponse.java
index ae824e4..cb30337 100644
--- a/src/main/java/co/permify/sdk/model/WatchResponse.java
+++ b/src/main/java/co/permify/sdk/model/WatchResponse.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/WellKnownType.java b/src/main/java/co/permify/sdk/model/WellKnownType.java
index e487254..47428ba 100644
--- a/src/main/java/co/permify/sdk/model/WellKnownType.java
+++ b/src/main/java/co/permify/sdk/model/WellKnownType.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/co/permify/sdk/model/WriteRelationshipsBody.java b/src/main/java/co/permify/sdk/model/WriteRelationshipsBody.java
index 793b912..f2d97ac 100644
--- a/src/main/java/co/permify/sdk/model/WriteRelationshipsBody.java
+++ b/src/main/java/co/permify/sdk/model/WriteRelationshipsBody.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/api/BundleApiTest.java b/src/test/java/co/permify/sdk/api/BundleApiTest.java
index 429b8c3..b0e99a4 100644
--- a/src/test/java/co/permify/sdk/api/BundleApiTest.java
+++ b/src/test/java/co/permify/sdk/api/BundleApiTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/api/DataApiTest.java b/src/test/java/co/permify/sdk/api/DataApiTest.java
index e00f7ec..09adf94 100644
--- a/src/test/java/co/permify/sdk/api/DataApiTest.java
+++ b/src/test/java/co/permify/sdk/api/DataApiTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/api/PermissionApiTest.java b/src/test/java/co/permify/sdk/api/PermissionApiTest.java
index d3bf6ba..bb15e63 100644
--- a/src/test/java/co/permify/sdk/api/PermissionApiTest.java
+++ b/src/test/java/co/permify/sdk/api/PermissionApiTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/api/SchemaApiTest.java b/src/test/java/co/permify/sdk/api/SchemaApiTest.java
index 60d25d6..c59f940 100644
--- a/src/test/java/co/permify/sdk/api/SchemaApiTest.java
+++ b/src/test/java/co/permify/sdk/api/SchemaApiTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/api/TenancyApiTest.java b/src/test/java/co/permify/sdk/api/TenancyApiTest.java
index 59dc223..5b729bf 100644
--- a/src/test/java/co/permify/sdk/api/TenancyApiTest.java
+++ b/src/test/java/co/permify/sdk/api/TenancyApiTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/api/WatchApiTest.java b/src/test/java/co/permify/sdk/api/WatchApiTest.java
index 2c828c4..ec29496 100644
--- a/src/test/java/co/permify/sdk/api/WatchApiTest.java
+++ b/src/test/java/co/permify/sdk/api/WatchApiTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/AbstractTypeTest.java b/src/test/java/co/permify/sdk/model/AbstractTypeTest.java
index 034f6c3..ad40980 100644
--- a/src/test/java/co/permify/sdk/model/AbstractTypeTest.java
+++ b/src/test/java/co/permify/sdk/model/AbstractTypeTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/AnyTest.java b/src/test/java/co/permify/sdk/model/AnyTest.java
index ef0267e..ee24a5d 100644
--- a/src/test/java/co/permify/sdk/model/AnyTest.java
+++ b/src/test/java/co/permify/sdk/model/AnyTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/ArgumentTest.java b/src/test/java/co/permify/sdk/model/ArgumentTest.java
index 2bf24ca..ad5c52b 100644
--- a/src/test/java/co/permify/sdk/model/ArgumentTest.java
+++ b/src/test/java/co/permify/sdk/model/ArgumentTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/AttributeDefinitionTest.java b/src/test/java/co/permify/sdk/model/AttributeDefinitionTest.java
index 2c5e581..e39a62f 100644
--- a/src/test/java/co/permify/sdk/model/AttributeDefinitionTest.java
+++ b/src/test/java/co/permify/sdk/model/AttributeDefinitionTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/AttributeFilterTest.java b/src/test/java/co/permify/sdk/model/AttributeFilterTest.java
index 7028671..c70edb4 100644
--- a/src/test/java/co/permify/sdk/model/AttributeFilterTest.java
+++ b/src/test/java/co/permify/sdk/model/AttributeFilterTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/AttributeReadRequestMetadataTest.java b/src/test/java/co/permify/sdk/model/AttributeReadRequestMetadataTest.java
index 732f313..a9b1452 100644
--- a/src/test/java/co/permify/sdk/model/AttributeReadRequestMetadataTest.java
+++ b/src/test/java/co/permify/sdk/model/AttributeReadRequestMetadataTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/AttributeReadResponseTest.java b/src/test/java/co/permify/sdk/model/AttributeReadResponseTest.java
index 5b43ee5..b1aa5db 100644
--- a/src/test/java/co/permify/sdk/model/AttributeReadResponseTest.java
+++ b/src/test/java/co/permify/sdk/model/AttributeReadResponseTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/AttributeTest.java b/src/test/java/co/permify/sdk/model/AttributeTest.java
index 51940c2..5acb992 100644
--- a/src/test/java/co/permify/sdk/model/AttributeTest.java
+++ b/src/test/java/co/permify/sdk/model/AttributeTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/AttributeTypeTest.java b/src/test/java/co/permify/sdk/model/AttributeTypeTest.java
index 49e4119..6127cdd 100644
--- a/src/test/java/co/permify/sdk/model/AttributeTypeTest.java
+++ b/src/test/java/co/permify/sdk/model/AttributeTypeTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/BundleDeleteBodyTest.java b/src/test/java/co/permify/sdk/model/BundleDeleteBodyTest.java
index 4c90e9a..ad10eb9 100644
--- a/src/test/java/co/permify/sdk/model/BundleDeleteBodyTest.java
+++ b/src/test/java/co/permify/sdk/model/BundleDeleteBodyTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/BundleDeleteResponseTest.java b/src/test/java/co/permify/sdk/model/BundleDeleteResponseTest.java
index 875437c..e128567 100644
--- a/src/test/java/co/permify/sdk/model/BundleDeleteResponseTest.java
+++ b/src/test/java/co/permify/sdk/model/BundleDeleteResponseTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/BundleReadBodyTest.java b/src/test/java/co/permify/sdk/model/BundleReadBodyTest.java
index d010ea6..3b1626e 100644
--- a/src/test/java/co/permify/sdk/model/BundleReadBodyTest.java
+++ b/src/test/java/co/permify/sdk/model/BundleReadBodyTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/BundleReadResponseTest.java b/src/test/java/co/permify/sdk/model/BundleReadResponseTest.java
index 7739f25..9520c0b 100644
--- a/src/test/java/co/permify/sdk/model/BundleReadResponseTest.java
+++ b/src/test/java/co/permify/sdk/model/BundleReadResponseTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/BundleRunResponseTest.java b/src/test/java/co/permify/sdk/model/BundleRunResponseTest.java
index e363aab..1db05db 100644
--- a/src/test/java/co/permify/sdk/model/BundleRunResponseTest.java
+++ b/src/test/java/co/permify/sdk/model/BundleRunResponseTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/BundleWriteBodyTest.java b/src/test/java/co/permify/sdk/model/BundleWriteBodyTest.java
index 943fcac..05c4d0a 100644
--- a/src/test/java/co/permify/sdk/model/BundleWriteBodyTest.java
+++ b/src/test/java/co/permify/sdk/model/BundleWriteBodyTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/BundleWriteResponseTest.java b/src/test/java/co/permify/sdk/model/BundleWriteResponseTest.java
index bb9f60a..cfeb42b 100644
--- a/src/test/java/co/permify/sdk/model/BundleWriteResponseTest.java
+++ b/src/test/java/co/permify/sdk/model/BundleWriteResponseTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/CheckBodyTest.java b/src/test/java/co/permify/sdk/model/CheckBodyTest.java
index 0e4bb76..0413d20 100644
--- a/src/test/java/co/permify/sdk/model/CheckBodyTest.java
+++ b/src/test/java/co/permify/sdk/model/CheckBodyTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/CheckResultTest.java b/src/test/java/co/permify/sdk/model/CheckResultTest.java
index 0d58aa0..a53956b 100644
--- a/src/test/java/co/permify/sdk/model/CheckResultTest.java
+++ b/src/test/java/co/permify/sdk/model/CheckResultTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/CheckedExprTest.java b/src/test/java/co/permify/sdk/model/CheckedExprTest.java
index f5a2068..e5b36c3 100644
--- a/src/test/java/co/permify/sdk/model/CheckedExprTest.java
+++ b/src/test/java/co/permify/sdk/model/CheckedExprTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/ChildTest.java b/src/test/java/co/permify/sdk/model/ChildTest.java
index ad384a6..c441aba 100644
--- a/src/test/java/co/permify/sdk/model/ChildTest.java
+++ b/src/test/java/co/permify/sdk/model/ChildTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/ComprehensionTest.java b/src/test/java/co/permify/sdk/model/ComprehensionTest.java
index 0861c27..5eda61d 100644
--- a/src/test/java/co/permify/sdk/model/ComprehensionTest.java
+++ b/src/test/java/co/permify/sdk/model/ComprehensionTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/ComputedAttributeTest.java b/src/test/java/co/permify/sdk/model/ComputedAttributeTest.java
index e07354e..1e3ed58 100644
--- a/src/test/java/co/permify/sdk/model/ComputedAttributeTest.java
+++ b/src/test/java/co/permify/sdk/model/ComputedAttributeTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/ComputedUserSetTest.java b/src/test/java/co/permify/sdk/model/ComputedUserSetTest.java
index e517265..d8867af 100644
--- a/src/test/java/co/permify/sdk/model/ComputedUserSetTest.java
+++ b/src/test/java/co/permify/sdk/model/ComputedUserSetTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/ConstantTest.java b/src/test/java/co/permify/sdk/model/ConstantTest.java
index e7c06d6..653fc18 100644
--- a/src/test/java/co/permify/sdk/model/ConstantTest.java
+++ b/src/test/java/co/permify/sdk/model/ConstantTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/ContextTest.java b/src/test/java/co/permify/sdk/model/ContextTest.java
index 6f9c4d0..4c74778 100644
--- a/src/test/java/co/permify/sdk/model/ContextTest.java
+++ b/src/test/java/co/permify/sdk/model/ContextTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/CreateListTest.java b/src/test/java/co/permify/sdk/model/CreateListTest.java
index 7460b23..72dda46 100644
--- a/src/test/java/co/permify/sdk/model/CreateListTest.java
+++ b/src/test/java/co/permify/sdk/model/CreateListTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/CreateStructTest.java b/src/test/java/co/permify/sdk/model/CreateStructTest.java
index a03bb70..ba9abe0 100644
--- a/src/test/java/co/permify/sdk/model/CreateStructTest.java
+++ b/src/test/java/co/permify/sdk/model/CreateStructTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/DataBundleTest.java b/src/test/java/co/permify/sdk/model/DataBundleTest.java
index f11dbcc..44b426a 100644
--- a/src/test/java/co/permify/sdk/model/DataBundleTest.java
+++ b/src/test/java/co/permify/sdk/model/DataBundleTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/DataChangeOperationTest.java b/src/test/java/co/permify/sdk/model/DataChangeOperationTest.java
index 070623a..f41c3b4 100644
--- a/src/test/java/co/permify/sdk/model/DataChangeOperationTest.java
+++ b/src/test/java/co/permify/sdk/model/DataChangeOperationTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/DataChangeTest.java b/src/test/java/co/permify/sdk/model/DataChangeTest.java
index dd4d9f8..1e2cdb6 100644
--- a/src/test/java/co/permify/sdk/model/DataChangeTest.java
+++ b/src/test/java/co/permify/sdk/model/DataChangeTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/DataChangesTest.java b/src/test/java/co/permify/sdk/model/DataChangesTest.java
index 92b6f27..df603bc 100644
--- a/src/test/java/co/permify/sdk/model/DataChangesTest.java
+++ b/src/test/java/co/permify/sdk/model/DataChangesTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/DataDeleteBodyTest.java b/src/test/java/co/permify/sdk/model/DataDeleteBodyTest.java
index 399790c..738e681 100644
--- a/src/test/java/co/permify/sdk/model/DataDeleteBodyTest.java
+++ b/src/test/java/co/permify/sdk/model/DataDeleteBodyTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/DataDeleteResponseTest.java b/src/test/java/co/permify/sdk/model/DataDeleteResponseTest.java
index d389f25..8ea3c60 100644
--- a/src/test/java/co/permify/sdk/model/DataDeleteResponseTest.java
+++ b/src/test/java/co/permify/sdk/model/DataDeleteResponseTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/DataWriteBodyTest.java b/src/test/java/co/permify/sdk/model/DataWriteBodyTest.java
index a37b403..01b53f9 100644
--- a/src/test/java/co/permify/sdk/model/DataWriteBodyTest.java
+++ b/src/test/java/co/permify/sdk/model/DataWriteBodyTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/DataWriteRequestMetadataTest.java b/src/test/java/co/permify/sdk/model/DataWriteRequestMetadataTest.java
index c8db6ad..c37473c 100644
--- a/src/test/java/co/permify/sdk/model/DataWriteRequestMetadataTest.java
+++ b/src/test/java/co/permify/sdk/model/DataWriteRequestMetadataTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/DataWriteResponseTest.java b/src/test/java/co/permify/sdk/model/DataWriteResponseTest.java
index ac56344..a72d139 100644
--- a/src/test/java/co/permify/sdk/model/DataWriteResponseTest.java
+++ b/src/test/java/co/permify/sdk/model/DataWriteResponseTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/DeleteRelationshipsBodyTest.java b/src/test/java/co/permify/sdk/model/DeleteRelationshipsBodyTest.java
index 60974c7..ec92cdd 100644
--- a/src/test/java/co/permify/sdk/model/DeleteRelationshipsBodyTest.java
+++ b/src/test/java/co/permify/sdk/model/DeleteRelationshipsBodyTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/EntityDefinitionReferenceTest.java b/src/test/java/co/permify/sdk/model/EntityDefinitionReferenceTest.java
index b09b20d..ff63843 100644
--- a/src/test/java/co/permify/sdk/model/EntityDefinitionReferenceTest.java
+++ b/src/test/java/co/permify/sdk/model/EntityDefinitionReferenceTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/EntityDefinitionTest.java b/src/test/java/co/permify/sdk/model/EntityDefinitionTest.java
index 07f3538..ecef209 100644
--- a/src/test/java/co/permify/sdk/model/EntityDefinitionTest.java
+++ b/src/test/java/co/permify/sdk/model/EntityDefinitionTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/EntityFilterTest.java b/src/test/java/co/permify/sdk/model/EntityFilterTest.java
index eb6c8e7..4df536d 100644
--- a/src/test/java/co/permify/sdk/model/EntityFilterTest.java
+++ b/src/test/java/co/permify/sdk/model/EntityFilterTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/EntityTest.java b/src/test/java/co/permify/sdk/model/EntityTest.java
index c2409f8..eaccc01 100644
--- a/src/test/java/co/permify/sdk/model/EntityTest.java
+++ b/src/test/java/co/permify/sdk/model/EntityTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/EntryTest.java b/src/test/java/co/permify/sdk/model/EntryTest.java
index 17bfb14..583c9a3 100644
--- a/src/test/java/co/permify/sdk/model/EntryTest.java
+++ b/src/test/java/co/permify/sdk/model/EntryTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/ExpandLeafTest.java b/src/test/java/co/permify/sdk/model/ExpandLeafTest.java
index d500a4f..39786e8 100644
--- a/src/test/java/co/permify/sdk/model/ExpandLeafTest.java
+++ b/src/test/java/co/permify/sdk/model/ExpandLeafTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/ExpandTreeNodeOperationTest.java b/src/test/java/co/permify/sdk/model/ExpandTreeNodeOperationTest.java
index a4e517d..d300980 100644
--- a/src/test/java/co/permify/sdk/model/ExpandTreeNodeOperationTest.java
+++ b/src/test/java/co/permify/sdk/model/ExpandTreeNodeOperationTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/ExpandTreeNodeTest.java b/src/test/java/co/permify/sdk/model/ExpandTreeNodeTest.java
index 29752c6..0cb7f27 100644
--- a/src/test/java/co/permify/sdk/model/ExpandTreeNodeTest.java
+++ b/src/test/java/co/permify/sdk/model/ExpandTreeNodeTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/ExprCallTest.java b/src/test/java/co/permify/sdk/model/ExprCallTest.java
index 44709aa..d5678cb 100644
--- a/src/test/java/co/permify/sdk/model/ExprCallTest.java
+++ b/src/test/java/co/permify/sdk/model/ExprCallTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/ExprTest.java b/src/test/java/co/permify/sdk/model/ExprTest.java
index 97b9fd7..331818d 100644
--- a/src/test/java/co/permify/sdk/model/ExprTest.java
+++ b/src/test/java/co/permify/sdk/model/ExprTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/FunctionTypeTest.java b/src/test/java/co/permify/sdk/model/FunctionTypeTest.java
index aafd7e7..117202b 100644
--- a/src/test/java/co/permify/sdk/model/FunctionTypeTest.java
+++ b/src/test/java/co/permify/sdk/model/FunctionTypeTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/IdentTest.java b/src/test/java/co/permify/sdk/model/IdentTest.java
index ed4f3ec..5de3cea 100644
--- a/src/test/java/co/permify/sdk/model/IdentTest.java
+++ b/src/test/java/co/permify/sdk/model/IdentTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/LeafTest.java b/src/test/java/co/permify/sdk/model/LeafTest.java
index 2992d6b..37b3841 100644
--- a/src/test/java/co/permify/sdk/model/LeafTest.java
+++ b/src/test/java/co/permify/sdk/model/LeafTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/ListTypeTest.java b/src/test/java/co/permify/sdk/model/ListTypeTest.java
index 2991741..c77fe33 100644
--- a/src/test/java/co/permify/sdk/model/ListTypeTest.java
+++ b/src/test/java/co/permify/sdk/model/ListTypeTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/LookupEntityBodyTest.java b/src/test/java/co/permify/sdk/model/LookupEntityBodyTest.java
index 0d9addb..3c18b8f 100644
--- a/src/test/java/co/permify/sdk/model/LookupEntityBodyTest.java
+++ b/src/test/java/co/permify/sdk/model/LookupEntityBodyTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/LookupEntityStreamBodyTest.java b/src/test/java/co/permify/sdk/model/LookupEntityStreamBodyTest.java
index acdb2c1..4fb5d86 100644
--- a/src/test/java/co/permify/sdk/model/LookupEntityStreamBodyTest.java
+++ b/src/test/java/co/permify/sdk/model/LookupEntityStreamBodyTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/LookupSubjectBodyTest.java b/src/test/java/co/permify/sdk/model/LookupSubjectBodyTest.java
index 2e9b488..05a4f38 100644
--- a/src/test/java/co/permify/sdk/model/LookupSubjectBodyTest.java
+++ b/src/test/java/co/permify/sdk/model/LookupSubjectBodyTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/MapTypeTest.java b/src/test/java/co/permify/sdk/model/MapTypeTest.java
index 239f5b2..8a47996 100644
--- a/src/test/java/co/permify/sdk/model/MapTypeTest.java
+++ b/src/test/java/co/permify/sdk/model/MapTypeTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/PartialWriteBodyTest.java b/src/test/java/co/permify/sdk/model/PartialWriteBodyTest.java
index cf79f90..896ca5a 100644
--- a/src/test/java/co/permify/sdk/model/PartialWriteBodyTest.java
+++ b/src/test/java/co/permify/sdk/model/PartialWriteBodyTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/PartialsTest.java b/src/test/java/co/permify/sdk/model/PartialsTest.java
index eba0702..193ac6c 100644
--- a/src/test/java/co/permify/sdk/model/PartialsTest.java
+++ b/src/test/java/co/permify/sdk/model/PartialsTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/PermissionCheckRequestMetadataTest.java b/src/test/java/co/permify/sdk/model/PermissionCheckRequestMetadataTest.java
index b30d7ef..9c124e7 100644
--- a/src/test/java/co/permify/sdk/model/PermissionCheckRequestMetadataTest.java
+++ b/src/test/java/co/permify/sdk/model/PermissionCheckRequestMetadataTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/PermissionCheckResponseMetadataTest.java b/src/test/java/co/permify/sdk/model/PermissionCheckResponseMetadataTest.java
index c4913ae..51cc09f 100644
--- a/src/test/java/co/permify/sdk/model/PermissionCheckResponseMetadataTest.java
+++ b/src/test/java/co/permify/sdk/model/PermissionCheckResponseMetadataTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/PermissionCheckResponseTest.java b/src/test/java/co/permify/sdk/model/PermissionCheckResponseTest.java
index fd9cf25..c9e6c65 100644
--- a/src/test/java/co/permify/sdk/model/PermissionCheckResponseTest.java
+++ b/src/test/java/co/permify/sdk/model/PermissionCheckResponseTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/PermissionDefinitionTest.java b/src/test/java/co/permify/sdk/model/PermissionDefinitionTest.java
index 9be4cba..5844a15 100644
--- a/src/test/java/co/permify/sdk/model/PermissionDefinitionTest.java
+++ b/src/test/java/co/permify/sdk/model/PermissionDefinitionTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/PermissionExpandBodyTest.java b/src/test/java/co/permify/sdk/model/PermissionExpandBodyTest.java
index a3c7672..b17a74d 100644
--- a/src/test/java/co/permify/sdk/model/PermissionExpandBodyTest.java
+++ b/src/test/java/co/permify/sdk/model/PermissionExpandBodyTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/PermissionExpandRequestMetadataTest.java b/src/test/java/co/permify/sdk/model/PermissionExpandRequestMetadataTest.java
index e1ef4ba..89826a8 100644
--- a/src/test/java/co/permify/sdk/model/PermissionExpandRequestMetadataTest.java
+++ b/src/test/java/co/permify/sdk/model/PermissionExpandRequestMetadataTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/PermissionExpandResponseTest.java b/src/test/java/co/permify/sdk/model/PermissionExpandResponseTest.java
index 50acaf3..fcaa76d 100644
--- a/src/test/java/co/permify/sdk/model/PermissionExpandResponseTest.java
+++ b/src/test/java/co/permify/sdk/model/PermissionExpandResponseTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/PermissionLookupEntityRequestMetadataTest.java b/src/test/java/co/permify/sdk/model/PermissionLookupEntityRequestMetadataTest.java
index 65e9124..d171148 100644
--- a/src/test/java/co/permify/sdk/model/PermissionLookupEntityRequestMetadataTest.java
+++ b/src/test/java/co/permify/sdk/model/PermissionLookupEntityRequestMetadataTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/PermissionLookupEntityResponseTest.java b/src/test/java/co/permify/sdk/model/PermissionLookupEntityResponseTest.java
index 2dbe0f8..09c6a35 100644
--- a/src/test/java/co/permify/sdk/model/PermissionLookupEntityResponseTest.java
+++ b/src/test/java/co/permify/sdk/model/PermissionLookupEntityResponseTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/PermissionLookupEntityStreamResponseTest.java b/src/test/java/co/permify/sdk/model/PermissionLookupEntityStreamResponseTest.java
index 36a2efe..cd2eb6a 100644
--- a/src/test/java/co/permify/sdk/model/PermissionLookupEntityStreamResponseTest.java
+++ b/src/test/java/co/permify/sdk/model/PermissionLookupEntityStreamResponseTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/PermissionLookupSubjectRequestMetadataTest.java b/src/test/java/co/permify/sdk/model/PermissionLookupSubjectRequestMetadataTest.java
index 712f515..4333644 100644
--- a/src/test/java/co/permify/sdk/model/PermissionLookupSubjectRequestMetadataTest.java
+++ b/src/test/java/co/permify/sdk/model/PermissionLookupSubjectRequestMetadataTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/PermissionLookupSubjectResponseTest.java b/src/test/java/co/permify/sdk/model/PermissionLookupSubjectResponseTest.java
index 670d0bc..71cc183 100644
--- a/src/test/java/co/permify/sdk/model/PermissionLookupSubjectResponseTest.java
+++ b/src/test/java/co/permify/sdk/model/PermissionLookupSubjectResponseTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/PermissionSubjectPermissionRequestMetadataTest.java b/src/test/java/co/permify/sdk/model/PermissionSubjectPermissionRequestMetadataTest.java
index 7176d3b..11832ed 100644
--- a/src/test/java/co/permify/sdk/model/PermissionSubjectPermissionRequestMetadataTest.java
+++ b/src/test/java/co/permify/sdk/model/PermissionSubjectPermissionRequestMetadataTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/PermissionSubjectPermissionResponseTest.java b/src/test/java/co/permify/sdk/model/PermissionSubjectPermissionResponseTest.java
index ae96047..e5e6486 100644
--- a/src/test/java/co/permify/sdk/model/PermissionSubjectPermissionResponseTest.java
+++ b/src/test/java/co/permify/sdk/model/PermissionSubjectPermissionResponseTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/PrimitiveTypeTest.java b/src/test/java/co/permify/sdk/model/PrimitiveTypeTest.java
index 5694284..7b298e5 100644
--- a/src/test/java/co/permify/sdk/model/PrimitiveTypeTest.java
+++ b/src/test/java/co/permify/sdk/model/PrimitiveTypeTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/ReadAttributesBodyTest.java b/src/test/java/co/permify/sdk/model/ReadAttributesBodyTest.java
index a2a37f1..6c33531 100644
--- a/src/test/java/co/permify/sdk/model/ReadAttributesBodyTest.java
+++ b/src/test/java/co/permify/sdk/model/ReadAttributesBodyTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/ReadRelationshipsBodyTest.java b/src/test/java/co/permify/sdk/model/ReadRelationshipsBodyTest.java
index e687360..c77f0d5 100644
--- a/src/test/java/co/permify/sdk/model/ReadRelationshipsBodyTest.java
+++ b/src/test/java/co/permify/sdk/model/ReadRelationshipsBodyTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/RelationDefinitionTest.java b/src/test/java/co/permify/sdk/model/RelationDefinitionTest.java
index 47075db..0de1f08 100644
--- a/src/test/java/co/permify/sdk/model/RelationDefinitionTest.java
+++ b/src/test/java/co/permify/sdk/model/RelationDefinitionTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/RelationReferenceTest.java b/src/test/java/co/permify/sdk/model/RelationReferenceTest.java
index a51e91b..efa11c9 100644
--- a/src/test/java/co/permify/sdk/model/RelationReferenceTest.java
+++ b/src/test/java/co/permify/sdk/model/RelationReferenceTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/RelationshipDeleteResponseTest.java b/src/test/java/co/permify/sdk/model/RelationshipDeleteResponseTest.java
index 8cdf08c..29bf785 100644
--- a/src/test/java/co/permify/sdk/model/RelationshipDeleteResponseTest.java
+++ b/src/test/java/co/permify/sdk/model/RelationshipDeleteResponseTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/RelationshipReadRequestMetadataTest.java b/src/test/java/co/permify/sdk/model/RelationshipReadRequestMetadataTest.java
index 19f447e..41b1a40 100644
--- a/src/test/java/co/permify/sdk/model/RelationshipReadRequestMetadataTest.java
+++ b/src/test/java/co/permify/sdk/model/RelationshipReadRequestMetadataTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/RelationshipReadResponseTest.java b/src/test/java/co/permify/sdk/model/RelationshipReadResponseTest.java
index e5fa569..9059d79 100644
--- a/src/test/java/co/permify/sdk/model/RelationshipReadResponseTest.java
+++ b/src/test/java/co/permify/sdk/model/RelationshipReadResponseTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/RelationshipWriteRequestMetadataTest.java b/src/test/java/co/permify/sdk/model/RelationshipWriteRequestMetadataTest.java
index bd4222f..226c587 100644
--- a/src/test/java/co/permify/sdk/model/RelationshipWriteRequestMetadataTest.java
+++ b/src/test/java/co/permify/sdk/model/RelationshipWriteRequestMetadataTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/RelationshipWriteResponseTest.java b/src/test/java/co/permify/sdk/model/RelationshipWriteResponseTest.java
index 9403417..d5fc610 100644
--- a/src/test/java/co/permify/sdk/model/RelationshipWriteResponseTest.java
+++ b/src/test/java/co/permify/sdk/model/RelationshipWriteResponseTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/RewriteOperationTest.java b/src/test/java/co/permify/sdk/model/RewriteOperationTest.java
index 3ae011d..bcf3937 100644
--- a/src/test/java/co/permify/sdk/model/RewriteOperationTest.java
+++ b/src/test/java/co/permify/sdk/model/RewriteOperationTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/RewriteTest.java b/src/test/java/co/permify/sdk/model/RewriteTest.java
index f2b295c..3ea82c9 100644
--- a/src/test/java/co/permify/sdk/model/RewriteTest.java
+++ b/src/test/java/co/permify/sdk/model/RewriteTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/RuleDefinitionTest.java b/src/test/java/co/permify/sdk/model/RuleDefinitionTest.java
index 046dcc0..67d0c7c 100644
--- a/src/test/java/co/permify/sdk/model/RuleDefinitionTest.java
+++ b/src/test/java/co/permify/sdk/model/RuleDefinitionTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/RunBundleBodyTest.java b/src/test/java/co/permify/sdk/model/RunBundleBodyTest.java
index 8e6d760..44c16ce 100644
--- a/src/test/java/co/permify/sdk/model/RunBundleBodyTest.java
+++ b/src/test/java/co/permify/sdk/model/RunBundleBodyTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/SchemaDefinitionReferenceTest.java b/src/test/java/co/permify/sdk/model/SchemaDefinitionReferenceTest.java
index 8e26e16..33297f0 100644
--- a/src/test/java/co/permify/sdk/model/SchemaDefinitionReferenceTest.java
+++ b/src/test/java/co/permify/sdk/model/SchemaDefinitionReferenceTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/SchemaDefinitionTest.java b/src/test/java/co/permify/sdk/model/SchemaDefinitionTest.java
index 93c6717..4529016 100644
--- a/src/test/java/co/permify/sdk/model/SchemaDefinitionTest.java
+++ b/src/test/java/co/permify/sdk/model/SchemaDefinitionTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/SchemaListBodyTest.java b/src/test/java/co/permify/sdk/model/SchemaListBodyTest.java
index b142c9c..0973bf5 100644
--- a/src/test/java/co/permify/sdk/model/SchemaListBodyTest.java
+++ b/src/test/java/co/permify/sdk/model/SchemaListBodyTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/SchemaListResponseTest.java b/src/test/java/co/permify/sdk/model/SchemaListResponseTest.java
index 3ce5e3d..6696f13 100644
--- a/src/test/java/co/permify/sdk/model/SchemaListResponseTest.java
+++ b/src/test/java/co/permify/sdk/model/SchemaListResponseTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/SchemaListTest.java b/src/test/java/co/permify/sdk/model/SchemaListTest.java
index bc76f67..d230266 100644
--- a/src/test/java/co/permify/sdk/model/SchemaListTest.java
+++ b/src/test/java/co/permify/sdk/model/SchemaListTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/SchemaPartialWriteRequestMetadataTest.java b/src/test/java/co/permify/sdk/model/SchemaPartialWriteRequestMetadataTest.java
index 876f5f8..0e1bf13 100644
--- a/src/test/java/co/permify/sdk/model/SchemaPartialWriteRequestMetadataTest.java
+++ b/src/test/java/co/permify/sdk/model/SchemaPartialWriteRequestMetadataTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/SchemaPartialWriteResponseTest.java b/src/test/java/co/permify/sdk/model/SchemaPartialWriteResponseTest.java
index 8f7dc69..76a282e 100644
--- a/src/test/java/co/permify/sdk/model/SchemaPartialWriteResponseTest.java
+++ b/src/test/java/co/permify/sdk/model/SchemaPartialWriteResponseTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/SchemaReadBodyTest.java b/src/test/java/co/permify/sdk/model/SchemaReadBodyTest.java
index a903e3a..30a1375 100644
--- a/src/test/java/co/permify/sdk/model/SchemaReadBodyTest.java
+++ b/src/test/java/co/permify/sdk/model/SchemaReadBodyTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/SchemaReadRequestMetadataTest.java b/src/test/java/co/permify/sdk/model/SchemaReadRequestMetadataTest.java
index f731250..4ddf058 100644
--- a/src/test/java/co/permify/sdk/model/SchemaReadRequestMetadataTest.java
+++ b/src/test/java/co/permify/sdk/model/SchemaReadRequestMetadataTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/SchemaReadResponseTest.java b/src/test/java/co/permify/sdk/model/SchemaReadResponseTest.java
index dc96137..cfac5d3 100644
--- a/src/test/java/co/permify/sdk/model/SchemaReadResponseTest.java
+++ b/src/test/java/co/permify/sdk/model/SchemaReadResponseTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/SchemaWriteBodyTest.java b/src/test/java/co/permify/sdk/model/SchemaWriteBodyTest.java
index fb51e14..a67e13e 100644
--- a/src/test/java/co/permify/sdk/model/SchemaWriteBodyTest.java
+++ b/src/test/java/co/permify/sdk/model/SchemaWriteBodyTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/SchemaWriteResponseTest.java b/src/test/java/co/permify/sdk/model/SchemaWriteResponseTest.java
index b1bcebc..3e23dde 100644
--- a/src/test/java/co/permify/sdk/model/SchemaWriteResponseTest.java
+++ b/src/test/java/co/permify/sdk/model/SchemaWriteResponseTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/SelectTest.java b/src/test/java/co/permify/sdk/model/SelectTest.java
index 817799b..4892c59 100644
--- a/src/test/java/co/permify/sdk/model/SelectTest.java
+++ b/src/test/java/co/permify/sdk/model/SelectTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/SourceInfoTest.java b/src/test/java/co/permify/sdk/model/SourceInfoTest.java
index 5b93a51..9901433 100644
--- a/src/test/java/co/permify/sdk/model/SourceInfoTest.java
+++ b/src/test/java/co/permify/sdk/model/SourceInfoTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/StatusTest.java b/src/test/java/co/permify/sdk/model/StatusTest.java
index 9db990b..5bc559e 100644
--- a/src/test/java/co/permify/sdk/model/StatusTest.java
+++ b/src/test/java/co/permify/sdk/model/StatusTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/StreamResultOfPermissionLookupEntityStreamResponseTest.java b/src/test/java/co/permify/sdk/model/StreamResultOfPermissionLookupEntityStreamResponseTest.java
index 0a6bab8..344c984 100644
--- a/src/test/java/co/permify/sdk/model/StreamResultOfPermissionLookupEntityStreamResponseTest.java
+++ b/src/test/java/co/permify/sdk/model/StreamResultOfPermissionLookupEntityStreamResponseTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/StreamResultOfWatchResponseTest.java b/src/test/java/co/permify/sdk/model/StreamResultOfWatchResponseTest.java
index aac395f..a23267b 100644
--- a/src/test/java/co/permify/sdk/model/StreamResultOfWatchResponseTest.java
+++ b/src/test/java/co/permify/sdk/model/StreamResultOfWatchResponseTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/StringArrayValueTest.java b/src/test/java/co/permify/sdk/model/StringArrayValueTest.java
index bafb09d..3ddee27 100644
--- a/src/test/java/co/permify/sdk/model/StringArrayValueTest.java
+++ b/src/test/java/co/permify/sdk/model/StringArrayValueTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/SubjectFilterTest.java b/src/test/java/co/permify/sdk/model/SubjectFilterTest.java
index a7576d5..10977e9 100644
--- a/src/test/java/co/permify/sdk/model/SubjectFilterTest.java
+++ b/src/test/java/co/permify/sdk/model/SubjectFilterTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/SubjectPermissionBodyTest.java b/src/test/java/co/permify/sdk/model/SubjectPermissionBodyTest.java
index f7c37a4..5edce2e 100644
--- a/src/test/java/co/permify/sdk/model/SubjectPermissionBodyTest.java
+++ b/src/test/java/co/permify/sdk/model/SubjectPermissionBodyTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/SubjectTest.java b/src/test/java/co/permify/sdk/model/SubjectTest.java
index 2a3a28b..a216a8f 100644
--- a/src/test/java/co/permify/sdk/model/SubjectTest.java
+++ b/src/test/java/co/permify/sdk/model/SubjectTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/SubjectsTest.java b/src/test/java/co/permify/sdk/model/SubjectsTest.java
index 63ae805..d0ef830 100644
--- a/src/test/java/co/permify/sdk/model/SubjectsTest.java
+++ b/src/test/java/co/permify/sdk/model/SubjectsTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/TenantCreateRequestTest.java b/src/test/java/co/permify/sdk/model/TenantCreateRequestTest.java
index 7999ab5..d7f6ccc 100644
--- a/src/test/java/co/permify/sdk/model/TenantCreateRequestTest.java
+++ b/src/test/java/co/permify/sdk/model/TenantCreateRequestTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/TenantCreateResponseTest.java b/src/test/java/co/permify/sdk/model/TenantCreateResponseTest.java
index 5fd38dd..d483994 100644
--- a/src/test/java/co/permify/sdk/model/TenantCreateResponseTest.java
+++ b/src/test/java/co/permify/sdk/model/TenantCreateResponseTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/TenantDeleteResponseTest.java b/src/test/java/co/permify/sdk/model/TenantDeleteResponseTest.java
index 51f17d8..8a2164b 100644
--- a/src/test/java/co/permify/sdk/model/TenantDeleteResponseTest.java
+++ b/src/test/java/co/permify/sdk/model/TenantDeleteResponseTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -13,7 +13,6 @@
package co.permify.sdk.model;
-import co.permify.sdk.model.Tenant;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
@@ -39,11 +38,11 @@ public void testTenantDeleteResponse() {
}
/**
- * Test the property 'tenant'
+ * Test the property 'tenantId'
*/
@Test
- public void tenantTest() {
- // TODO: test tenant
+ public void tenantIdTest() {
+ // TODO: test tenantId
}
}
diff --git a/src/test/java/co/permify/sdk/model/TenantListRequestTest.java b/src/test/java/co/permify/sdk/model/TenantListRequestTest.java
index 86a4e26..18a24c2 100644
--- a/src/test/java/co/permify/sdk/model/TenantListRequestTest.java
+++ b/src/test/java/co/permify/sdk/model/TenantListRequestTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/TenantListResponseTest.java b/src/test/java/co/permify/sdk/model/TenantListResponseTest.java
index 924e6b4..a3d02db 100644
--- a/src/test/java/co/permify/sdk/model/TenantListResponseTest.java
+++ b/src/test/java/co/permify/sdk/model/TenantListResponseTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/TenantTest.java b/src/test/java/co/permify/sdk/model/TenantTest.java
index 5aaca07..ae57535 100644
--- a/src/test/java/co/permify/sdk/model/TenantTest.java
+++ b/src/test/java/co/permify/sdk/model/TenantTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/TupleFilterTest.java b/src/test/java/co/permify/sdk/model/TupleFilterTest.java
index fef4a19..011f1cd 100644
--- a/src/test/java/co/permify/sdk/model/TupleFilterTest.java
+++ b/src/test/java/co/permify/sdk/model/TupleFilterTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/TupleSetTest.java b/src/test/java/co/permify/sdk/model/TupleSetTest.java
index 1c0f351..2571093 100644
--- a/src/test/java/co/permify/sdk/model/TupleSetTest.java
+++ b/src/test/java/co/permify/sdk/model/TupleSetTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/TupleTest.java b/src/test/java/co/permify/sdk/model/TupleTest.java
index 04fbbe2..ef16ef1 100644
--- a/src/test/java/co/permify/sdk/model/TupleTest.java
+++ b/src/test/java/co/permify/sdk/model/TupleTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/TupleToUserSetTest.java b/src/test/java/co/permify/sdk/model/TupleToUserSetTest.java
index f0db6ce..047b647 100644
--- a/src/test/java/co/permify/sdk/model/TupleToUserSetTest.java
+++ b/src/test/java/co/permify/sdk/model/TupleToUserSetTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/V1CallTest.java b/src/test/java/co/permify/sdk/model/V1CallTest.java
index e0a1930..79bfa67 100644
--- a/src/test/java/co/permify/sdk/model/V1CallTest.java
+++ b/src/test/java/co/permify/sdk/model/V1CallTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/V1ExpandTest.java b/src/test/java/co/permify/sdk/model/V1ExpandTest.java
index 0e781b1..a6c2c53 100644
--- a/src/test/java/co/permify/sdk/model/V1ExpandTest.java
+++ b/src/test/java/co/permify/sdk/model/V1ExpandTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/V1OperationTest.java b/src/test/java/co/permify/sdk/model/V1OperationTest.java
index 246b58f..1961bba 100644
--- a/src/test/java/co/permify/sdk/model/V1OperationTest.java
+++ b/src/test/java/co/permify/sdk/model/V1OperationTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/V1alpha1ReferenceTest.java b/src/test/java/co/permify/sdk/model/V1alpha1ReferenceTest.java
index 61b1a50..642894c 100644
--- a/src/test/java/co/permify/sdk/model/V1alpha1ReferenceTest.java
+++ b/src/test/java/co/permify/sdk/model/V1alpha1ReferenceTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/V1alpha1TypeTest.java b/src/test/java/co/permify/sdk/model/V1alpha1TypeTest.java
index cc809a3..e6f864b 100644
--- a/src/test/java/co/permify/sdk/model/V1alpha1TypeTest.java
+++ b/src/test/java/co/permify/sdk/model/V1alpha1TypeTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/ValuesTest.java b/src/test/java/co/permify/sdk/model/ValuesTest.java
index 40a5fae..48f70df 100644
--- a/src/test/java/co/permify/sdk/model/ValuesTest.java
+++ b/src/test/java/co/permify/sdk/model/ValuesTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/WatchBodyTest.java b/src/test/java/co/permify/sdk/model/WatchBodyTest.java
index 4c7bebc..57aaadf 100644
--- a/src/test/java/co/permify/sdk/model/WatchBodyTest.java
+++ b/src/test/java/co/permify/sdk/model/WatchBodyTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/WatchResponseTest.java b/src/test/java/co/permify/sdk/model/WatchResponseTest.java
index 921b955..8b13641 100644
--- a/src/test/java/co/permify/sdk/model/WatchResponseTest.java
+++ b/src/test/java/co/permify/sdk/model/WatchResponseTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/WellKnownTypeTest.java b/src/test/java/co/permify/sdk/model/WellKnownTypeTest.java
index da87d93..9fc0b94 100644
--- a/src/test/java/co/permify/sdk/model/WellKnownTypeTest.java
+++ b/src/test/java/co/permify/sdk/model/WellKnownTypeTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/test/java/co/permify/sdk/model/WriteRelationshipsBodyTest.java b/src/test/java/co/permify/sdk/model/WriteRelationshipsBodyTest.java
index 44bf28c..7ec1ad1 100644
--- a/src/test/java/co/permify/sdk/model/WriteRelationshipsBodyTest.java
+++ b/src/test/java/co/permify/sdk/model/WriteRelationshipsBodyTest.java
@@ -2,7 +2,7 @@
* Permify API
* Permify is an open source authorization service for creating fine-grained and scalable authorization systems.
*
- * The version of the OpenAPI document: v1.4.3
+ * The version of the OpenAPI document: v1.4.4
* Contact: hello@permify.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).