diff --git a/openapi/schemas/asset.openapi.json b/openapi/schemas/asset.openapi.json index 69cb449bc..b3bf34e9e 100644 --- a/openapi/schemas/asset.openapi.json +++ b/openapi/schemas/asset.openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Rapidata Asset API", "description": "The API for the Rapidata Asset service", - "version": "2026.08.21.0757-4bc4250" + "version": "2026.08.21.1305-2bf435d" }, "servers": [ { diff --git a/openapi/schemas/audience.openapi.json b/openapi/schemas/audience.openapi.json index b27ef428c..e1fe2a420 100644 --- a/openapi/schemas/audience.openapi.json +++ b/openapi/schemas/audience.openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Rapidata Audience API", "description": "The API for the Rapidata Audience service", - "version": "2026.08.21.0757-4bc4250" + "version": "2026.08.21.1305-2bf435d" }, "servers": [ { diff --git a/openapi/schemas/campaign.openapi.json b/openapi/schemas/campaign.openapi.json index d60a67e63..3dcaf17b2 100644 --- a/openapi/schemas/campaign.openapi.json +++ b/openapi/schemas/campaign.openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Rapidata Campaign API", "description": "The API for the Rapidata Campaign service", - "version": "2026.08.21.0757-4bc4250" + "version": "2026.08.21.1305-2bf435d" }, "servers": [ { diff --git a/openapi/schemas/dataset.openapi.json b/openapi/schemas/dataset.openapi.json index 29b472e42..d1b646b8a 100644 --- a/openapi/schemas/dataset.openapi.json +++ b/openapi/schemas/dataset.openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Rapidata Dataset API", "description": "The API for the Rapidata Dataset service", - "version": "2026.08.21.0757-4bc4250" + "version": "2026.08.21.1305-2bf435d" }, "servers": [ { diff --git a/openapi/schemas/flow.openapi.json b/openapi/schemas/flow.openapi.json index 1d714e3ea..ca18c975c 100644 --- a/openapi/schemas/flow.openapi.json +++ b/openapi/schemas/flow.openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Rapidata Flow API", "description": "The API for the Rapidata Flow service", - "version": "2026.08.21.0757-4bc4250" + "version": "2026.08.21.1305-2bf435d" }, "servers": [ { diff --git a/openapi/schemas/identity.openapi.json b/openapi/schemas/identity.openapi.json index ee08d700e..96ad2d447 100644 --- a/openapi/schemas/identity.openapi.json +++ b/openapi/schemas/identity.openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Rapidata Identity API", "description": "The API for the Rapidata Identity service", - "version": "2026.08.21.0757-4bc4250" + "version": "2026.08.21.1305-2bf435d" }, "servers": [ { diff --git a/openapi/schemas/leaderboard.openapi.json b/openapi/schemas/leaderboard.openapi.json index ca1f5c75b..b8ecb5308 100644 --- a/openapi/schemas/leaderboard.openapi.json +++ b/openapi/schemas/leaderboard.openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Rapidata Leaderboard API", "description": "The API for the Rapidata Leaderboard service", - "version": "2026.08.21.0757-4bc4250" + "version": "2026.08.21.1305-2bf435d" }, "servers": [ { diff --git a/openapi/schemas/order.openapi.json b/openapi/schemas/order.openapi.json index fa4e4bf8a..7d6309e41 100644 --- a/openapi/schemas/order.openapi.json +++ b/openapi/schemas/order.openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Rapidata Order API", "description": "The API for the Rapidata Order service", - "version": "2026.08.21.0757-4bc4250" + "version": "2026.08.21.1305-2bf435d" }, "servers": [ { @@ -355,6 +355,107 @@ } } }, + "/job/{jobId}/shares": { + "post": { + "tags": [ + "Job" + ], + "summary": "Grants a customer viewer or editor access to a job by their email.", + "description": "The email must belong to an existing account; an unknown email returns 400 Bad Request.\n Granting editor access implies viewing. Re-sharing at the same level is idempotent.", + "parameters": [ + { + "name": "jobId", + "in": "path", + "description": "The id of the job to share.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "description": "The email to share with and the access level to grant.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/CreateJobShareEndpoint_Input" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "No Content" + }, + "400": { + "description": "Bad Request", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ValidationProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthenticated" + }, + "403": { + "description": "Forbidden" + } + } + }, + "get": { + "tags": [ + "Job" + ], + "summary": "Returns each customer a job is shared with, together with their access level.", + "description": "The email is resolved for display and may be null if the account can no longer be resolved.", + "parameters": [ + { + "name": "jobId", + "in": "path", + "description": "The id of the job.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetJobSharesEndpoint_Output" + } + } + } + } + }, + "400": { + "description": "Bad Request", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ValidationProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthenticated" + }, + "403": { + "description": "Forbidden" + } + } + } + }, "/job/definition/{definitionId}": { "delete": { "tags": [ @@ -2618,12 +2719,447 @@ "type": "string" } }, - "x-parameter-group": "sort" + "x-parameter-group": "sort" + }, + { + "name": "definition_id", + "in": "query", + "description": "Filter by definition_id.", + "style": "deepObject", + "explode": true, + "schema": { + "type": "object", + "properties": { + "eq": { + "type": "string" + }, + "neq": { + "type": "string" + }, + "gt": { + "type": "string" + }, + "gte": { + "type": "string" + }, + "lt": { + "type": "string" + }, + "lte": { + "type": "string" + }, + "contains": { + "type": "string" + }, + "starts_with": { + "type": "string" + }, + "ends_with": { + "type": "string" + }, + "in": { + "type": "array", + "items": { + "type": "string" + } + }, + "not_contains": { + "type": "string" + } + } + }, + "x-parameter-group": "filters" + }, + { + "name": "name", + "in": "query", + "description": "Filter by name.", + "style": "deepObject", + "explode": true, + "schema": { + "type": "object", + "properties": { + "eq": { + "type": "string" + }, + "neq": { + "type": "string" + }, + "gt": { + "type": "string" + }, + "gte": { + "type": "string" + }, + "lt": { + "type": "string" + }, + "lte": { + "type": "string" + }, + "contains": { + "type": "string" + }, + "starts_with": { + "type": "string" + }, + "ends_with": { + "type": "string" + }, + "in": { + "type": "array", + "items": { + "type": "string" + } + }, + "not_contains": { + "type": "string" + } + } + }, + "x-parameter-group": "filters" + }, + { + "name": "definition_type", + "in": "query", + "description": "Filter by definition_type.", + "style": "deepObject", + "explode": true, + "schema": { + "type": "object", + "properties": { + "eq": { + "type": "string" + }, + "neq": { + "type": "string" + }, + "gt": { + "type": "string" + }, + "gte": { + "type": "string" + }, + "lt": { + "type": "string" + }, + "lte": { + "type": "string" + }, + "contains": { + "type": "string" + }, + "starts_with": { + "type": "string" + }, + "ends_with": { + "type": "string" + }, + "in": { + "type": "array", + "items": { + "type": "string" + } + }, + "not_contains": { + "type": "string" + } + } + }, + "x-parameter-group": "filters" + }, + { + "name": "created_at", + "in": "query", + "description": "Filter by created_at.", + "style": "deepObject", + "explode": true, + "schema": { + "type": "object", + "properties": { + "eq": { + "type": "string" + }, + "neq": { + "type": "string" + }, + "gt": { + "type": "string" + }, + "gte": { + "type": "string" + }, + "lt": { + "type": "string" + }, + "lte": { + "type": "string" + }, + "contains": { + "type": "string" + }, + "starts_with": { + "type": "string" + }, + "ends_with": { + "type": "string" + }, + "in": { + "type": "array", + "items": { + "type": "string" + } + }, + "not_contains": { + "type": "string" + } + } + }, + "x-parameter-group": "filters" + }, + { + "name": "owner_id", + "in": "query", + "description": "Filter by owner_id.", + "style": "deepObject", + "explode": true, + "schema": { + "type": "object", + "properties": { + "eq": { + "type": "string" + }, + "neq": { + "type": "string" + }, + "gt": { + "type": "string" + }, + "gte": { + "type": "string" + }, + "lt": { + "type": "string" + }, + "lte": { + "type": "string" + }, + "contains": { + "type": "string" + }, + "starts_with": { + "type": "string" + }, + "ends_with": { + "type": "string" + }, + "in": { + "type": "array", + "items": { + "type": "string" + } + }, + "not_contains": { + "type": "string" + } + } + }, + "x-parameter-group": "filters" + }, + { + "name": "owner_mail", + "in": "query", + "description": "Filter by owner_mail.", + "style": "deepObject", + "explode": true, + "schema": { + "type": "object", + "properties": { + "eq": { + "type": "string" + }, + "neq": { + "type": "string" + }, + "gt": { + "type": "string" + }, + "gte": { + "type": "string" + }, + "lt": { + "type": "string" + }, + "lte": { + "type": "string" + }, + "contains": { + "type": "string" + }, + "starts_with": { + "type": "string" + }, + "ends_with": { + "type": "string" + }, + "in": { + "type": "array", + "items": { + "type": "string" + } + }, + "not_contains": { + "type": "string" + } + } + }, + "x-parameter-group": "filters" + }, + { + "name": "logic", + "in": "query", + "description": "How to combine the field filters: \"and\" (default) requires every filter to match, \"or\" requires any of them to match.", + "schema": { + "enum": [ + "and", + "or" + ], + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/QueryPublicJobDefinitionsEndpoint_PagedResultOfOutput" + } + } + } + }, + "400": { + "description": "Bad Request", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ValidationProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthenticated" + }, + "403": { + "description": "Forbidden" + } + } + } + }, + "/jobs/shared": { + "get": { + "tags": [ + "Job" + ], + "summary": "Queries the jobs another organization has shared with the caller.", + "parameters": [ + { + "name": "page", + "in": "query", + "description": "The 1-based page index.", + "schema": { + "type": "integer" + }, + "x-parameter-group": "page" + }, + { + "name": "page_size", + "in": "query", + "description": "The number of items per page.", + "schema": { + "type": "integer" + }, + "x-parameter-group": "page" + }, + { + "name": "sort", + "in": "query", + "description": "Sort fields. Prefix with - for descending order (e.g. -created_at).", + "schema": { + "type": "array", + "items": { + "enum": [ + "name", + "-name", + "created_at", + "-created_at", + "state", + "-state", + "owner_mail", + "-owner_mail", + "progress", + "-progress" + ], + "type": "string" + } + }, + "x-parameter-group": "sort" + }, + { + "name": "id", + "in": "query", + "description": "Filter by id.", + "style": "deepObject", + "explode": true, + "schema": { + "type": "object", + "properties": { + "eq": { + "type": "string" + }, + "neq": { + "type": "string" + }, + "gt": { + "type": "string" + }, + "gte": { + "type": "string" + }, + "lt": { + "type": "string" + }, + "lte": { + "type": "string" + }, + "contains": { + "type": "string" + }, + "starts_with": { + "type": "string" + }, + "ends_with": { + "type": "string" + }, + "in": { + "type": "array", + "items": { + "type": "string" + } + }, + "not_contains": { + "type": "string" + } + } + }, + "x-parameter-group": "filters" }, { - "name": "definition_id", + "name": "name", "in": "query", - "description": "Filter by definition_id.", + "description": "Filter by name.", "style": "deepObject", "explode": true, "schema": { @@ -2670,9 +3206,9 @@ "x-parameter-group": "filters" }, { - "name": "name", + "name": "job_definition_id", "in": "query", - "description": "Filter by name.", + "description": "Filter by job_definition_id.", "style": "deepObject", "explode": true, "schema": { @@ -2719,9 +3255,9 @@ "x-parameter-group": "filters" }, { - "name": "definition_type", + "name": "audience_id", "in": "query", - "description": "Filter by definition_type.", + "description": "Filter by audience_id.", "style": "deepObject", "explode": true, "schema": { @@ -2768,9 +3304,9 @@ "x-parameter-group": "filters" }, { - "name": "created_at", + "name": "state", "in": "query", - "description": "Filter by created_at.", + "description": "Filter by state.", "style": "deepObject", "explode": true, "schema": { @@ -2817,9 +3353,9 @@ "x-parameter-group": "filters" }, { - "name": "owner_id", + "name": "owner_mail", "in": "query", - "description": "Filter by owner_id.", + "description": "Filter by owner_mail.", "style": "deepObject", "explode": true, "schema": { @@ -2866,9 +3402,9 @@ "x-parameter-group": "filters" }, { - "name": "owner_mail", + "name": "created_at", "in": "query", - "description": "Filter by owner_mail.", + "description": "Filter by created_at.", "style": "deepObject", "explode": true, "schema": { @@ -2933,7 +3469,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/QueryPublicJobDefinitionsEndpoint_PagedResultOfOutput" + "$ref": "#/components/schemas/QuerySharedJobsEndpoint_PagedResultOfOutput" } } } @@ -3089,6 +3625,57 @@ } } }, + "/job/{jobId}/shares/{customerId}": { + "delete": { + "tags": [ + "Job" + ], + "summary": "Removes a customer's viewer and editor access to a job.", + "description": "Idempotent: revoking a share that does not exist succeeds with no effect.", + "parameters": [ + { + "name": "jobId", + "in": "path", + "description": "The id of the job.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "customerId", + "in": "path", + "description": "The id of the customer whose access is revoked.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "204": { + "description": "No Content" + }, + "400": { + "description": "Bad Request", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ValidationProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthenticated" + }, + "403": { + "description": "Forbidden" + } + } + } + }, "/job/definition/{definitionId}/share": { "patch": { "tags": [ @@ -3164,6 +3751,57 @@ } } ], + "responses": { + "204": { + "description": "No Content" + }, + "400": { + "description": "Bad Request", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ValidationProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthenticated" + }, + "403": { + "description": "Forbidden" + } + }, + "deprecated": true + } + }, + "/job/{jobId}/visibility": { + "patch": { + "tags": [ + "Job" + ], + "summary": "Marks or unmarks a job as public so its results are viewable via a link.", + "description": "Public visibility is distinct from per-customer sharing (/job/{jobId}/shares): this\n makes results readable by anyone, whereas sharing grants a specific customer access.", + "parameters": [ + { + "name": "jobId", + "in": "path", + "description": "The id of the job.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "isPublic", + "in": "query", + "description": "Whether to mark or unmark the job as public.", + "schema": { + "type": "boolean", + "default": true + } + } + ], "responses": { "204": { "description": "No Content" @@ -5164,6 +5802,27 @@ }, "description": "The result when a job revision has been created." }, + "CreateJobShareEndpoint_Input": { + "required": [ + "email", + "level" + ], + "type": "object", + "properties": { + "email": { + "type": "string", + "description": "The email of the account to share the job with." + }, + "level": { + "allOf": [ + { + "$ref": "#/components/schemas/JobShareLevel" + } + ], + "description": "The access level to grant." + } + } + }, "CreateOrder": { "required": [ "orderName", @@ -6097,6 +6756,34 @@ }, "description": "The result when a job revision has been retrieved." }, + "GetJobSharesEndpoint_Output": { + "required": [ + "customerId", + "email", + "level" + ], + "type": "object", + "properties": { + "customerId": { + "type": "string", + "description": "The id of the customer the job is shared with.", + "format": "uuid" + }, + "email": { + "type": "string", + "description": "The customer's email, or null when it could not be resolved.", + "nullable": true + }, + "level": { + "allOf": [ + { + "$ref": "#/components/schemas/JobShareLevel" + } + ], + "description": "The access level the customer holds." + } + } + }, "GetOrderByIdEndpoint_Output": { "required": [ "orderName", @@ -9234,6 +9921,12 @@ } } }, + "JobShareLevel": { + "enum": [ + "Viewer", + "Editor" + ] + }, "LabelingState": { "enum": [ "Created", @@ -9996,6 +10689,108 @@ } } }, + "QuerySharedJobsEndpoint_Output": { + "required": [ + "jobId", + "name", + "jobDefinitionId", + "audienceId", + "revisionNumber", + "pipelineId", + "state", + "ownerMail", + "organizationId", + "createdAt" + ], + "type": "object", + "properties": { + "jobId": { + "type": "string", + "description": "The id of the job." + }, + "name": { + "type": "string", + "description": "The name of the job." + }, + "jobDefinitionId": { + "type": "string", + "description": "The id of the job definition." + }, + "audienceId": { + "type": "string", + "description": "The id of the audience associated with the job." + }, + "revisionNumber": { + "type": "integer", + "description": "The revision number of the job.", + "format": "int32" + }, + "pipelineId": { + "type": "string", + "description": "The id of the pipeline executing the job." + }, + "state": { + "allOf": [ + { + "$ref": "#/components/schemas/AudienceJobState" + } + ], + "description": "The current state of the job." + }, + "ownerMail": { + "type": "string", + "description": "The email of the job's owner." + }, + "organizationId": { + "type": "string", + "description": "The id of the organization that owns the job." + }, + "createdAt": { + "type": "string", + "description": "The timestamp when the job was created.", + "format": "date-time" + }, + "progress": { + "type": "number", + "description": "Labeling completion as a ratio in the range 0–1, or null when no progress has\n been reported yet (completion sets it to 1). Sortable via ?sort=progress.", + "format": "double", + "nullable": true + } + } + }, + "QuerySharedJobsEndpoint_PagedResultOfOutput": { + "required": [ + "total", + "page", + "pageSize", + "items" + ], + "type": "object", + "properties": { + "total": { + "type": "integer", + "format": "int64" + }, + "page": { + "type": "integer", + "format": "int32" + }, + "pageSize": { + "type": "integer", + "format": "int32" + }, + "items": { + "type": "array", + "items": { + "$ref": "#/components/schemas/QuerySharedJobsEndpoint_Output" + } + }, + "totalPages": { + "type": "integer", + "format": "int32" + } + } + }, "RankingDatapoint": { "required": [ "datapointId", diff --git a/openapi/schemas/payment.openapi.json b/openapi/schemas/payment.openapi.json index 6d0098430..1246c3bff 100644 --- a/openapi/schemas/payment.openapi.json +++ b/openapi/schemas/payment.openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Rapidata Payment API", "description": "The API for the Rapidata Payment service", - "version": "2026.08.21.0757-4bc4250" + "version": "2026.08.21.1305-2bf435d" }, "servers": [ { diff --git a/openapi/schemas/rapid.openapi.json b/openapi/schemas/rapid.openapi.json index b0aed2295..8f1de9809 100644 --- a/openapi/schemas/rapid.openapi.json +++ b/openapi/schemas/rapid.openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Rapidata Rapid API", "description": "The API for the Rapidata Rapid service", - "version": "2026.08.21.0757-4bc4250" + "version": "2026.08.21.1305-2bf435d" }, "servers": [ { diff --git a/openapi/schemas/rapidata.filtered.openapi.json b/openapi/schemas/rapidata.filtered.openapi.json index 5d7500d84..fd72aa1d3 100644 --- a/openapi/schemas/rapidata.filtered.openapi.json +++ b/openapi/schemas/rapidata.filtered.openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Rapidata Asset API", "description": "The API for the Rapidata Asset service", - "version": "2026.08.21.0757-4bc4250" + "version": "2026.08.21.1305-2bf435d" }, "servers": [ { @@ -25776,6 +25776,127 @@ ] } }, + "/job/{jobId}/shares": { + "post": { + "tags": [ + "Job" + ], + "summary": "Grants a customer viewer or editor access to a job by their email.", + "description": "The email must belong to an existing account; an unknown email returns 400 Bad Request.\n Granting editor access implies viewing. Re-sharing at the same level is idempotent.", + "parameters": [ + { + "name": "jobId", + "in": "path", + "description": "The id of the job to share.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "description": "The email to share with and the access level to grant.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/CreateJobShareEndpoint_Input" + } + } + }, + "required": true + }, + "responses": { + "204": { + "description": "No Content" + }, + "400": { + "description": "Bad Request", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ValidationProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthenticated" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "OpenIdConnect": [ + "openid", + "profile", + "email", + "offline_access" + ] + } + ] + }, + "get": { + "tags": [ + "Job" + ], + "summary": "Returns each customer a job is shared with, together with their access level.", + "description": "The email is resolved for display and may be null if the account can no longer be resolved.", + "parameters": [ + { + "name": "jobId", + "in": "path", + "description": "The id of the job.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/GetJobSharesEndpoint_Output" + } + } + } + } + }, + "400": { + "description": "Bad Request", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ValidationProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthenticated" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "OpenIdConnect": [ + "openid", + "profile", + "email", + "offline_access" + ] + } + ] + } + }, "/job/definition/{definitionId}": { "delete": { "tags": [ @@ -28399,9 +28520,405 @@ "x-parameter-group": "filters" }, { - "name": "created_at", + "name": "created_at", + "in": "query", + "description": "Filter by created_at.", + "style": "deepObject", + "explode": true, + "schema": { + "type": "object", + "properties": { + "eq": { + "type": "string" + }, + "neq": { + "type": "string" + }, + "gt": { + "type": "string" + }, + "gte": { + "type": "string" + }, + "lt": { + "type": "string" + }, + "lte": { + "type": "string" + }, + "contains": { + "type": "string" + }, + "starts_with": { + "type": "string" + }, + "ends_with": { + "type": "string" + }, + "in": { + "type": "array", + "items": { + "type": "string" + } + }, + "not_contains": { + "type": "string" + } + } + }, + "x-parameter-group": "filters" + }, + { + "name": "owner_id", + "in": "query", + "description": "Filter by owner_id.", + "style": "deepObject", + "explode": true, + "schema": { + "type": "object", + "properties": { + "eq": { + "type": "string" + }, + "neq": { + "type": "string" + }, + "gt": { + "type": "string" + }, + "gte": { + "type": "string" + }, + "lt": { + "type": "string" + }, + "lte": { + "type": "string" + }, + "contains": { + "type": "string" + }, + "starts_with": { + "type": "string" + }, + "ends_with": { + "type": "string" + }, + "in": { + "type": "array", + "items": { + "type": "string" + } + }, + "not_contains": { + "type": "string" + } + } + }, + "x-parameter-group": "filters" + }, + { + "name": "owner_mail", + "in": "query", + "description": "Filter by owner_mail.", + "style": "deepObject", + "explode": true, + "schema": { + "type": "object", + "properties": { + "eq": { + "type": "string" + }, + "neq": { + "type": "string" + }, + "gt": { + "type": "string" + }, + "gte": { + "type": "string" + }, + "lt": { + "type": "string" + }, + "lte": { + "type": "string" + }, + "contains": { + "type": "string" + }, + "starts_with": { + "type": "string" + }, + "ends_with": { + "type": "string" + }, + "in": { + "type": "array", + "items": { + "type": "string" + } + }, + "not_contains": { + "type": "string" + } + } + }, + "x-parameter-group": "filters" + }, + { + "name": "logic", + "in": "query", + "description": "How to combine the field filters: \"and\" (default) requires every filter to match, \"or\" requires any of them to match.", + "schema": { + "enum": [ + "and", + "or" + ], + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/QueryPublicJobDefinitionsEndpoint_PagedResultOfOutput" + } + } + } + }, + "400": { + "description": "Bad Request", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ValidationProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthenticated" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "OpenIdConnect": [ + "openid", + "profile", + "email", + "offline_access" + ] + } + ] + } + }, + "/jobs/shared": { + "get": { + "tags": [ + "Job" + ], + "summary": "Queries the jobs another organization has shared with the caller.", + "parameters": [ + { + "name": "page", + "in": "query", + "description": "The 1-based page index.", + "schema": { + "type": "integer" + }, + "x-parameter-group": "page" + }, + { + "name": "page_size", + "in": "query", + "description": "The number of items per page.", + "schema": { + "type": "integer" + }, + "x-parameter-group": "page" + }, + { + "name": "sort", + "in": "query", + "description": "Sort fields. Prefix with - for descending order (e.g. -created_at).", + "schema": { + "type": "array", + "items": { + "enum": [ + "name", + "-name", + "created_at", + "-created_at", + "state", + "-state", + "owner_mail", + "-owner_mail", + "progress", + "-progress" + ], + "type": "string" + } + }, + "x-parameter-group": "sort" + }, + { + "name": "id", + "in": "query", + "description": "Filter by id.", + "style": "deepObject", + "explode": true, + "schema": { + "type": "object", + "properties": { + "eq": { + "type": "string" + }, + "neq": { + "type": "string" + }, + "gt": { + "type": "string" + }, + "gte": { + "type": "string" + }, + "lt": { + "type": "string" + }, + "lte": { + "type": "string" + }, + "contains": { + "type": "string" + }, + "starts_with": { + "type": "string" + }, + "ends_with": { + "type": "string" + }, + "in": { + "type": "array", + "items": { + "type": "string" + } + }, + "not_contains": { + "type": "string" + } + } + }, + "x-parameter-group": "filters" + }, + { + "name": "name", + "in": "query", + "description": "Filter by name.", + "style": "deepObject", + "explode": true, + "schema": { + "type": "object", + "properties": { + "eq": { + "type": "string" + }, + "neq": { + "type": "string" + }, + "gt": { + "type": "string" + }, + "gte": { + "type": "string" + }, + "lt": { + "type": "string" + }, + "lte": { + "type": "string" + }, + "contains": { + "type": "string" + }, + "starts_with": { + "type": "string" + }, + "ends_with": { + "type": "string" + }, + "in": { + "type": "array", + "items": { + "type": "string" + } + }, + "not_contains": { + "type": "string" + } + } + }, + "x-parameter-group": "filters" + }, + { + "name": "job_definition_id", + "in": "query", + "description": "Filter by job_definition_id.", + "style": "deepObject", + "explode": true, + "schema": { + "type": "object", + "properties": { + "eq": { + "type": "string" + }, + "neq": { + "type": "string" + }, + "gt": { + "type": "string" + }, + "gte": { + "type": "string" + }, + "lt": { + "type": "string" + }, + "lte": { + "type": "string" + }, + "contains": { + "type": "string" + }, + "starts_with": { + "type": "string" + }, + "ends_with": { + "type": "string" + }, + "in": { + "type": "array", + "items": { + "type": "string" + } + }, + "not_contains": { + "type": "string" + } + } + }, + "x-parameter-group": "filters" + }, + { + "name": "audience_id", "in": "query", - "description": "Filter by created_at.", + "description": "Filter by audience_id.", "style": "deepObject", "explode": true, "schema": { @@ -28448,9 +28965,9 @@ "x-parameter-group": "filters" }, { - "name": "owner_id", + "name": "state", "in": "query", - "description": "Filter by owner_id.", + "description": "Filter by state.", "style": "deepObject", "explode": true, "schema": { @@ -28545,6 +29062,55 @@ }, "x-parameter-group": "filters" }, + { + "name": "created_at", + "in": "query", + "description": "Filter by created_at.", + "style": "deepObject", + "explode": true, + "schema": { + "type": "object", + "properties": { + "eq": { + "type": "string" + }, + "neq": { + "type": "string" + }, + "gt": { + "type": "string" + }, + "gte": { + "type": "string" + }, + "lt": { + "type": "string" + }, + "lte": { + "type": "string" + }, + "contains": { + "type": "string" + }, + "starts_with": { + "type": "string" + }, + "ends_with": { + "type": "string" + }, + "in": { + "type": "array", + "items": { + "type": "string" + } + }, + "not_contains": { + "type": "string" + } + } + }, + "x-parameter-group": "filters" + }, { "name": "logic", "in": "query", @@ -28564,7 +29130,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/QueryPublicJobDefinitionsEndpoint_PagedResultOfOutput" + "$ref": "#/components/schemas/QuerySharedJobsEndpoint_PagedResultOfOutput" } } } @@ -28760,6 +29326,67 @@ ] } }, + "/job/{jobId}/shares/{customerId}": { + "delete": { + "tags": [ + "Job" + ], + "summary": "Removes a customer's viewer and editor access to a job.", + "description": "Idempotent: revoking a share that does not exist succeeds with no effect.", + "parameters": [ + { + "name": "jobId", + "in": "path", + "description": "The id of the job.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "customerId", + "in": "path", + "description": "The id of the customer whose access is revoked.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "204": { + "description": "No Content" + }, + "400": { + "description": "Bad Request", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ValidationProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthenticated" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "OpenIdConnect": [ + "openid", + "profile", + "email", + "offline_access" + ] + } + ] + } + }, "/job/definition/{definitionId}/share": { "patch": { "tags": [ @@ -28819,17 +29446,19 @@ ] } }, - "/job/{jobId}/share": { + "/job/{jobId}/share": {}, + "/job/{jobId}/visibility": { "patch": { "tags": [ "Job" ], - "summary": "Marks or unmarks a job as public so its results can be shared with other users.", + "summary": "Marks or unmarks a job as public so its results are viewable via a link.", + "description": "Public visibility is distinct from per-customer sharing (/job/{jobId}/shares): this\n makes results readable by anyone, whereas sharing grants a specific customer access.", "parameters": [ { "name": "jobId", "in": "path", - "description": "The ID of the job.", + "description": "The id of the job.", "required": true, "schema": { "type": "string" @@ -54353,6 +54982,27 @@ }, "description": "The result when a job revision has been created." }, + "CreateJobShareEndpoint_Input": { + "required": [ + "email", + "level" + ], + "type": "object", + "properties": { + "email": { + "type": "string", + "description": "The email of the account to share the job with." + }, + "level": { + "allOf": [ + { + "$ref": "#/components/schemas/JobShareLevel" + } + ], + "description": "The access level to grant." + } + } + }, "CreateOrder": { "required": [ "orderName", @@ -55223,6 +55873,34 @@ }, "description": "The result when a job revision has been retrieved." }, + "GetJobSharesEndpoint_Output": { + "required": [ + "customerId", + "email", + "level" + ], + "type": "object", + "properties": { + "customerId": { + "type": "string", + "description": "The id of the customer the job is shared with.", + "format": "uuid" + }, + "email": { + "type": "string", + "description": "The customer's email, or null when it could not be resolved.", + "nullable": true + }, + "level": { + "allOf": [ + { + "$ref": "#/components/schemas/JobShareLevel" + } + ], + "description": "The access level the customer holds." + } + } + }, "GetOrderByIdEndpoint_Output": { "required": [ "orderName", @@ -57823,6 +58501,12 @@ } } }, + "JobShareLevel": { + "enum": [ + "Viewer", + "Editor" + ] + }, "LabelingState": { "enum": [ "Created", @@ -58544,6 +59228,108 @@ } } }, + "QuerySharedJobsEndpoint_Output": { + "required": [ + "jobId", + "name", + "jobDefinitionId", + "audienceId", + "revisionNumber", + "pipelineId", + "state", + "ownerMail", + "organizationId", + "createdAt" + ], + "type": "object", + "properties": { + "jobId": { + "type": "string", + "description": "The id of the job." + }, + "name": { + "type": "string", + "description": "The name of the job." + }, + "jobDefinitionId": { + "type": "string", + "description": "The id of the job definition." + }, + "audienceId": { + "type": "string", + "description": "The id of the audience associated with the job." + }, + "revisionNumber": { + "type": "integer", + "description": "The revision number of the job.", + "format": "int32" + }, + "pipelineId": { + "type": "string", + "description": "The id of the pipeline executing the job." + }, + "state": { + "allOf": [ + { + "$ref": "#/components/schemas/AudienceJobState" + } + ], + "description": "The current state of the job." + }, + "ownerMail": { + "type": "string", + "description": "The email of the job's owner." + }, + "organizationId": { + "type": "string", + "description": "The id of the organization that owns the job." + }, + "createdAt": { + "type": "string", + "description": "The timestamp when the job was created.", + "format": "date-time" + }, + "progress": { + "type": "number", + "description": "Labeling completion as a ratio in the range 0–1, or null when no progress has\n been reported yet (completion sets it to 1). Sortable via ?sort=progress.", + "format": "double", + "nullable": true + } + } + }, + "QuerySharedJobsEndpoint_PagedResultOfOutput": { + "required": [ + "total", + "page", + "pageSize", + "items" + ], + "type": "object", + "properties": { + "total": { + "type": "integer", + "format": "int64" + }, + "page": { + "type": "integer", + "format": "int32" + }, + "pageSize": { + "type": "integer", + "format": "int32" + }, + "items": { + "type": "array", + "items": { + "$ref": "#/components/schemas/QuerySharedJobsEndpoint_Output" + } + }, + "totalPages": { + "type": "integer", + "format": "int32" + } + } + }, "RankingDatapoint": { "required": [ "datapointId", diff --git a/openapi/schemas/rapidata.openapi.json b/openapi/schemas/rapidata.openapi.json index 26fc0cd3d..0e393047d 100644 --- a/openapi/schemas/rapidata.openapi.json +++ b/openapi/schemas/rapidata.openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Rapidata Asset API", "description": "The API for the Rapidata Asset service", - "version": "2026.08.21.0757-4bc4250" + "version": "2026.08.21.1305-2bf435d" }, "servers": [ { @@ -27484,23 +27484,35 @@ ] } }, - "/job/definition/{definitionId}": { - "delete": { + "/job/{jobId}/shares": { + "post": { "tags": [ "Job" ], - "summary": "Deletes a job definition and all its revisions.", + "summary": "Grants a customer viewer or editor access to a job by their email.", + "description": "The email must belong to an existing account; an unknown email returns 400 Bad Request.\n Granting editor access implies viewing. Re-sharing at the same level is idempotent.", "parameters": [ { - "name": "definitionId", + "name": "jobId", "in": "path", - "description": "The id of the job definition to delete.", + "description": "The id of the job to share.", "required": true, "schema": { "type": "string" } } ], + "requestBody": { + "description": "The email to share with and the access level to grant.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/CreateJobShareEndpoint_Input" + } + } + }, + "required": true + }, "responses": { "204": { "description": "No Content" @@ -27537,12 +27549,13 @@ "tags": [ "Job" ], - "summary": "Gets a job definition by its id.", + "summary": "Returns each customer a job is shared with, together with their access level.", + "description": "The email is resolved for display and may be null if the account can no longer be resolved.", "parameters": [ { - "name": "definitionId", + "name": "jobId", "in": "path", - "description": "The id of the job definition to retrieve.", + "description": "The id of the job.", "required": true, "schema": { "type": "string" @@ -27555,7 +27568,10 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/GetJobDefinitionByIdEndpoint_Output" + "type": "array", + "items": { + "$ref": "#/components/schemas/GetJobSharesEndpoint_Output" + } } } } @@ -27587,78 +27603,19 @@ ] } ] - }, - "patch": { - "tags": [ - "Job" - ], - "summary": "Updates a job definition.", - "parameters": [ - { - "name": "definitionId", - "in": "path", - "description": "The id of the job definition to update.", - "required": true, - "schema": { - "type": "string" - } - } - ], - "requestBody": { - "description": "The fields to update.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/UpdateJobDefinitionEndpoint_Input" - } - } - }, - "required": true - }, - "responses": { - "204": { - "description": "No Content" - }, - "400": { - "description": "Bad Request", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ValidationProblemDetails" - } - } - } - }, - "401": { - "description": "Unauthenticated" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "OpenIdConnect": [ - "openid", - "profile", - "email", - "offline_access" - ] - } - ] } }, - "/job/{jobId}": { + "/job/definition/{definitionId}": { "delete": { "tags": [ "Job" ], - "summary": "Deletes a job.", + "summary": "Deletes a job definition and all its revisions.", "parameters": [ { - "name": "jobId", + "name": "definitionId", "in": "path", - "description": "The id of the job to delete.", + "description": "The id of the job definition to delete.", "required": true, "schema": { "type": "string" @@ -27701,12 +27658,12 @@ "tags": [ "Job" ], - "summary": "Gets a job by its id.", + "summary": "Gets a job definition by its id.", "parameters": [ { - "name": "jobId", + "name": "definitionId", "in": "path", - "description": "The id of the job to retrieve.", + "description": "The id of the job definition to retrieve.", "required": true, "schema": { "type": "string" @@ -27719,7 +27676,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/GetJobByIdEndpoint_Output" + "$ref": "#/components/schemas/GetJobDefinitionByIdEndpoint_Output" } } } @@ -27756,12 +27713,12 @@ "tags": [ "Job" ], - "summary": "Updates a job.", + "summary": "Updates a job definition.", "parameters": [ { - "name": "jobId", + "name": "definitionId", "in": "path", - "description": "The id of the job to update.", + "description": "The id of the job definition to update.", "required": true, "schema": { "type": "string" @@ -27773,7 +27730,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/UpdateJobEndpoint_Input" + "$ref": "#/components/schemas/UpdateJobDefinitionEndpoint_Input" } } }, @@ -27812,17 +27769,17 @@ ] } }, - "/job/{jobId}/download-results": { - "get": { + "/job/{jobId}": { + "delete": { "tags": [ "Job" ], - "summary": "Downloads the results of a job as a file attachment.", + "summary": "Deletes a job.", "parameters": [ { "name": "jobId", "in": "path", - "description": "The id of the job to download results for.", + "description": "The id of the job to delete.", "required": true, "schema": { "type": "string" @@ -27830,13 +27787,15 @@ } ], "responses": { - "200": { - "description": "OK", + "204": { + "description": "No Content" + }, + "400": { + "description": "Bad Request", "content": { - "application/octet-stream": { + "application/json": { "schema": { - "type": "string", - "format": "binary" + "$ref": "#/components/schemas/ValidationProblemDetails" } } } @@ -27858,33 +27817,21 @@ ] } ] - } - }, - "/job/{jobId}/ab-summary": { + }, "get": { "tags": [ "Job" ], - "summary": "Gets the A/B winner summary for a job's comparison labelling.", - "description": "Scoped to the job's labelling server-side; returns 404 when the job has no labelling task.", + "summary": "Gets a job by its id.", "parameters": [ { "name": "jobId", "in": "path", - "description": "The id of the job to summarise.", + "description": "The id of the job to retrieve.", "required": true, "schema": { "type": "string" } - }, - { - "name": "useUserScore", - "in": "query", - "description": "Whether to weight wins by the annotator's user score.", - "schema": { - "type": "boolean", - "default": false - } } ], "responses": { @@ -27893,7 +27840,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/GetJobAbSummaryEndpoint_Output" + "$ref": "#/components/schemas/GetJobByIdEndpoint_Output" } } } @@ -27925,37 +27872,38 @@ ] } ] - } - }, - "/job/{jobId}/cost-estimate": { - "get": { + }, + "patch": { "tags": [ "Job" ], - "summary": "Estimates the cost of running a job to completion.", - "description": "The estimate multiplies a representative per-response cost sampled from the job's rapids by\n the total number of responses its referee requires. Returns 409 while the estimate is not\n yet available because the job has no rapids, or when the referee is unbounded.", + "summary": "Updates a job.", "parameters": [ { "name": "jobId", "in": "path", - "description": "The id of the job to estimate.", + "description": "The id of the job to update.", "required": true, "schema": { "type": "string" } } ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GetJobCostEstimateEndpoint_Output" - } + "requestBody": { + "description": "The fields to update.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/UpdateJobEndpoint_Input" } } }, + "required": true + }, + "responses": { + "204": { + "description": "No Content" + }, "400": { "description": "Bad Request", "content": { @@ -27985,77 +27933,31 @@ ] } }, - "/job/{jobId}/datapoints": { + "/job/{jobId}/download-results": { "get": { "tags": [ "Job" ], - "summary": "Gets the datapoints of the dataset backing a job.", - "description": "Scoped server-side to the job's own dataset; returns 404 when the job has no dataset.", + "summary": "Downloads the results of a job as a file attachment.", "parameters": [ { "name": "jobId", "in": "path", - "description": "The id of the job whose datapoints to list.", + "description": "The id of the job to download results for.", "required": true, "schema": { "type": "string" } - }, - { - "name": "page", - "in": "query", - "description": "The 1-based page index.", - "schema": { - "type": "integer" - }, - "x-parameter-group": "page" - }, - { - "name": "page_size", - "in": "query", - "description": "The number of items per page.", - "schema": { - "type": "integer" - }, - "x-parameter-group": "page" - }, - { - "name": "sort", - "in": "query", - "description": "Sort fields. Prefix with - for descending order (e.g. -created_at).", - "schema": { - "type": "array", - "items": { - "enum": [ - "id", - "-id", - "created_at", - "-created_at" - ], - "type": "string" - } - }, - "x-parameter-group": "sort" } ], "responses": { "200": { "description": "OK", "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GetJobDatapointsEndpoint_PagedResultOfOutput" - } - } - } - }, - "400": { - "description": "Bad Request", - "content": { - "application/json": { + "application/octet-stream": { "schema": { - "$ref": "#/components/schemas/ValidationProblemDetails" + "type": "string", + "format": "binary" } } } @@ -28079,22 +27981,31 @@ ] } }, - "/job/definition/{definitionId}/cost-estimate": { + "/job/{jobId}/ab-summary": { "get": { "tags": [ "Job" ], - "summary": "Estimates the cost of running a job definition's latest revision to completion.", - "description": "The estimate multiplies a representative per-response cost sampled from the definition's\n rapids by the total number of responses its referee requires. Returns 409 while the estimate\n is not yet available because no rapids exist, or when the referee is unbounded.", + "summary": "Gets the A/B winner summary for a job's comparison labelling.", + "description": "Scoped to the job's labelling server-side; returns 404 when the job has no labelling task.", "parameters": [ { - "name": "definitionId", + "name": "jobId", "in": "path", - "description": "The id of the job definition to estimate.", + "description": "The id of the job to summarise.", "required": true, "schema": { "type": "string" } + }, + { + "name": "useUserScore", + "in": "query", + "description": "Whether to weight wins by the annotator's user score.", + "schema": { + "type": "boolean", + "default": false + } } ], "responses": { @@ -28103,7 +28014,217 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/GetJobDefinitionCostEstimateEndpoint_Output" + "$ref": "#/components/schemas/GetJobAbSummaryEndpoint_Output" + } + } + } + }, + "400": { + "description": "Bad Request", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ValidationProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthenticated" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "OpenIdConnect": [ + "openid", + "profile", + "email", + "offline_access" + ] + } + ] + } + }, + "/job/{jobId}/cost-estimate": { + "get": { + "tags": [ + "Job" + ], + "summary": "Estimates the cost of running a job to completion.", + "description": "The estimate multiplies a representative per-response cost sampled from the job's rapids by\n the total number of responses its referee requires. Returns 409 while the estimate is not\n yet available because the job has no rapids, or when the referee is unbounded.", + "parameters": [ + { + "name": "jobId", + "in": "path", + "description": "The id of the job to estimate.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetJobCostEstimateEndpoint_Output" + } + } + } + }, + "400": { + "description": "Bad Request", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ValidationProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthenticated" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "OpenIdConnect": [ + "openid", + "profile", + "email", + "offline_access" + ] + } + ] + } + }, + "/job/{jobId}/datapoints": { + "get": { + "tags": [ + "Job" + ], + "summary": "Gets the datapoints of the dataset backing a job.", + "description": "Scoped server-side to the job's own dataset; returns 404 when the job has no dataset.", + "parameters": [ + { + "name": "jobId", + "in": "path", + "description": "The id of the job whose datapoints to list.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "page", + "in": "query", + "description": "The 1-based page index.", + "schema": { + "type": "integer" + }, + "x-parameter-group": "page" + }, + { + "name": "page_size", + "in": "query", + "description": "The number of items per page.", + "schema": { + "type": "integer" + }, + "x-parameter-group": "page" + }, + { + "name": "sort", + "in": "query", + "description": "Sort fields. Prefix with - for descending order (e.g. -created_at).", + "schema": { + "type": "array", + "items": { + "enum": [ + "id", + "-id", + "created_at", + "-created_at" + ], + "type": "string" + } + }, + "x-parameter-group": "sort" + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetJobDatapointsEndpoint_PagedResultOfOutput" + } + } + } + }, + "400": { + "description": "Bad Request", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ValidationProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthenticated" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "OpenIdConnect": [ + "openid", + "profile", + "email", + "offline_access" + ] + } + ] + } + }, + "/job/definition/{definitionId}/cost-estimate": { + "get": { + "tags": [ + "Job" + ], + "summary": "Estimates the cost of running a job definition's latest revision to completion.", + "description": "The estimate multiplies a representative per-response cost sampled from the definition's\n rapids by the total number of responses its referee requires. Returns 409 while the estimate\n is not yet available because no rapids exist, or when the referee is unbounded.", + "parameters": [ + { + "name": "definitionId", + "in": "path", + "description": "The id of the job definition to estimate.", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetJobDefinitionCostEstimateEndpoint_Output" } } } @@ -29321,9 +29442,356 @@ "x-parameter-group": "filters" }, { - "name": "created_at", + "name": "created_at", + "in": "query", + "description": "Filter by created_at.", + "style": "deepObject", + "explode": true, + "schema": { + "type": "object", + "properties": { + "eq": { + "type": "string" + }, + "neq": { + "type": "string" + }, + "gt": { + "type": "string" + }, + "gte": { + "type": "string" + }, + "lt": { + "type": "string" + }, + "lte": { + "type": "string" + }, + "contains": { + "type": "string" + }, + "starts_with": { + "type": "string" + }, + "ends_with": { + "type": "string" + }, + "in": { + "type": "array", + "items": { + "type": "string" + } + }, + "not_contains": { + "type": "string" + } + } + }, + "x-parameter-group": "filters" + }, + { + "name": "state", + "in": "query", + "description": "Filter by state.", + "style": "deepObject", + "explode": true, + "schema": { + "type": "object", + "properties": { + "eq": { + "type": "string" + }, + "neq": { + "type": "string" + }, + "gt": { + "type": "string" + }, + "gte": { + "type": "string" + }, + "lt": { + "type": "string" + }, + "lte": { + "type": "string" + }, + "contains": { + "type": "string" + }, + "starts_with": { + "type": "string" + }, + "ends_with": { + "type": "string" + }, + "in": { + "type": "array", + "items": { + "type": "string" + } + }, + "not_contains": { + "type": "string" + } + } + }, + "x-parameter-group": "filters" + }, + { + "name": "logic", + "in": "query", + "description": "How to combine the field filters: \"and\" (default) requires every filter to match, \"or\" requires any of them to match.", + "schema": { + "enum": [ + "and", + "or" + ], + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/QueryJobRevisionsEndpoint_PagedResultOfOutput" + } + } + } + }, + "400": { + "description": "Bad Request", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ValidationProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthenticated" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "OpenIdConnect": [ + "openid", + "profile", + "email", + "offline_access" + ] + } + ] + } + }, + "/jobs": { + "get": { + "tags": [ + "Job" + ], + "summary": "Queries jobs visible to the caller.", + "parameters": [ + { + "name": "page", + "in": "query", + "description": "The 1-based page index.", + "schema": { + "type": "integer" + }, + "x-parameter-group": "page" + }, + { + "name": "page_size", + "in": "query", + "description": "The number of items per page.", + "schema": { + "type": "integer" + }, + "x-parameter-group": "page" + }, + { + "name": "sort", + "in": "query", + "description": "Sort fields. Prefix with - for descending order (e.g. -created_at).", + "schema": { + "type": "array", + "items": { + "enum": [ + "name", + "-name", + "created_at", + "-created_at", + "state", + "-state", + "owner_mail", + "-owner_mail", + "progress", + "-progress" + ], + "type": "string" + } + }, + "x-parameter-group": "sort" + }, + { + "name": "id", + "in": "query", + "description": "Filter by id.", + "style": "deepObject", + "explode": true, + "schema": { + "type": "object", + "properties": { + "eq": { + "type": "string" + }, + "neq": { + "type": "string" + }, + "gt": { + "type": "string" + }, + "gte": { + "type": "string" + }, + "lt": { + "type": "string" + }, + "lte": { + "type": "string" + }, + "contains": { + "type": "string" + }, + "starts_with": { + "type": "string" + }, + "ends_with": { + "type": "string" + }, + "in": { + "type": "array", + "items": { + "type": "string" + } + }, + "not_contains": { + "type": "string" + } + } + }, + "x-parameter-group": "filters" + }, + { + "name": "name", + "in": "query", + "description": "Filter by name.", + "style": "deepObject", + "explode": true, + "schema": { + "type": "object", + "properties": { + "eq": { + "type": "string" + }, + "neq": { + "type": "string" + }, + "gt": { + "type": "string" + }, + "gte": { + "type": "string" + }, + "lt": { + "type": "string" + }, + "lte": { + "type": "string" + }, + "contains": { + "type": "string" + }, + "starts_with": { + "type": "string" + }, + "ends_with": { + "type": "string" + }, + "in": { + "type": "array", + "items": { + "type": "string" + } + }, + "not_contains": { + "type": "string" + } + } + }, + "x-parameter-group": "filters" + }, + { + "name": "job_definition_id", + "in": "query", + "description": "Filter by job_definition_id.", + "style": "deepObject", + "explode": true, + "schema": { + "type": "object", + "properties": { + "eq": { + "type": "string" + }, + "neq": { + "type": "string" + }, + "gt": { + "type": "string" + }, + "gte": { + "type": "string" + }, + "lt": { + "type": "string" + }, + "lte": { + "type": "string" + }, + "contains": { + "type": "string" + }, + "starts_with": { + "type": "string" + }, + "ends_with": { + "type": "string" + }, + "in": { + "type": "array", + "items": { + "type": "string" + } + }, + "not_contains": { + "type": "string" + } + } + }, + "x-parameter-group": "filters" + }, + { + "name": "audience_id", "in": "query", - "description": "Filter by created_at.", + "description": "Filter by audience_id.", "style": "deepObject", "explode": true, "schema": { @@ -29418,6 +29886,104 @@ }, "x-parameter-group": "filters" }, + { + "name": "owner_mail", + "in": "query", + "description": "Filter by owner_mail.", + "style": "deepObject", + "explode": true, + "schema": { + "type": "object", + "properties": { + "eq": { + "type": "string" + }, + "neq": { + "type": "string" + }, + "gt": { + "type": "string" + }, + "gte": { + "type": "string" + }, + "lt": { + "type": "string" + }, + "lte": { + "type": "string" + }, + "contains": { + "type": "string" + }, + "starts_with": { + "type": "string" + }, + "ends_with": { + "type": "string" + }, + "in": { + "type": "array", + "items": { + "type": "string" + } + }, + "not_contains": { + "type": "string" + } + } + }, + "x-parameter-group": "filters" + }, + { + "name": "created_at", + "in": "query", + "description": "Filter by created_at.", + "style": "deepObject", + "explode": true, + "schema": { + "type": "object", + "properties": { + "eq": { + "type": "string" + }, + "neq": { + "type": "string" + }, + "gt": { + "type": "string" + }, + "gte": { + "type": "string" + }, + "lt": { + "type": "string" + }, + "lte": { + "type": "string" + }, + "contains": { + "type": "string" + }, + "starts_with": { + "type": "string" + }, + "ends_with": { + "type": "string" + }, + "in": { + "type": "array", + "items": { + "type": "string" + } + }, + "not_contains": { + "type": "string" + } + } + }, + "x-parameter-group": "filters" + }, { "name": "logic", "in": "query", @@ -29437,7 +30003,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/QueryJobRevisionsEndpoint_PagedResultOfOutput" + "$ref": "#/components/schemas/QueryJobsEndpoint_PagedResultOfOutput" } } } @@ -29471,12 +30037,12 @@ ] } }, - "/jobs": { + "/job/definitions/public": { "get": { "tags": [ "Job" ], - "summary": "Queries jobs visible to the caller.", + "summary": "Queries job definitions that have been shared publicly, regardless of owner, so they can be\n reused as templates.", "parameters": [ { "name": "page", @@ -29507,13 +30073,7 @@ "name", "-name", "created_at", - "-created_at", - "state", - "-state", - "owner_mail", - "-owner_mail", - "progress", - "-progress" + "-created_at" ], "type": "string" } @@ -29521,9 +30081,9 @@ "x-parameter-group": "sort" }, { - "name": "id", + "name": "definition_id", "in": "query", - "description": "Filter by id.", + "description": "Filter by definition_id.", "style": "deepObject", "explode": true, "schema": { @@ -29619,9 +30179,9 @@ "x-parameter-group": "filters" }, { - "name": "job_definition_id", + "name": "definition_type", "in": "query", - "description": "Filter by job_definition_id.", + "description": "Filter by definition_type.", "style": "deepObject", "explode": true, "schema": { @@ -29668,9 +30228,9 @@ "x-parameter-group": "filters" }, { - "name": "audience_id", + "name": "created_at", "in": "query", - "description": "Filter by audience_id.", + "description": "Filter by created_at.", "style": "deepObject", "explode": true, "schema": { @@ -29717,9 +30277,9 @@ "x-parameter-group": "filters" }, { - "name": "state", + "name": "owner_id", "in": "query", - "description": "Filter by state.", + "description": "Filter by owner_id.", "style": "deepObject", "explode": true, "schema": { @@ -29814,55 +30374,6 @@ }, "x-parameter-group": "filters" }, - { - "name": "created_at", - "in": "query", - "description": "Filter by created_at.", - "style": "deepObject", - "explode": true, - "schema": { - "type": "object", - "properties": { - "eq": { - "type": "string" - }, - "neq": { - "type": "string" - }, - "gt": { - "type": "string" - }, - "gte": { - "type": "string" - }, - "lt": { - "type": "string" - }, - "lte": { - "type": "string" - }, - "contains": { - "type": "string" - }, - "starts_with": { - "type": "string" - }, - "ends_with": { - "type": "string" - }, - "in": { - "type": "array", - "items": { - "type": "string" - } - }, - "not_contains": { - "type": "string" - } - } - }, - "x-parameter-group": "filters" - }, { "name": "logic", "in": "query", @@ -29882,7 +30393,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/QueryJobsEndpoint_PagedResultOfOutput" + "$ref": "#/components/schemas/QueryPublicJobDefinitionsEndpoint_PagedResultOfOutput" } } } @@ -29916,12 +30427,12 @@ ] } }, - "/job/definitions/public": { + "/jobs/shared": { "get": { "tags": [ "Job" ], - "summary": "Queries job definitions that have been shared publicly, regardless of owner, so they can be\n reused as templates.", + "summary": "Queries the jobs another organization has shared with the caller.", "parameters": [ { "name": "page", @@ -29952,7 +30463,13 @@ "name", "-name", "created_at", - "-created_at" + "-created_at", + "state", + "-state", + "owner_mail", + "-owner_mail", + "progress", + "-progress" ], "type": "string" } @@ -29960,9 +30477,9 @@ "x-parameter-group": "sort" }, { - "name": "definition_id", + "name": "id", "in": "query", - "description": "Filter by definition_id.", + "description": "Filter by id.", "style": "deepObject", "explode": true, "schema": { @@ -30058,9 +30575,9 @@ "x-parameter-group": "filters" }, { - "name": "definition_type", + "name": "job_definition_id", "in": "query", - "description": "Filter by definition_type.", + "description": "Filter by job_definition_id.", "style": "deepObject", "explode": true, "schema": { @@ -30107,9 +30624,9 @@ "x-parameter-group": "filters" }, { - "name": "created_at", + "name": "audience_id", "in": "query", - "description": "Filter by created_at.", + "description": "Filter by audience_id.", "style": "deepObject", "explode": true, "schema": { @@ -30156,9 +30673,9 @@ "x-parameter-group": "filters" }, { - "name": "owner_id", + "name": "state", "in": "query", - "description": "Filter by owner_id.", + "description": "Filter by state.", "style": "deepObject", "explode": true, "schema": { @@ -30253,6 +30770,55 @@ }, "x-parameter-group": "filters" }, + { + "name": "created_at", + "in": "query", + "description": "Filter by created_at.", + "style": "deepObject", + "explode": true, + "schema": { + "type": "object", + "properties": { + "eq": { + "type": "string" + }, + "neq": { + "type": "string" + }, + "gt": { + "type": "string" + }, + "gte": { + "type": "string" + }, + "lt": { + "type": "string" + }, + "lte": { + "type": "string" + }, + "contains": { + "type": "string" + }, + "starts_with": { + "type": "string" + }, + "ends_with": { + "type": "string" + }, + "in": { + "type": "array", + "items": { + "type": "string" + } + }, + "not_contains": { + "type": "string" + } + } + }, + "x-parameter-group": "filters" + }, { "name": "logic", "in": "query", @@ -30272,7 +30838,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/QueryPublicJobDefinitionsEndpoint_PagedResultOfOutput" + "$ref": "#/components/schemas/QuerySharedJobsEndpoint_PagedResultOfOutput" } } } @@ -30468,6 +31034,67 @@ ] } }, + "/job/{jobId}/shares/{customerId}": { + "delete": { + "tags": [ + "Job" + ], + "summary": "Removes a customer's viewer and editor access to a job.", + "description": "Idempotent: revoking a share that does not exist succeeds with no effect.", + "parameters": [ + { + "name": "jobId", + "in": "path", + "description": "The id of the job.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "customerId", + "in": "path", + "description": "The id of the customer whose access is revoked.", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "204": { + "description": "No Content" + }, + "400": { + "description": "Bad Request", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ValidationProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthenticated" + }, + "403": { + "description": "Forbidden" + } + }, + "security": [ + { + "OpenIdConnect": [ + "openid", + "profile", + "email", + "offline_access" + ] + } + ] + } + }, "/job/definition/{definitionId}/share": { "patch": { "tags": [ @@ -30574,6 +31201,67 @@ "description": "Forbidden" } }, + "deprecated": true, + "security": [ + { + "OpenIdConnect": [ + "openid", + "profile", + "email", + "offline_access" + ] + } + ] + } + }, + "/job/{jobId}/visibility": { + "patch": { + "tags": [ + "Job" + ], + "summary": "Marks or unmarks a job as public so its results are viewable via a link.", + "description": "Public visibility is distinct from per-customer sharing (/job/{jobId}/shares): this\n makes results readable by anyone, whereas sharing grants a specific customer access.", + "parameters": [ + { + "name": "jobId", + "in": "path", + "description": "The id of the job.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "isPublic", + "in": "query", + "description": "Whether to mark or unmark the job as public.", + "schema": { + "type": "boolean", + "default": true + } + } + ], + "responses": { + "204": { + "description": "No Content" + }, + "400": { + "description": "Bad Request", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ValidationProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthenticated" + }, + "403": { + "description": "Forbidden" + } + }, "security": [ { "OpenIdConnect": [ @@ -56372,6 +57060,27 @@ }, "description": "The result when a job revision has been created." }, + "CreateJobShareEndpoint_Input": { + "required": [ + "email", + "level" + ], + "type": "object", + "properties": { + "email": { + "type": "string", + "description": "The email of the account to share the job with." + }, + "level": { + "allOf": [ + { + "$ref": "#/components/schemas/JobShareLevel" + } + ], + "description": "The access level to grant." + } + } + }, "CreateOrder": { "required": [ "orderName", @@ -57275,6 +57984,34 @@ }, "description": "The result when a job revision has been retrieved." }, + "GetJobSharesEndpoint_Output": { + "required": [ + "customerId", + "email", + "level" + ], + "type": "object", + "properties": { + "customerId": { + "type": "string", + "description": "The id of the customer the job is shared with.", + "format": "uuid" + }, + "email": { + "type": "string", + "description": "The customer's email, or null when it could not be resolved.", + "nullable": true + }, + "level": { + "allOf": [ + { + "$ref": "#/components/schemas/JobShareLevel" + } + ], + "description": "The access level the customer holds." + } + } + }, "GetOrderByIdEndpoint_Output": { "required": [ "orderName", @@ -59883,6 +60620,12 @@ } } }, + "JobShareLevel": { + "enum": [ + "Viewer", + "Editor" + ] + }, "LabelingState": { "enum": [ "Created", @@ -60619,6 +61362,108 @@ } } }, + "QuerySharedJobsEndpoint_Output": { + "required": [ + "jobId", + "name", + "jobDefinitionId", + "audienceId", + "revisionNumber", + "pipelineId", + "state", + "ownerMail", + "organizationId", + "createdAt" + ], + "type": "object", + "properties": { + "jobId": { + "type": "string", + "description": "The id of the job." + }, + "name": { + "type": "string", + "description": "The name of the job." + }, + "jobDefinitionId": { + "type": "string", + "description": "The id of the job definition." + }, + "audienceId": { + "type": "string", + "description": "The id of the audience associated with the job." + }, + "revisionNumber": { + "type": "integer", + "description": "The revision number of the job.", + "format": "int32" + }, + "pipelineId": { + "type": "string", + "description": "The id of the pipeline executing the job." + }, + "state": { + "allOf": [ + { + "$ref": "#/components/schemas/AudienceJobState" + } + ], + "description": "The current state of the job." + }, + "ownerMail": { + "type": "string", + "description": "The email of the job's owner." + }, + "organizationId": { + "type": "string", + "description": "The id of the organization that owns the job." + }, + "createdAt": { + "type": "string", + "description": "The timestamp when the job was created.", + "format": "date-time" + }, + "progress": { + "type": "number", + "description": "Labeling completion as a ratio in the range 0–1, or null when no progress has\n been reported yet (completion sets it to 1). Sortable via ?sort=progress.", + "format": "double", + "nullable": true + } + } + }, + "QuerySharedJobsEndpoint_PagedResultOfOutput": { + "required": [ + "total", + "page", + "pageSize", + "items" + ], + "type": "object", + "properties": { + "total": { + "type": "integer", + "format": "int64" + }, + "page": { + "type": "integer", + "format": "int32" + }, + "pageSize": { + "type": "integer", + "format": "int32" + }, + "items": { + "type": "array", + "items": { + "$ref": "#/components/schemas/QuerySharedJobsEndpoint_Output" + } + }, + "totalPages": { + "type": "integer", + "format": "int32" + } + } + }, "RankingDatapoint": { "required": [ "datapointId", diff --git a/openapi/schemas/signal.openapi.json b/openapi/schemas/signal.openapi.json index 0c0e0d14f..aaceef540 100644 --- a/openapi/schemas/signal.openapi.json +++ b/openapi/schemas/signal.openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Rapidata Signal API", "description": "The API for the Rapidata Signal service", - "version": "2026.08.21.0757-4bc4250" + "version": "2026.08.21.1305-2bf435d" }, "servers": [ { diff --git a/openapi/schemas/translation.openapi.json b/openapi/schemas/translation.openapi.json index 23b9f838d..11865c8fc 100644 --- a/openapi/schemas/translation.openapi.json +++ b/openapi/schemas/translation.openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Rapidata Translation API", "description": "The API for the Rapidata Translation service", - "version": "2026.08.21.0757-4bc4250" + "version": "2026.08.21.1305-2bf435d" }, "servers": [ { diff --git a/openapi/schemas/validation.openapi.json b/openapi/schemas/validation.openapi.json index e0734051c..a27a83215 100644 --- a/openapi/schemas/validation.openapi.json +++ b/openapi/schemas/validation.openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Rapidata Validation API", "description": "The API for the Rapidata Validation service", - "version": "2026.08.21.0757-4bc4250" + "version": "2026.08.21.1305-2bf435d" }, "servers": [ { diff --git a/src/rapidata/api_client/__init__.py b/src/rapidata/api_client/__init__.py index 823773570..de0709ce6 100644 --- a/src/rapidata/api_client/__init__.py +++ b/src/rapidata/api_client/__init__.py @@ -7,7 +7,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/api/asset_api.py b/src/rapidata/api_client/api/asset_api.py index cd5a2d64e..ec720b1d4 100644 --- a/src/rapidata/api_client/api/asset_api.py +++ b/src/rapidata/api_client/api/asset_api.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/api/audience_api.py b/src/rapidata/api_client/api/audience_api.py index 5f82cc2f1..6e1e6c70d 100644 --- a/src/rapidata/api_client/api/audience_api.py +++ b/src/rapidata/api_client/api/audience_api.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/api/batch_upload_api.py b/src/rapidata/api_client/api/batch_upload_api.py index 9cf9c8044..77ea98c37 100644 --- a/src/rapidata/api_client/api/batch_upload_api.py +++ b/src/rapidata/api_client/api/batch_upload_api.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/api/benchmark_api.py b/src/rapidata/api_client/api/benchmark_api.py index 85938ea7f..0d5b0ed22 100644 --- a/src/rapidata/api_client/api/benchmark_api.py +++ b/src/rapidata/api_client/api/benchmark_api.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/api/bidder_api.py b/src/rapidata/api_client/api/bidder_api.py index 616f1f47b..10a9e27a9 100644 --- a/src/rapidata/api_client/api/bidder_api.py +++ b/src/rapidata/api_client/api/bidder_api.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/api/billing_account_api.py b/src/rapidata/api_client/api/billing_account_api.py index 31dac4d68..c26e5c2e3 100644 --- a/src/rapidata/api_client/api/billing_account_api.py +++ b/src/rapidata/api_client/api/billing_account_api.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/api/billing_api.py b/src/rapidata/api_client/api/billing_api.py index a53c5fd12..330cb8f44 100644 --- a/src/rapidata/api_client/api/billing_api.py +++ b/src/rapidata/api_client/api/billing_api.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/api/cache_api.py b/src/rapidata/api_client/api/cache_api.py index e7af77e2c..d79264737 100644 --- a/src/rapidata/api_client/api/cache_api.py +++ b/src/rapidata/api_client/api/cache_api.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/api/campaign_api.py b/src/rapidata/api_client/api/campaign_api.py index af50d2a0b..2f5f8be53 100644 --- a/src/rapidata/api_client/api/campaign_api.py +++ b/src/rapidata/api_client/api/campaign_api.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/api/capabilities_api.py b/src/rapidata/api_client/api/capabilities_api.py index b7f66ab25..7cd6a4b3d 100644 --- a/src/rapidata/api_client/api/capabilities_api.py +++ b/src/rapidata/api_client/api/capabilities_api.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/api/client_api.py b/src/rapidata/api_client/api/client_api.py index 7c7f77c1e..750225967 100644 --- a/src/rapidata/api_client/api/client_api.py +++ b/src/rapidata/api_client/api/client_api.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/api/context_shortening_api.py b/src/rapidata/api_client/api/context_shortening_api.py index 0932edd69..6f44672ae 100644 --- a/src/rapidata/api_client/api/context_shortening_api.py +++ b/src/rapidata/api_client/api/context_shortening_api.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/api/customer_api.py b/src/rapidata/api_client/api/customer_api.py index 2b094d013..cb714b4db 100644 --- a/src/rapidata/api_client/api/customer_api.py +++ b/src/rapidata/api_client/api/customer_api.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/api/customer_rapid_api.py b/src/rapidata/api_client/api/customer_rapid_api.py index 306fd222e..3ff8aff7d 100644 --- a/src/rapidata/api_client/api/customer_rapid_api.py +++ b/src/rapidata/api_client/api/customer_rapid_api.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/api/datapoints_api.py b/src/rapidata/api_client/api/datapoints_api.py index 443b4e723..48f1ce7a1 100644 --- a/src/rapidata/api_client/api/datapoints_api.py +++ b/src/rapidata/api_client/api/datapoints_api.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/api/dataset_api.py b/src/rapidata/api_client/api/dataset_api.py index b03cbd4d2..2051fabae 100644 --- a/src/rapidata/api_client/api/dataset_api.py +++ b/src/rapidata/api_client/api/dataset_api.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/api/dataset_group_api.py b/src/rapidata/api_client/api/dataset_group_api.py index a89655756..c30d625c4 100644 --- a/src/rapidata/api_client/api/dataset_group_api.py +++ b/src/rapidata/api_client/api/dataset_group_api.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/api/examples_api.py b/src/rapidata/api_client/api/examples_api.py index 36a802b87..cedf514da 100644 --- a/src/rapidata/api_client/api/examples_api.py +++ b/src/rapidata/api_client/api/examples_api.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/api/external_apps_api.py b/src/rapidata/api_client/api/external_apps_api.py index 868e5fbed..ee1a035f2 100644 --- a/src/rapidata/api_client/api/external_apps_api.py +++ b/src/rapidata/api_client/api/external_apps_api.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/api/external_audience_api.py b/src/rapidata/api_client/api/external_audience_api.py index f615225df..26db627d4 100644 --- a/src/rapidata/api_client/api/external_audience_api.py +++ b/src/rapidata/api_client/api/external_audience_api.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/api/external_service_prices_api.py b/src/rapidata/api_client/api/external_service_prices_api.py index 3cf8c4b8e..7eb927b93 100644 --- a/src/rapidata/api_client/api/external_service_prices_api.py +++ b/src/rapidata/api_client/api/external_service_prices_api.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/api/faucet_api.py b/src/rapidata/api_client/api/faucet_api.py index c786e5a7c..a71683118 100644 --- a/src/rapidata/api_client/api/faucet_api.py +++ b/src/rapidata/api_client/api/faucet_api.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/api/feedback_api.py b/src/rapidata/api_client/api/feedback_api.py index 9215817f1..ad12fd9b8 100644 --- a/src/rapidata/api_client/api/feedback_api.py +++ b/src/rapidata/api_client/api/feedback_api.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/api/flow_api.py b/src/rapidata/api_client/api/flow_api.py index a7a951439..9ee11dc98 100644 --- a/src/rapidata/api_client/api/flow_api.py +++ b/src/rapidata/api_client/api/flow_api.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/api/flow_item_api.py b/src/rapidata/api_client/api/flow_item_api.py index 3bbe97adb..e70a8c8b5 100644 --- a/src/rapidata/api_client/api/flow_item_api.py +++ b/src/rapidata/api_client/api/flow_item_api.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/api/global_text_api.py b/src/rapidata/api_client/api/global_text_api.py index cb8bd70a5..8e957f265 100644 --- a/src/rapidata/api_client/api/global_text_api.py +++ b/src/rapidata/api_client/api/global_text_api.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/api/hugging_face_sync_api.py b/src/rapidata/api_client/api/hugging_face_sync_api.py index aba2d7ef9..7244c8dbd 100644 --- a/src/rapidata/api_client/api/hugging_face_sync_api.py +++ b/src/rapidata/api_client/api/hugging_face_sync_api.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/api/identity_api.py b/src/rapidata/api_client/api/identity_api.py index 624e9b5be..666dbe54e 100644 --- a/src/rapidata/api_client/api/identity_api.py +++ b/src/rapidata/api_client/api/identity_api.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/api/invoice_api.py b/src/rapidata/api_client/api/invoice_api.py index b6b818fb8..365b21178 100644 --- a/src/rapidata/api_client/api/invoice_api.py +++ b/src/rapidata/api_client/api/invoice_api.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/api/job_api.py b/src/rapidata/api_client/api/job_api.py index 37e18e51e..95572370d 100644 --- a/src/rapidata/api_client/api/job_api.py +++ b/src/rapidata/api_client/api/job_api.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. @@ -18,6 +18,7 @@ from pydantic import Field, StrictBool, StrictBytes, StrictInt, StrictStr, field_validator from typing import List, Optional, Tuple, Union from typing_extensions import Annotated +from uuid import UUID from rapidata.api_client.models.audience_audience_id_jobs_get_job_id_parameter import AudienceAudienceIdJobsGetJobIdParameter from rapidata.api_client.models.clone_job_definition_endpoint_input import CloneJobDefinitionEndpointInput from rapidata.api_client.models.clone_job_definition_endpoint_output import CloneJobDefinitionEndpointOutput @@ -27,6 +28,7 @@ from rapidata.api_client.models.create_job_endpoint_output import CreateJobEndpointOutput from rapidata.api_client.models.create_job_revision_endpoint_input import CreateJobRevisionEndpointInput from rapidata.api_client.models.create_job_revision_endpoint_output import CreateJobRevisionEndpointOutput +from rapidata.api_client.models.create_job_share_endpoint_input import CreateJobShareEndpointInput from rapidata.api_client.models.get_job_ab_summary_endpoint_output import GetJobAbSummaryEndpointOutput from rapidata.api_client.models.get_job_by_id_endpoint_output import GetJobByIdEndpointOutput from rapidata.api_client.models.get_job_cost_estimate_endpoint_output import GetJobCostEstimateEndpointOutput @@ -37,12 +39,14 @@ from rapidata.api_client.models.get_job_responses_endpoint_output import GetJobResponsesEndpointOutput from rapidata.api_client.models.get_job_result_navigation_endpoint_output import GetJobResultNavigationEndpointOutput from rapidata.api_client.models.get_job_revision_endpoint_output import GetJobRevisionEndpointOutput +from rapidata.api_client.models.get_job_shares_endpoint_output import GetJobSharesEndpointOutput from rapidata.api_client.models.i_job_results import IJobResults from rapidata.api_client.models.query_aggregated_jobs_endpoint_paged_result_of_output import QueryAggregatedJobsEndpointPagedResultOfOutput from rapidata.api_client.models.query_job_definitions_endpoint_paged_result_of_output import QueryJobDefinitionsEndpointPagedResultOfOutput from rapidata.api_client.models.query_job_revisions_endpoint_paged_result_of_output import QueryJobRevisionsEndpointPagedResultOfOutput from rapidata.api_client.models.query_jobs_endpoint_paged_result_of_output import QueryJobsEndpointPagedResultOfOutput from rapidata.api_client.models.query_public_job_definitions_endpoint_paged_result_of_output import QueryPublicJobDefinitionsEndpointPagedResultOfOutput +from rapidata.api_client.models.query_shared_jobs_endpoint_paged_result_of_output import QuerySharedJobsEndpointPagedResultOfOutput from rapidata.api_client.models.rapid_state import RapidState from rapidata.api_client.models.restart_rapids_endpoint_input import RestartRapidsEndpointInput from rapidata.api_client.models.sort_direction import SortDirection @@ -8868,10 +8872,10 @@ def _job_job_id_retry_post_serialize( @validate_call - def job_job_id_share_patch( + def job_job_id_shares_customer_id_delete( self, - job_id: Annotated[StrictStr, Field(description="The ID of the job.")], - is_public: Annotated[Optional[StrictBool], Field(description="Whether to mark or unmark the job as public.")] = None, + job_id: Annotated[StrictStr, Field(description="The id of the job.")], + customer_id: Annotated[UUID, Field(description="The id of the customer whose access is revoked.")], _request_timeout: Union[ None, Annotated[StrictFloat, Field(gt=0)], @@ -8885,13 +8889,14 @@ def job_job_id_share_patch( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> None: - """Marks or unmarks a job as public so its results can be shared with other users. + """Removes a customer's viewer and editor access to a job. + Idempotent: revoking a share that does not exist succeeds with no effect. - :param job_id: The ID of the job. (required) + :param job_id: The id of the job. (required) :type job_id: str - :param is_public: Whether to mark or unmark the job as public. - :type is_public: bool + :param customer_id: The id of the customer whose access is revoked. (required) + :type customer_id: UUID :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of @@ -8914,9 +8919,9 @@ def job_job_id_share_patch( :return: Returns the result object. """ # noqa: E501 - _param = self._job_job_id_share_patch_serialize( + _param = self._job_job_id_shares_customer_id_delete_serialize( job_id=job_id, - is_public=is_public, + customer_id=customer_id, _request_auth=_request_auth, _content_type=_content_type, _headers=_headers, @@ -8941,10 +8946,10 @@ def job_job_id_share_patch( @validate_call - def job_job_id_share_patch_with_http_info( + def job_job_id_shares_customer_id_delete_with_http_info( self, - job_id: Annotated[StrictStr, Field(description="The ID of the job.")], - is_public: Annotated[Optional[StrictBool], Field(description="Whether to mark or unmark the job as public.")] = None, + job_id: Annotated[StrictStr, Field(description="The id of the job.")], + customer_id: Annotated[UUID, Field(description="The id of the customer whose access is revoked.")], _request_timeout: Union[ None, Annotated[StrictFloat, Field(gt=0)], @@ -8958,13 +8963,14 @@ def job_job_id_share_patch_with_http_info( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> ApiResponse[None]: - """Marks or unmarks a job as public so its results can be shared with other users. + """Removes a customer's viewer and editor access to a job. + Idempotent: revoking a share that does not exist succeeds with no effect. - :param job_id: The ID of the job. (required) + :param job_id: The id of the job. (required) :type job_id: str - :param is_public: Whether to mark or unmark the job as public. - :type is_public: bool + :param customer_id: The id of the customer whose access is revoked. (required) + :type customer_id: UUID :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of @@ -8987,9 +8993,9 @@ def job_job_id_share_patch_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._job_job_id_share_patch_serialize( + _param = self._job_job_id_shares_customer_id_delete_serialize( job_id=job_id, - is_public=is_public, + customer_id=customer_id, _request_auth=_request_auth, _content_type=_content_type, _headers=_headers, @@ -9014,10 +9020,10 @@ def job_job_id_share_patch_with_http_info( @validate_call - def job_job_id_share_patch_without_preload_content( + def job_job_id_shares_customer_id_delete_without_preload_content( self, - job_id: Annotated[StrictStr, Field(description="The ID of the job.")], - is_public: Annotated[Optional[StrictBool], Field(description="Whether to mark or unmark the job as public.")] = None, + job_id: Annotated[StrictStr, Field(description="The id of the job.")], + customer_id: Annotated[UUID, Field(description="The id of the customer whose access is revoked.")], _request_timeout: Union[ None, Annotated[StrictFloat, Field(gt=0)], @@ -9031,13 +9037,14 @@ def job_job_id_share_patch_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> RESTResponseType: - """Marks or unmarks a job as public so its results can be shared with other users. + """Removes a customer's viewer and editor access to a job. + Idempotent: revoking a share that does not exist succeeds with no effect. - :param job_id: The ID of the job. (required) + :param job_id: The id of the job. (required) :type job_id: str - :param is_public: Whether to mark or unmark the job as public. - :type is_public: bool + :param customer_id: The id of the customer whose access is revoked. (required) + :type customer_id: UUID :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of @@ -9060,9 +9067,9 @@ def job_job_id_share_patch_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._job_job_id_share_patch_serialize( + _param = self._job_job_id_shares_customer_id_delete_serialize( job_id=job_id, - is_public=is_public, + customer_id=customer_id, _request_auth=_request_auth, _content_type=_content_type, _headers=_headers, @@ -9082,10 +9089,10 @@ def job_job_id_share_patch_without_preload_content( return response_data.response - def _job_job_id_share_patch_serialize( + def _job_job_id_shares_customer_id_delete_serialize( self, job_id, - is_public, + customer_id, _request_auth, _content_type, _headers, @@ -9109,11 +9116,9 @@ def _job_job_id_share_patch_serialize( # process the path parameters if job_id is not None: _path_params['jobId'] = job_id + if customer_id is not None: + _path_params['customerId'] = customer_id # process the query parameters - if is_public is not None: - - _query_params.append(('isPublic', is_public)) - # process the header parameters # process the form parameters # process the body parameter @@ -9134,8 +9139,8 @@ def _job_job_id_share_patch_serialize( ] return self.api_client.param_serialize( - method='PATCH', - resource_path='/job/{jobId}/share', + method='DELETE', + resource_path='/job/{jobId}/shares/{customerId}', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -9152,9 +9157,9 @@ def _job_job_id_share_patch_serialize( @validate_call - def job_post( + def job_job_id_shares_get( self, - create_job_endpoint_input: Annotated[CreateJobEndpointInput, Field(description="The job creation parameters.")], + job_id: Annotated[StrictStr, Field(description="The id of the job.")], _request_timeout: Union[ None, Annotated[StrictFloat, Field(gt=0)], @@ -9167,13 +9172,13 @@ def job_post( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, - ) -> CreateJobEndpointOutput: - """Creates a new job from a job definition and audience. + ) -> List[GetJobSharesEndpointOutput]: + """Returns each customer a job is shared with, together with their access level. - If the audience is not already recruiting, recruiting is started automatically. The RecruitingStarted field indicates whether this happened. + The email is resolved for display and may be null if the account can no longer be resolved. - :param create_job_endpoint_input: The job creation parameters. (required) - :type create_job_endpoint_input: CreateJobEndpointInput + :param job_id: The id of the job. (required) + :type job_id: str :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of @@ -9196,8 +9201,8 @@ def job_post( :return: Returns the result object. """ # noqa: E501 - _param = self._job_post_serialize( - create_job_endpoint_input=create_job_endpoint_input, + _param = self._job_job_id_shares_get_serialize( + job_id=job_id, _request_auth=_request_auth, _content_type=_content_type, _headers=_headers, @@ -9205,7 +9210,7 @@ def job_post( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "CreateJobEndpointOutput", + '200': "List[GetJobSharesEndpointOutput]", '400': "ValidationProblemDetails", '401': None, '403': None, @@ -9222,9 +9227,9 @@ def job_post( @validate_call - def job_post_with_http_info( + def job_job_id_shares_get_with_http_info( self, - create_job_endpoint_input: Annotated[CreateJobEndpointInput, Field(description="The job creation parameters.")], + job_id: Annotated[StrictStr, Field(description="The id of the job.")], _request_timeout: Union[ None, Annotated[StrictFloat, Field(gt=0)], @@ -9237,13 +9242,13 @@ def job_post_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, - ) -> ApiResponse[CreateJobEndpointOutput]: - """Creates a new job from a job definition and audience. + ) -> ApiResponse[List[GetJobSharesEndpointOutput]]: + """Returns each customer a job is shared with, together with their access level. - If the audience is not already recruiting, recruiting is started automatically. The RecruitingStarted field indicates whether this happened. + The email is resolved for display and may be null if the account can no longer be resolved. - :param create_job_endpoint_input: The job creation parameters. (required) - :type create_job_endpoint_input: CreateJobEndpointInput + :param job_id: The id of the job. (required) + :type job_id: str :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of @@ -9266,8 +9271,8 @@ def job_post_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._job_post_serialize( - create_job_endpoint_input=create_job_endpoint_input, + _param = self._job_job_id_shares_get_serialize( + job_id=job_id, _request_auth=_request_auth, _content_type=_content_type, _headers=_headers, @@ -9275,7 +9280,7 @@ def job_post_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "CreateJobEndpointOutput", + '200': "List[GetJobSharesEndpointOutput]", '400': "ValidationProblemDetails", '401': None, '403': None, @@ -9292,9 +9297,9 @@ def job_post_with_http_info( @validate_call - def job_post_without_preload_content( + def job_job_id_shares_get_without_preload_content( self, - create_job_endpoint_input: Annotated[CreateJobEndpointInput, Field(description="The job creation parameters.")], + job_id: Annotated[StrictStr, Field(description="The id of the job.")], _request_timeout: Union[ None, Annotated[StrictFloat, Field(gt=0)], @@ -9308,12 +9313,12 @@ def job_post_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> RESTResponseType: - """Creates a new job from a job definition and audience. + """Returns each customer a job is shared with, together with their access level. - If the audience is not already recruiting, recruiting is started automatically. The RecruitingStarted field indicates whether this happened. + The email is resolved for display and may be null if the account can no longer be resolved. - :param create_job_endpoint_input: The job creation parameters. (required) - :type create_job_endpoint_input: CreateJobEndpointInput + :param job_id: The id of the job. (required) + :type job_id: str :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of @@ -9336,8 +9341,8 @@ def job_post_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._job_post_serialize( - create_job_endpoint_input=create_job_endpoint_input, + _param = self._job_job_id_shares_get_serialize( + job_id=job_id, _request_auth=_request_auth, _content_type=_content_type, _headers=_headers, @@ -9345,7 +9350,7 @@ def job_post_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "CreateJobEndpointOutput", + '200': "List[GetJobSharesEndpointOutput]", '400': "ValidationProblemDetails", '401': None, '403': None, @@ -9357,9 +9362,9 @@ def job_post_without_preload_content( return response_data.response - def _job_post_serialize( + def _job_job_id_shares_get_serialize( self, - create_job_endpoint_input, + job_id, _request_auth, _content_type, _headers, @@ -9381,12 +9386,12 @@ def _job_post_serialize( _body_params: Optional[bytes] = None # process the path parameters + if job_id is not None: + _path_params['jobId'] = job_id # process the query parameters # process the header parameters # process the form parameters # process the body parameter - if create_job_endpoint_input is not None: - _body_params = create_job_endpoint_input # set the HTTP header `Accept` @@ -9397,19 +9402,6 @@ def _job_post_serialize( ] ) - # set the HTTP header `Content-Type` - if _content_type: - _header_params['Content-Type'] = _content_type - else: - _default_content_type = ( - self.api_client.select_header_content_type( - [ - 'application/json' - ] - ) - ) - if _default_content_type is not None: - _header_params['Content-Type'] = _default_content_type # authentication setting _auth_settings: List[str] = [ @@ -9417,8 +9409,1281 @@ def _job_post_serialize( ] return self.api_client.param_serialize( - method='POST', - resource_path='/job', + method='GET', + resource_path='/job/{jobId}/shares', + path_params=_path_params, + query_params=_query_params, + header_params=_header_params, + body=_body_params, + post_params=_form_params, + files=_files, + auth_settings=_auth_settings, + collection_formats=_collection_formats, + _host=_host, + _request_auth=_request_auth + ) + + + + + @validate_call + def job_job_id_shares_post( + self, + job_id: Annotated[StrictStr, Field(description="The id of the job to share.")], + create_job_share_endpoint_input: Annotated[CreateJobShareEndpointInput, Field(description="The email to share with and the access level to grant.")], + _request_timeout: Union[ + None, + Annotated[StrictFloat, Field(gt=0)], + Tuple[ + Annotated[StrictFloat, Field(gt=0)], + Annotated[StrictFloat, Field(gt=0)] + ] + ] = None, + _request_auth: Optional[Dict[StrictStr, Any]] = None, + _content_type: Optional[StrictStr] = None, + _headers: Optional[Dict[StrictStr, Any]] = None, + _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, + ) -> None: + """Grants a customer viewer or editor access to a job by their email. + + The email must belong to an existing account; an unknown email returns 400 Bad Request. Granting editor access implies viewing. Re-sharing at the same level is idempotent. + + :param job_id: The id of the job to share. (required) + :type job_id: str + :param create_job_share_endpoint_input: The email to share with and the access level to grant. (required) + :type create_job_share_endpoint_input: CreateJobShareEndpointInput + :param _request_timeout: timeout setting for this request. If one + number provided, it will be total request + timeout. It can also be a pair (tuple) of + (connection, read) timeouts. + :type _request_timeout: int, tuple(int, int), optional + :param _request_auth: set to override the auth_settings for an a single + request; this effectively ignores the + authentication in the spec for a single request. + :type _request_auth: dict, optional + :param _content_type: force content-type for the request. + :type _content_type: str, Optional + :param _headers: set to override the headers for a single + request; this effectively ignores the headers + in the spec for a single request. + :type _headers: dict, optional + :param _host_index: set to override the host_index for a single + request; this effectively ignores the host_index + in the spec for a single request. + :type _host_index: int, optional + :return: Returns the result object. + """ # noqa: E501 + + _param = self._job_job_id_shares_post_serialize( + job_id=job_id, + create_job_share_endpoint_input=create_job_share_endpoint_input, + _request_auth=_request_auth, + _content_type=_content_type, + _headers=_headers, + _host_index=_host_index + ) + + _response_types_map: Dict[str, Optional[str]] = { + '204': None, + '400': "ValidationProblemDetails", + '401': None, + '403': None, + } + response_data = self.api_client.call_api( + *_param, + _request_timeout=_request_timeout + ) + response_data.read() + return self.api_client.response_deserialize( + response_data=response_data, + response_types_map=_response_types_map, + ).data + + + @validate_call + def job_job_id_shares_post_with_http_info( + self, + job_id: Annotated[StrictStr, Field(description="The id of the job to share.")], + create_job_share_endpoint_input: Annotated[CreateJobShareEndpointInput, Field(description="The email to share with and the access level to grant.")], + _request_timeout: Union[ + None, + Annotated[StrictFloat, Field(gt=0)], + Tuple[ + Annotated[StrictFloat, Field(gt=0)], + Annotated[StrictFloat, Field(gt=0)] + ] + ] = None, + _request_auth: Optional[Dict[StrictStr, Any]] = None, + _content_type: Optional[StrictStr] = None, + _headers: Optional[Dict[StrictStr, Any]] = None, + _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, + ) -> ApiResponse[None]: + """Grants a customer viewer or editor access to a job by their email. + + The email must belong to an existing account; an unknown email returns 400 Bad Request. Granting editor access implies viewing. Re-sharing at the same level is idempotent. + + :param job_id: The id of the job to share. (required) + :type job_id: str + :param create_job_share_endpoint_input: The email to share with and the access level to grant. (required) + :type create_job_share_endpoint_input: CreateJobShareEndpointInput + :param _request_timeout: timeout setting for this request. If one + number provided, it will be total request + timeout. It can also be a pair (tuple) of + (connection, read) timeouts. + :type _request_timeout: int, tuple(int, int), optional + :param _request_auth: set to override the auth_settings for an a single + request; this effectively ignores the + authentication in the spec for a single request. + :type _request_auth: dict, optional + :param _content_type: force content-type for the request. + :type _content_type: str, Optional + :param _headers: set to override the headers for a single + request; this effectively ignores the headers + in the spec for a single request. + :type _headers: dict, optional + :param _host_index: set to override the host_index for a single + request; this effectively ignores the host_index + in the spec for a single request. + :type _host_index: int, optional + :return: Returns the result object. + """ # noqa: E501 + + _param = self._job_job_id_shares_post_serialize( + job_id=job_id, + create_job_share_endpoint_input=create_job_share_endpoint_input, + _request_auth=_request_auth, + _content_type=_content_type, + _headers=_headers, + _host_index=_host_index + ) + + _response_types_map: Dict[str, Optional[str]] = { + '204': None, + '400': "ValidationProblemDetails", + '401': None, + '403': None, + } + response_data = self.api_client.call_api( + *_param, + _request_timeout=_request_timeout + ) + response_data.read() + return self.api_client.response_deserialize( + response_data=response_data, + response_types_map=_response_types_map, + ) + + + @validate_call + def job_job_id_shares_post_without_preload_content( + self, + job_id: Annotated[StrictStr, Field(description="The id of the job to share.")], + create_job_share_endpoint_input: Annotated[CreateJobShareEndpointInput, Field(description="The email to share with and the access level to grant.")], + _request_timeout: Union[ + None, + Annotated[StrictFloat, Field(gt=0)], + Tuple[ + Annotated[StrictFloat, Field(gt=0)], + Annotated[StrictFloat, Field(gt=0)] + ] + ] = None, + _request_auth: Optional[Dict[StrictStr, Any]] = None, + _content_type: Optional[StrictStr] = None, + _headers: Optional[Dict[StrictStr, Any]] = None, + _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, + ) -> RESTResponseType: + """Grants a customer viewer or editor access to a job by their email. + + The email must belong to an existing account; an unknown email returns 400 Bad Request. Granting editor access implies viewing. Re-sharing at the same level is idempotent. + + :param job_id: The id of the job to share. (required) + :type job_id: str + :param create_job_share_endpoint_input: The email to share with and the access level to grant. (required) + :type create_job_share_endpoint_input: CreateJobShareEndpointInput + :param _request_timeout: timeout setting for this request. If one + number provided, it will be total request + timeout. It can also be a pair (tuple) of + (connection, read) timeouts. + :type _request_timeout: int, tuple(int, int), optional + :param _request_auth: set to override the auth_settings for an a single + request; this effectively ignores the + authentication in the spec for a single request. + :type _request_auth: dict, optional + :param _content_type: force content-type for the request. + :type _content_type: str, Optional + :param _headers: set to override the headers for a single + request; this effectively ignores the headers + in the spec for a single request. + :type _headers: dict, optional + :param _host_index: set to override the host_index for a single + request; this effectively ignores the host_index + in the spec for a single request. + :type _host_index: int, optional + :return: Returns the result object. + """ # noqa: E501 + + _param = self._job_job_id_shares_post_serialize( + job_id=job_id, + create_job_share_endpoint_input=create_job_share_endpoint_input, + _request_auth=_request_auth, + _content_type=_content_type, + _headers=_headers, + _host_index=_host_index + ) + + _response_types_map: Dict[str, Optional[str]] = { + '204': None, + '400': "ValidationProblemDetails", + '401': None, + '403': None, + } + response_data = self.api_client.call_api( + *_param, + _request_timeout=_request_timeout + ) + return response_data.response + + + def _job_job_id_shares_post_serialize( + self, + job_id, + create_job_share_endpoint_input, + _request_auth, + _content_type, + _headers, + _host_index, + ) -> RequestSerialized: + + _host = None + + _collection_formats: Dict[str, str] = { + } + + _path_params: Dict[str, str] = {} + _query_params: List[Tuple[str, str]] = [] + _header_params: Dict[str, Optional[str]] = _headers or {} + _form_params: List[Tuple[str, str]] = [] + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} + _body_params: Optional[bytes] = None + + # process the path parameters + if job_id is not None: + _path_params['jobId'] = job_id + # process the query parameters + # process the header parameters + # process the form parameters + # process the body parameter + if create_job_share_endpoint_input is not None: + _body_params = create_job_share_endpoint_input + + + # set the HTTP header `Accept` + if 'Accept' not in _header_params: + _header_params['Accept'] = self.api_client.select_header_accept( + [ + 'application/json' + ] + ) + + # set the HTTP header `Content-Type` + if _content_type: + _header_params['Content-Type'] = _content_type + else: + _default_content_type = ( + self.api_client.select_header_content_type( + [ + 'application/json' + ] + ) + ) + if _default_content_type is not None: + _header_params['Content-Type'] = _default_content_type + + # authentication setting + _auth_settings: List[str] = [ + 'OpenIdConnect' + ] + + return self.api_client.param_serialize( + method='POST', + resource_path='/job/{jobId}/shares', + path_params=_path_params, + query_params=_query_params, + header_params=_header_params, + body=_body_params, + post_params=_form_params, + files=_files, + auth_settings=_auth_settings, + collection_formats=_collection_formats, + _host=_host, + _request_auth=_request_auth + ) + + + + + @validate_call + def job_job_id_visibility_patch( + self, + job_id: Annotated[StrictStr, Field(description="The id of the job.")], + is_public: Annotated[Optional[StrictBool], Field(description="Whether to mark or unmark the job as public.")] = None, + _request_timeout: Union[ + None, + Annotated[StrictFloat, Field(gt=0)], + Tuple[ + Annotated[StrictFloat, Field(gt=0)], + Annotated[StrictFloat, Field(gt=0)] + ] + ] = None, + _request_auth: Optional[Dict[StrictStr, Any]] = None, + _content_type: Optional[StrictStr] = None, + _headers: Optional[Dict[StrictStr, Any]] = None, + _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, + ) -> None: + """Marks or unmarks a job as public so its results are viewable via a link. + + Public visibility is distinct from per-customer sharing (/job/{jobId}/shares): this makes results readable by anyone, whereas sharing grants a specific customer access. + + :param job_id: The id of the job. (required) + :type job_id: str + :param is_public: Whether to mark or unmark the job as public. + :type is_public: bool + :param _request_timeout: timeout setting for this request. If one + number provided, it will be total request + timeout. It can also be a pair (tuple) of + (connection, read) timeouts. + :type _request_timeout: int, tuple(int, int), optional + :param _request_auth: set to override the auth_settings for an a single + request; this effectively ignores the + authentication in the spec for a single request. + :type _request_auth: dict, optional + :param _content_type: force content-type for the request. + :type _content_type: str, Optional + :param _headers: set to override the headers for a single + request; this effectively ignores the headers + in the spec for a single request. + :type _headers: dict, optional + :param _host_index: set to override the host_index for a single + request; this effectively ignores the host_index + in the spec for a single request. + :type _host_index: int, optional + :return: Returns the result object. + """ # noqa: E501 + + _param = self._job_job_id_visibility_patch_serialize( + job_id=job_id, + is_public=is_public, + _request_auth=_request_auth, + _content_type=_content_type, + _headers=_headers, + _host_index=_host_index + ) + + _response_types_map: Dict[str, Optional[str]] = { + '204': None, + '400': "ValidationProblemDetails", + '401': None, + '403': None, + } + response_data = self.api_client.call_api( + *_param, + _request_timeout=_request_timeout + ) + response_data.read() + return self.api_client.response_deserialize( + response_data=response_data, + response_types_map=_response_types_map, + ).data + + + @validate_call + def job_job_id_visibility_patch_with_http_info( + self, + job_id: Annotated[StrictStr, Field(description="The id of the job.")], + is_public: Annotated[Optional[StrictBool], Field(description="Whether to mark or unmark the job as public.")] = None, + _request_timeout: Union[ + None, + Annotated[StrictFloat, Field(gt=0)], + Tuple[ + Annotated[StrictFloat, Field(gt=0)], + Annotated[StrictFloat, Field(gt=0)] + ] + ] = None, + _request_auth: Optional[Dict[StrictStr, Any]] = None, + _content_type: Optional[StrictStr] = None, + _headers: Optional[Dict[StrictStr, Any]] = None, + _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, + ) -> ApiResponse[None]: + """Marks or unmarks a job as public so its results are viewable via a link. + + Public visibility is distinct from per-customer sharing (/job/{jobId}/shares): this makes results readable by anyone, whereas sharing grants a specific customer access. + + :param job_id: The id of the job. (required) + :type job_id: str + :param is_public: Whether to mark or unmark the job as public. + :type is_public: bool + :param _request_timeout: timeout setting for this request. If one + number provided, it will be total request + timeout. It can also be a pair (tuple) of + (connection, read) timeouts. + :type _request_timeout: int, tuple(int, int), optional + :param _request_auth: set to override the auth_settings for an a single + request; this effectively ignores the + authentication in the spec for a single request. + :type _request_auth: dict, optional + :param _content_type: force content-type for the request. + :type _content_type: str, Optional + :param _headers: set to override the headers for a single + request; this effectively ignores the headers + in the spec for a single request. + :type _headers: dict, optional + :param _host_index: set to override the host_index for a single + request; this effectively ignores the host_index + in the spec for a single request. + :type _host_index: int, optional + :return: Returns the result object. + """ # noqa: E501 + + _param = self._job_job_id_visibility_patch_serialize( + job_id=job_id, + is_public=is_public, + _request_auth=_request_auth, + _content_type=_content_type, + _headers=_headers, + _host_index=_host_index + ) + + _response_types_map: Dict[str, Optional[str]] = { + '204': None, + '400': "ValidationProblemDetails", + '401': None, + '403': None, + } + response_data = self.api_client.call_api( + *_param, + _request_timeout=_request_timeout + ) + response_data.read() + return self.api_client.response_deserialize( + response_data=response_data, + response_types_map=_response_types_map, + ) + + + @validate_call + def job_job_id_visibility_patch_without_preload_content( + self, + job_id: Annotated[StrictStr, Field(description="The id of the job.")], + is_public: Annotated[Optional[StrictBool], Field(description="Whether to mark or unmark the job as public.")] = None, + _request_timeout: Union[ + None, + Annotated[StrictFloat, Field(gt=0)], + Tuple[ + Annotated[StrictFloat, Field(gt=0)], + Annotated[StrictFloat, Field(gt=0)] + ] + ] = None, + _request_auth: Optional[Dict[StrictStr, Any]] = None, + _content_type: Optional[StrictStr] = None, + _headers: Optional[Dict[StrictStr, Any]] = None, + _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, + ) -> RESTResponseType: + """Marks or unmarks a job as public so its results are viewable via a link. + + Public visibility is distinct from per-customer sharing (/job/{jobId}/shares): this makes results readable by anyone, whereas sharing grants a specific customer access. + + :param job_id: The id of the job. (required) + :type job_id: str + :param is_public: Whether to mark or unmark the job as public. + :type is_public: bool + :param _request_timeout: timeout setting for this request. If one + number provided, it will be total request + timeout. It can also be a pair (tuple) of + (connection, read) timeouts. + :type _request_timeout: int, tuple(int, int), optional + :param _request_auth: set to override the auth_settings for an a single + request; this effectively ignores the + authentication in the spec for a single request. + :type _request_auth: dict, optional + :param _content_type: force content-type for the request. + :type _content_type: str, Optional + :param _headers: set to override the headers for a single + request; this effectively ignores the headers + in the spec for a single request. + :type _headers: dict, optional + :param _host_index: set to override the host_index for a single + request; this effectively ignores the host_index + in the spec for a single request. + :type _host_index: int, optional + :return: Returns the result object. + """ # noqa: E501 + + _param = self._job_job_id_visibility_patch_serialize( + job_id=job_id, + is_public=is_public, + _request_auth=_request_auth, + _content_type=_content_type, + _headers=_headers, + _host_index=_host_index + ) + + _response_types_map: Dict[str, Optional[str]] = { + '204': None, + '400': "ValidationProblemDetails", + '401': None, + '403': None, + } + response_data = self.api_client.call_api( + *_param, + _request_timeout=_request_timeout + ) + return response_data.response + + + def _job_job_id_visibility_patch_serialize( + self, + job_id, + is_public, + _request_auth, + _content_type, + _headers, + _host_index, + ) -> RequestSerialized: + + _host = None + + _collection_formats: Dict[str, str] = { + } + + _path_params: Dict[str, str] = {} + _query_params: List[Tuple[str, str]] = [] + _header_params: Dict[str, Optional[str]] = _headers or {} + _form_params: List[Tuple[str, str]] = [] + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} + _body_params: Optional[bytes] = None + + # process the path parameters + if job_id is not None: + _path_params['jobId'] = job_id + # process the query parameters + if is_public is not None: + + _query_params.append(('isPublic', is_public)) + + # process the header parameters + # process the form parameters + # process the body parameter + + + # set the HTTP header `Accept` + if 'Accept' not in _header_params: + _header_params['Accept'] = self.api_client.select_header_accept( + [ + 'application/json' + ] + ) + + + # authentication setting + _auth_settings: List[str] = [ + 'OpenIdConnect' + ] + + return self.api_client.param_serialize( + method='PATCH', + resource_path='/job/{jobId}/visibility', + path_params=_path_params, + query_params=_query_params, + header_params=_header_params, + body=_body_params, + post_params=_form_params, + files=_files, + auth_settings=_auth_settings, + collection_formats=_collection_formats, + _host=_host, + _request_auth=_request_auth + ) + + + + + @validate_call + def job_post( + self, + create_job_endpoint_input: Annotated[CreateJobEndpointInput, Field(description="The job creation parameters.")], + _request_timeout: Union[ + None, + Annotated[StrictFloat, Field(gt=0)], + Tuple[ + Annotated[StrictFloat, Field(gt=0)], + Annotated[StrictFloat, Field(gt=0)] + ] + ] = None, + _request_auth: Optional[Dict[StrictStr, Any]] = None, + _content_type: Optional[StrictStr] = None, + _headers: Optional[Dict[StrictStr, Any]] = None, + _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, + ) -> CreateJobEndpointOutput: + """Creates a new job from a job definition and audience. + + If the audience is not already recruiting, recruiting is started automatically. The RecruitingStarted field indicates whether this happened. + + :param create_job_endpoint_input: The job creation parameters. (required) + :type create_job_endpoint_input: CreateJobEndpointInput + :param _request_timeout: timeout setting for this request. If one + number provided, it will be total request + timeout. It can also be a pair (tuple) of + (connection, read) timeouts. + :type _request_timeout: int, tuple(int, int), optional + :param _request_auth: set to override the auth_settings for an a single + request; this effectively ignores the + authentication in the spec for a single request. + :type _request_auth: dict, optional + :param _content_type: force content-type for the request. + :type _content_type: str, Optional + :param _headers: set to override the headers for a single + request; this effectively ignores the headers + in the spec for a single request. + :type _headers: dict, optional + :param _host_index: set to override the host_index for a single + request; this effectively ignores the host_index + in the spec for a single request. + :type _host_index: int, optional + :return: Returns the result object. + """ # noqa: E501 + + _param = self._job_post_serialize( + create_job_endpoint_input=create_job_endpoint_input, + _request_auth=_request_auth, + _content_type=_content_type, + _headers=_headers, + _host_index=_host_index + ) + + _response_types_map: Dict[str, Optional[str]] = { + '200': "CreateJobEndpointOutput", + '400': "ValidationProblemDetails", + '401': None, + '403': None, + } + response_data = self.api_client.call_api( + *_param, + _request_timeout=_request_timeout + ) + response_data.read() + return self.api_client.response_deserialize( + response_data=response_data, + response_types_map=_response_types_map, + ).data + + + @validate_call + def job_post_with_http_info( + self, + create_job_endpoint_input: Annotated[CreateJobEndpointInput, Field(description="The job creation parameters.")], + _request_timeout: Union[ + None, + Annotated[StrictFloat, Field(gt=0)], + Tuple[ + Annotated[StrictFloat, Field(gt=0)], + Annotated[StrictFloat, Field(gt=0)] + ] + ] = None, + _request_auth: Optional[Dict[StrictStr, Any]] = None, + _content_type: Optional[StrictStr] = None, + _headers: Optional[Dict[StrictStr, Any]] = None, + _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, + ) -> ApiResponse[CreateJobEndpointOutput]: + """Creates a new job from a job definition and audience. + + If the audience is not already recruiting, recruiting is started automatically. The RecruitingStarted field indicates whether this happened. + + :param create_job_endpoint_input: The job creation parameters. (required) + :type create_job_endpoint_input: CreateJobEndpointInput + :param _request_timeout: timeout setting for this request. If one + number provided, it will be total request + timeout. It can also be a pair (tuple) of + (connection, read) timeouts. + :type _request_timeout: int, tuple(int, int), optional + :param _request_auth: set to override the auth_settings for an a single + request; this effectively ignores the + authentication in the spec for a single request. + :type _request_auth: dict, optional + :param _content_type: force content-type for the request. + :type _content_type: str, Optional + :param _headers: set to override the headers for a single + request; this effectively ignores the headers + in the spec for a single request. + :type _headers: dict, optional + :param _host_index: set to override the host_index for a single + request; this effectively ignores the host_index + in the spec for a single request. + :type _host_index: int, optional + :return: Returns the result object. + """ # noqa: E501 + + _param = self._job_post_serialize( + create_job_endpoint_input=create_job_endpoint_input, + _request_auth=_request_auth, + _content_type=_content_type, + _headers=_headers, + _host_index=_host_index + ) + + _response_types_map: Dict[str, Optional[str]] = { + '200': "CreateJobEndpointOutput", + '400': "ValidationProblemDetails", + '401': None, + '403': None, + } + response_data = self.api_client.call_api( + *_param, + _request_timeout=_request_timeout + ) + response_data.read() + return self.api_client.response_deserialize( + response_data=response_data, + response_types_map=_response_types_map, + ) + + + @validate_call + def job_post_without_preload_content( + self, + create_job_endpoint_input: Annotated[CreateJobEndpointInput, Field(description="The job creation parameters.")], + _request_timeout: Union[ + None, + Annotated[StrictFloat, Field(gt=0)], + Tuple[ + Annotated[StrictFloat, Field(gt=0)], + Annotated[StrictFloat, Field(gt=0)] + ] + ] = None, + _request_auth: Optional[Dict[StrictStr, Any]] = None, + _content_type: Optional[StrictStr] = None, + _headers: Optional[Dict[StrictStr, Any]] = None, + _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, + ) -> RESTResponseType: + """Creates a new job from a job definition and audience. + + If the audience is not already recruiting, recruiting is started automatically. The RecruitingStarted field indicates whether this happened. + + :param create_job_endpoint_input: The job creation parameters. (required) + :type create_job_endpoint_input: CreateJobEndpointInput + :param _request_timeout: timeout setting for this request. If one + number provided, it will be total request + timeout. It can also be a pair (tuple) of + (connection, read) timeouts. + :type _request_timeout: int, tuple(int, int), optional + :param _request_auth: set to override the auth_settings for an a single + request; this effectively ignores the + authentication in the spec for a single request. + :type _request_auth: dict, optional + :param _content_type: force content-type for the request. + :type _content_type: str, Optional + :param _headers: set to override the headers for a single + request; this effectively ignores the headers + in the spec for a single request. + :type _headers: dict, optional + :param _host_index: set to override the host_index for a single + request; this effectively ignores the host_index + in the spec for a single request. + :type _host_index: int, optional + :return: Returns the result object. + """ # noqa: E501 + + _param = self._job_post_serialize( + create_job_endpoint_input=create_job_endpoint_input, + _request_auth=_request_auth, + _content_type=_content_type, + _headers=_headers, + _host_index=_host_index + ) + + _response_types_map: Dict[str, Optional[str]] = { + '200': "CreateJobEndpointOutput", + '400': "ValidationProblemDetails", + '401': None, + '403': None, + } + response_data = self.api_client.call_api( + *_param, + _request_timeout=_request_timeout + ) + return response_data.response + + + def _job_post_serialize( + self, + create_job_endpoint_input, + _request_auth, + _content_type, + _headers, + _host_index, + ) -> RequestSerialized: + + _host = None + + _collection_formats: Dict[str, str] = { + } + + _path_params: Dict[str, str] = {} + _query_params: List[Tuple[str, str]] = [] + _header_params: Dict[str, Optional[str]] = _headers or {} + _form_params: List[Tuple[str, str]] = [] + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} + _body_params: Optional[bytes] = None + + # process the path parameters + # process the query parameters + # process the header parameters + # process the form parameters + # process the body parameter + if create_job_endpoint_input is not None: + _body_params = create_job_endpoint_input + + + # set the HTTP header `Accept` + if 'Accept' not in _header_params: + _header_params['Accept'] = self.api_client.select_header_accept( + [ + 'application/json' + ] + ) + + # set the HTTP header `Content-Type` + if _content_type: + _header_params['Content-Type'] = _content_type + else: + _default_content_type = ( + self.api_client.select_header_content_type( + [ + 'application/json' + ] + ) + ) + if _default_content_type is not None: + _header_params['Content-Type'] = _default_content_type + + # authentication setting + _auth_settings: List[str] = [ + 'OpenIdConnect' + ] + + return self.api_client.param_serialize( + method='POST', + resource_path='/job', + path_params=_path_params, + query_params=_query_params, + header_params=_header_params, + body=_body_params, + post_params=_form_params, + files=_files, + auth_settings=_auth_settings, + collection_formats=_collection_formats, + _host=_host, + _request_auth=_request_auth + ) + + + + + @validate_call + def jobs_aggregated_overview_get( + self, + page: Annotated[Optional[StrictInt], Field(description="The 1-based page index.")] = None, + page_size: Annotated[Optional[StrictInt], Field(description="The number of items per page.")] = None, + sort: Annotated[Optional[List[StrictStr]], Field(description="Sort fields. Prefix with - for descending order (e.g. -created_at).")] = None, + owner_mail: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by owner_mail.")] = None, + last_job_date: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by last_job_date.")] = None, + last_job_name: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by last_job_name.")] = None, + logic: Annotated[Optional[StrictStr], Field(description="How to combine the field filters: \"and\" (default) requires every filter to match, \"or\" requires any of them to match.")] = None, + _request_timeout: Union[ + None, + Annotated[StrictFloat, Field(gt=0)], + Tuple[ + Annotated[StrictFloat, Field(gt=0)], + Annotated[StrictFloat, Field(gt=0)] + ] + ] = None, + _request_auth: Optional[Dict[StrictStr, Any]] = None, + _content_type: Optional[StrictStr] = None, + _headers: Optional[Dict[StrictStr, Any]] = None, + _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, + ) -> QueryAggregatedJobsEndpointPagedResultOfOutput: + """Retrieves jobs aggregated by customer with total counts and most recent job information. + + + :param page: The 1-based page index. + :type page: int + :param page_size: The number of items per page. + :type page_size: int + :param sort: Sort fields. Prefix with - for descending order (e.g. -created_at). + :type sort: List[str] + :param owner_mail: Filter by owner_mail. + :type owner_mail: AudienceAudienceIdJobsGetJobIdParameter + :param last_job_date: Filter by last_job_date. + :type last_job_date: AudienceAudienceIdJobsGetJobIdParameter + :param last_job_name: Filter by last_job_name. + :type last_job_name: AudienceAudienceIdJobsGetJobIdParameter + :param logic: How to combine the field filters: \"and\" (default) requires every filter to match, \"or\" requires any of them to match. + :type logic: str + :param _request_timeout: timeout setting for this request. If one + number provided, it will be total request + timeout. It can also be a pair (tuple) of + (connection, read) timeouts. + :type _request_timeout: int, tuple(int, int), optional + :param _request_auth: set to override the auth_settings for an a single + request; this effectively ignores the + authentication in the spec for a single request. + :type _request_auth: dict, optional + :param _content_type: force content-type for the request. + :type _content_type: str, Optional + :param _headers: set to override the headers for a single + request; this effectively ignores the headers + in the spec for a single request. + :type _headers: dict, optional + :param _host_index: set to override the host_index for a single + request; this effectively ignores the host_index + in the spec for a single request. + :type _host_index: int, optional + :return: Returns the result object. + """ # noqa: E501 + + _param = self._jobs_aggregated_overview_get_serialize( + page=page, + page_size=page_size, + sort=sort, + owner_mail=owner_mail, + last_job_date=last_job_date, + last_job_name=last_job_name, + logic=logic, + _request_auth=_request_auth, + _content_type=_content_type, + _headers=_headers, + _host_index=_host_index + ) + + _response_types_map: Dict[str, Optional[str]] = { + '200': "QueryAggregatedJobsEndpointPagedResultOfOutput", + '400': "ValidationProblemDetails", + '401': None, + '403': None, + } + response_data = self.api_client.call_api( + *_param, + _request_timeout=_request_timeout + ) + response_data.read() + return self.api_client.response_deserialize( + response_data=response_data, + response_types_map=_response_types_map, + ).data + + + @validate_call + def jobs_aggregated_overview_get_with_http_info( + self, + page: Annotated[Optional[StrictInt], Field(description="The 1-based page index.")] = None, + page_size: Annotated[Optional[StrictInt], Field(description="The number of items per page.")] = None, + sort: Annotated[Optional[List[StrictStr]], Field(description="Sort fields. Prefix with - for descending order (e.g. -created_at).")] = None, + owner_mail: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by owner_mail.")] = None, + last_job_date: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by last_job_date.")] = None, + last_job_name: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by last_job_name.")] = None, + logic: Annotated[Optional[StrictStr], Field(description="How to combine the field filters: \"and\" (default) requires every filter to match, \"or\" requires any of them to match.")] = None, + _request_timeout: Union[ + None, + Annotated[StrictFloat, Field(gt=0)], + Tuple[ + Annotated[StrictFloat, Field(gt=0)], + Annotated[StrictFloat, Field(gt=0)] + ] + ] = None, + _request_auth: Optional[Dict[StrictStr, Any]] = None, + _content_type: Optional[StrictStr] = None, + _headers: Optional[Dict[StrictStr, Any]] = None, + _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, + ) -> ApiResponse[QueryAggregatedJobsEndpointPagedResultOfOutput]: + """Retrieves jobs aggregated by customer with total counts and most recent job information. + + + :param page: The 1-based page index. + :type page: int + :param page_size: The number of items per page. + :type page_size: int + :param sort: Sort fields. Prefix with - for descending order (e.g. -created_at). + :type sort: List[str] + :param owner_mail: Filter by owner_mail. + :type owner_mail: AudienceAudienceIdJobsGetJobIdParameter + :param last_job_date: Filter by last_job_date. + :type last_job_date: AudienceAudienceIdJobsGetJobIdParameter + :param last_job_name: Filter by last_job_name. + :type last_job_name: AudienceAudienceIdJobsGetJobIdParameter + :param logic: How to combine the field filters: \"and\" (default) requires every filter to match, \"or\" requires any of them to match. + :type logic: str + :param _request_timeout: timeout setting for this request. If one + number provided, it will be total request + timeout. It can also be a pair (tuple) of + (connection, read) timeouts. + :type _request_timeout: int, tuple(int, int), optional + :param _request_auth: set to override the auth_settings for an a single + request; this effectively ignores the + authentication in the spec for a single request. + :type _request_auth: dict, optional + :param _content_type: force content-type for the request. + :type _content_type: str, Optional + :param _headers: set to override the headers for a single + request; this effectively ignores the headers + in the spec for a single request. + :type _headers: dict, optional + :param _host_index: set to override the host_index for a single + request; this effectively ignores the host_index + in the spec for a single request. + :type _host_index: int, optional + :return: Returns the result object. + """ # noqa: E501 + + _param = self._jobs_aggregated_overview_get_serialize( + page=page, + page_size=page_size, + sort=sort, + owner_mail=owner_mail, + last_job_date=last_job_date, + last_job_name=last_job_name, + logic=logic, + _request_auth=_request_auth, + _content_type=_content_type, + _headers=_headers, + _host_index=_host_index + ) + + _response_types_map: Dict[str, Optional[str]] = { + '200': "QueryAggregatedJobsEndpointPagedResultOfOutput", + '400': "ValidationProblemDetails", + '401': None, + '403': None, + } + response_data = self.api_client.call_api( + *_param, + _request_timeout=_request_timeout + ) + response_data.read() + return self.api_client.response_deserialize( + response_data=response_data, + response_types_map=_response_types_map, + ) + + + @validate_call + def jobs_aggregated_overview_get_without_preload_content( + self, + page: Annotated[Optional[StrictInt], Field(description="The 1-based page index.")] = None, + page_size: Annotated[Optional[StrictInt], Field(description="The number of items per page.")] = None, + sort: Annotated[Optional[List[StrictStr]], Field(description="Sort fields. Prefix with - for descending order (e.g. -created_at).")] = None, + owner_mail: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by owner_mail.")] = None, + last_job_date: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by last_job_date.")] = None, + last_job_name: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by last_job_name.")] = None, + logic: Annotated[Optional[StrictStr], Field(description="How to combine the field filters: \"and\" (default) requires every filter to match, \"or\" requires any of them to match.")] = None, + _request_timeout: Union[ + None, + Annotated[StrictFloat, Field(gt=0)], + Tuple[ + Annotated[StrictFloat, Field(gt=0)], + Annotated[StrictFloat, Field(gt=0)] + ] + ] = None, + _request_auth: Optional[Dict[StrictStr, Any]] = None, + _content_type: Optional[StrictStr] = None, + _headers: Optional[Dict[StrictStr, Any]] = None, + _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, + ) -> RESTResponseType: + """Retrieves jobs aggregated by customer with total counts and most recent job information. + + + :param page: The 1-based page index. + :type page: int + :param page_size: The number of items per page. + :type page_size: int + :param sort: Sort fields. Prefix with - for descending order (e.g. -created_at). + :type sort: List[str] + :param owner_mail: Filter by owner_mail. + :type owner_mail: AudienceAudienceIdJobsGetJobIdParameter + :param last_job_date: Filter by last_job_date. + :type last_job_date: AudienceAudienceIdJobsGetJobIdParameter + :param last_job_name: Filter by last_job_name. + :type last_job_name: AudienceAudienceIdJobsGetJobIdParameter + :param logic: How to combine the field filters: \"and\" (default) requires every filter to match, \"or\" requires any of them to match. + :type logic: str + :param _request_timeout: timeout setting for this request. If one + number provided, it will be total request + timeout. It can also be a pair (tuple) of + (connection, read) timeouts. + :type _request_timeout: int, tuple(int, int), optional + :param _request_auth: set to override the auth_settings for an a single + request; this effectively ignores the + authentication in the spec for a single request. + :type _request_auth: dict, optional + :param _content_type: force content-type for the request. + :type _content_type: str, Optional + :param _headers: set to override the headers for a single + request; this effectively ignores the headers + in the spec for a single request. + :type _headers: dict, optional + :param _host_index: set to override the host_index for a single + request; this effectively ignores the host_index + in the spec for a single request. + :type _host_index: int, optional + :return: Returns the result object. + """ # noqa: E501 + + _param = self._jobs_aggregated_overview_get_serialize( + page=page, + page_size=page_size, + sort=sort, + owner_mail=owner_mail, + last_job_date=last_job_date, + last_job_name=last_job_name, + logic=logic, + _request_auth=_request_auth, + _content_type=_content_type, + _headers=_headers, + _host_index=_host_index + ) + + _response_types_map: Dict[str, Optional[str]] = { + '200': "QueryAggregatedJobsEndpointPagedResultOfOutput", + '400': "ValidationProblemDetails", + '401': None, + '403': None, + } + response_data = self.api_client.call_api( + *_param, + _request_timeout=_request_timeout + ) + return response_data.response + + + def _jobs_aggregated_overview_get_serialize( + self, + page, + page_size, + sort, + owner_mail, + last_job_date, + last_job_name, + logic, + _request_auth, + _content_type, + _headers, + _host_index, + ) -> RequestSerialized: + + _host = None + + _collection_formats: Dict[str, str] = { + 'sort': 'multi', + } + + _path_params: Dict[str, str] = {} + _query_params: List[Tuple[str, str]] = [] + _header_params: Dict[str, Optional[str]] = _headers or {} + _form_params: List[Tuple[str, str]] = [] + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} + _body_params: Optional[bytes] = None + + # process the path parameters + # process the query parameters + if page is not None: + + _query_params.append(('page', page)) + + if page_size is not None: + + _query_params.append(('page_size', page_size)) + + if sort is not None: + + _query_params.append(('sort', sort)) + + if owner_mail is not None: + _param_val = owner_mail + if hasattr(_param_val, 'to_dict'): + _param_val = _param_val.to_dict() + if isinstance(_param_val, dict): + for _k, _v in _param_val.items(): + if _v is None: + continue + if isinstance(_v, list): + # Explode list operator values (e.g. `in`) into repeated + # params: field[in]=a&field[in]=b. + for _item in _v: + _query_params.append(('owner_mail[' + _k + ']', _item)) + else: + _query_params.append(('owner_mail[' + _k + ']', _v)) + if last_job_date is not None: + _param_val = last_job_date + if hasattr(_param_val, 'to_dict'): + _param_val = _param_val.to_dict() + if isinstance(_param_val, dict): + for _k, _v in _param_val.items(): + if _v is None: + continue + if isinstance(_v, list): + # Explode list operator values (e.g. `in`) into repeated + # params: field[in]=a&field[in]=b. + for _item in _v: + _query_params.append(('last_job_date[' + _k + ']', _item)) + else: + _query_params.append(('last_job_date[' + _k + ']', _v)) + if last_job_name is not None: + _param_val = last_job_name + if hasattr(_param_val, 'to_dict'): + _param_val = _param_val.to_dict() + if isinstance(_param_val, dict): + for _k, _v in _param_val.items(): + if _v is None: + continue + if isinstance(_v, list): + # Explode list operator values (e.g. `in`) into repeated + # params: field[in]=a&field[in]=b. + for _item in _v: + _query_params.append(('last_job_name[' + _k + ']', _item)) + else: + _query_params.append(('last_job_name[' + _k + ']', _v)) + if logic is not None: + + _query_params.append(('logic', logic)) + + # process the header parameters + # process the form parameters + # process the body parameter + + + # set the HTTP header `Accept` + if 'Accept' not in _header_params: + _header_params['Accept'] = self.api_client.select_header_accept( + [ + 'application/json' + ] + ) + + + # authentication setting + _auth_settings: List[str] = [ + 'OpenIdConnect' + ] + + return self.api_client.param_serialize( + method='GET', + resource_path='/jobs/aggregated-overview', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -9435,14 +10700,18 @@ def _job_post_serialize( @validate_call - def jobs_aggregated_overview_get( + def jobs_get( self, page: Annotated[Optional[StrictInt], Field(description="The 1-based page index.")] = None, page_size: Annotated[Optional[StrictInt], Field(description="The number of items per page.")] = None, sort: Annotated[Optional[List[StrictStr]], Field(description="Sort fields. Prefix with - for descending order (e.g. -created_at).")] = None, + id: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by id.")] = None, + name: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by name.")] = None, + job_definition_id: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by job_definition_id.")] = None, + audience_id: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by audience_id.")] = None, + state: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by state.")] = None, owner_mail: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by owner_mail.")] = None, - last_job_date: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by last_job_date.")] = None, - last_job_name: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by last_job_name.")] = None, + created_at: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by created_at.")] = None, logic: Annotated[Optional[StrictStr], Field(description="How to combine the field filters: \"and\" (default) requires every filter to match, \"or\" requires any of them to match.")] = None, _request_timeout: Union[ None, @@ -9456,8 +10725,8 @@ def jobs_aggregated_overview_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, - ) -> QueryAggregatedJobsEndpointPagedResultOfOutput: - """Retrieves jobs aggregated by customer with total counts and most recent job information. + ) -> QueryJobsEndpointPagedResultOfOutput: + """Queries jobs visible to the caller. :param page: The 1-based page index. @@ -9466,12 +10735,20 @@ def jobs_aggregated_overview_get( :type page_size: int :param sort: Sort fields. Prefix with - for descending order (e.g. -created_at). :type sort: List[str] + :param id: Filter by id. + :type id: AudienceAudienceIdJobsGetJobIdParameter + :param name: Filter by name. + :type name: AudienceAudienceIdJobsGetJobIdParameter + :param job_definition_id: Filter by job_definition_id. + :type job_definition_id: AudienceAudienceIdJobsGetJobIdParameter + :param audience_id: Filter by audience_id. + :type audience_id: AudienceAudienceIdJobsGetJobIdParameter + :param state: Filter by state. + :type state: AudienceAudienceIdJobsGetJobIdParameter :param owner_mail: Filter by owner_mail. :type owner_mail: AudienceAudienceIdJobsGetJobIdParameter - :param last_job_date: Filter by last_job_date. - :type last_job_date: AudienceAudienceIdJobsGetJobIdParameter - :param last_job_name: Filter by last_job_name. - :type last_job_name: AudienceAudienceIdJobsGetJobIdParameter + :param created_at: Filter by created_at. + :type created_at: AudienceAudienceIdJobsGetJobIdParameter :param logic: How to combine the field filters: \"and\" (default) requires every filter to match, \"or\" requires any of them to match. :type logic: str :param _request_timeout: timeout setting for this request. If one @@ -9496,13 +10773,17 @@ def jobs_aggregated_overview_get( :return: Returns the result object. """ # noqa: E501 - _param = self._jobs_aggregated_overview_get_serialize( + _param = self._jobs_get_serialize( page=page, page_size=page_size, sort=sort, + id=id, + name=name, + job_definition_id=job_definition_id, + audience_id=audience_id, + state=state, owner_mail=owner_mail, - last_job_date=last_job_date, - last_job_name=last_job_name, + created_at=created_at, logic=logic, _request_auth=_request_auth, _content_type=_content_type, @@ -9511,7 +10792,7 @@ def jobs_aggregated_overview_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "QueryAggregatedJobsEndpointPagedResultOfOutput", + '200': "QueryJobsEndpointPagedResultOfOutput", '400': "ValidationProblemDetails", '401': None, '403': None, @@ -9528,14 +10809,18 @@ def jobs_aggregated_overview_get( @validate_call - def jobs_aggregated_overview_get_with_http_info( + def jobs_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="The 1-based page index.")] = None, page_size: Annotated[Optional[StrictInt], Field(description="The number of items per page.")] = None, sort: Annotated[Optional[List[StrictStr]], Field(description="Sort fields. Prefix with - for descending order (e.g. -created_at).")] = None, + id: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by id.")] = None, + name: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by name.")] = None, + job_definition_id: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by job_definition_id.")] = None, + audience_id: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by audience_id.")] = None, + state: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by state.")] = None, owner_mail: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by owner_mail.")] = None, - last_job_date: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by last_job_date.")] = None, - last_job_name: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by last_job_name.")] = None, + created_at: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by created_at.")] = None, logic: Annotated[Optional[StrictStr], Field(description="How to combine the field filters: \"and\" (default) requires every filter to match, \"or\" requires any of them to match.")] = None, _request_timeout: Union[ None, @@ -9549,8 +10834,8 @@ def jobs_aggregated_overview_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, - ) -> ApiResponse[QueryAggregatedJobsEndpointPagedResultOfOutput]: - """Retrieves jobs aggregated by customer with total counts and most recent job information. + ) -> ApiResponse[QueryJobsEndpointPagedResultOfOutput]: + """Queries jobs visible to the caller. :param page: The 1-based page index. @@ -9559,12 +10844,20 @@ def jobs_aggregated_overview_get_with_http_info( :type page_size: int :param sort: Sort fields. Prefix with - for descending order (e.g. -created_at). :type sort: List[str] + :param id: Filter by id. + :type id: AudienceAudienceIdJobsGetJobIdParameter + :param name: Filter by name. + :type name: AudienceAudienceIdJobsGetJobIdParameter + :param job_definition_id: Filter by job_definition_id. + :type job_definition_id: AudienceAudienceIdJobsGetJobIdParameter + :param audience_id: Filter by audience_id. + :type audience_id: AudienceAudienceIdJobsGetJobIdParameter + :param state: Filter by state. + :type state: AudienceAudienceIdJobsGetJobIdParameter :param owner_mail: Filter by owner_mail. :type owner_mail: AudienceAudienceIdJobsGetJobIdParameter - :param last_job_date: Filter by last_job_date. - :type last_job_date: AudienceAudienceIdJobsGetJobIdParameter - :param last_job_name: Filter by last_job_name. - :type last_job_name: AudienceAudienceIdJobsGetJobIdParameter + :param created_at: Filter by created_at. + :type created_at: AudienceAudienceIdJobsGetJobIdParameter :param logic: How to combine the field filters: \"and\" (default) requires every filter to match, \"or\" requires any of them to match. :type logic: str :param _request_timeout: timeout setting for this request. If one @@ -9589,13 +10882,17 @@ def jobs_aggregated_overview_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._jobs_aggregated_overview_get_serialize( + _param = self._jobs_get_serialize( page=page, page_size=page_size, sort=sort, + id=id, + name=name, + job_definition_id=job_definition_id, + audience_id=audience_id, + state=state, owner_mail=owner_mail, - last_job_date=last_job_date, - last_job_name=last_job_name, + created_at=created_at, logic=logic, _request_auth=_request_auth, _content_type=_content_type, @@ -9604,7 +10901,7 @@ def jobs_aggregated_overview_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "QueryAggregatedJobsEndpointPagedResultOfOutput", + '200': "QueryJobsEndpointPagedResultOfOutput", '400': "ValidationProblemDetails", '401': None, '403': None, @@ -9621,14 +10918,18 @@ def jobs_aggregated_overview_get_with_http_info( @validate_call - def jobs_aggregated_overview_get_without_preload_content( + def jobs_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="The 1-based page index.")] = None, page_size: Annotated[Optional[StrictInt], Field(description="The number of items per page.")] = None, sort: Annotated[Optional[List[StrictStr]], Field(description="Sort fields. Prefix with - for descending order (e.g. -created_at).")] = None, + id: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by id.")] = None, + name: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by name.")] = None, + job_definition_id: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by job_definition_id.")] = None, + audience_id: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by audience_id.")] = None, + state: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by state.")] = None, owner_mail: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by owner_mail.")] = None, - last_job_date: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by last_job_date.")] = None, - last_job_name: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by last_job_name.")] = None, + created_at: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by created_at.")] = None, logic: Annotated[Optional[StrictStr], Field(description="How to combine the field filters: \"and\" (default) requires every filter to match, \"or\" requires any of them to match.")] = None, _request_timeout: Union[ None, @@ -9643,7 +10944,7 @@ def jobs_aggregated_overview_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> RESTResponseType: - """Retrieves jobs aggregated by customer with total counts and most recent job information. + """Queries jobs visible to the caller. :param page: The 1-based page index. @@ -9652,12 +10953,20 @@ def jobs_aggregated_overview_get_without_preload_content( :type page_size: int :param sort: Sort fields. Prefix with - for descending order (e.g. -created_at). :type sort: List[str] + :param id: Filter by id. + :type id: AudienceAudienceIdJobsGetJobIdParameter + :param name: Filter by name. + :type name: AudienceAudienceIdJobsGetJobIdParameter + :param job_definition_id: Filter by job_definition_id. + :type job_definition_id: AudienceAudienceIdJobsGetJobIdParameter + :param audience_id: Filter by audience_id. + :type audience_id: AudienceAudienceIdJobsGetJobIdParameter + :param state: Filter by state. + :type state: AudienceAudienceIdJobsGetJobIdParameter :param owner_mail: Filter by owner_mail. :type owner_mail: AudienceAudienceIdJobsGetJobIdParameter - :param last_job_date: Filter by last_job_date. - :type last_job_date: AudienceAudienceIdJobsGetJobIdParameter - :param last_job_name: Filter by last_job_name. - :type last_job_name: AudienceAudienceIdJobsGetJobIdParameter + :param created_at: Filter by created_at. + :type created_at: AudienceAudienceIdJobsGetJobIdParameter :param logic: How to combine the field filters: \"and\" (default) requires every filter to match, \"or\" requires any of them to match. :type logic: str :param _request_timeout: timeout setting for this request. If one @@ -9682,13 +10991,17 @@ def jobs_aggregated_overview_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._jobs_aggregated_overview_get_serialize( + _param = self._jobs_get_serialize( page=page, page_size=page_size, sort=sort, + id=id, + name=name, + job_definition_id=job_definition_id, + audience_id=audience_id, + state=state, owner_mail=owner_mail, - last_job_date=last_job_date, - last_job_name=last_job_name, + created_at=created_at, logic=logic, _request_auth=_request_auth, _content_type=_content_type, @@ -9697,7 +11010,7 @@ def jobs_aggregated_overview_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "QueryAggregatedJobsEndpointPagedResultOfOutput", + '200': "QueryJobsEndpointPagedResultOfOutput", '400': "ValidationProblemDetails", '401': None, '403': None, @@ -9709,14 +11022,18 @@ def jobs_aggregated_overview_get_without_preload_content( return response_data.response - def _jobs_aggregated_overview_get_serialize( + def _jobs_get_serialize( self, page, page_size, sort, + id, + name, + job_definition_id, + audience_id, + state, owner_mail, - last_job_date, - last_job_name, + created_at, logic, _request_auth, _content_type, @@ -9753,8 +11070,8 @@ def _jobs_aggregated_overview_get_serialize( _query_params.append(('sort', sort)) - if owner_mail is not None: - _param_val = owner_mail + if id is not None: + _param_val = id if hasattr(_param_val, 'to_dict'): _param_val = _param_val.to_dict() if isinstance(_param_val, dict): @@ -9765,11 +11082,11 @@ def _jobs_aggregated_overview_get_serialize( # Explode list operator values (e.g. `in`) into repeated # params: field[in]=a&field[in]=b. for _item in _v: - _query_params.append(('owner_mail[' + _k + ']', _item)) + _query_params.append(('id[' + _k + ']', _item)) else: - _query_params.append(('owner_mail[' + _k + ']', _v)) - if last_job_date is not None: - _param_val = last_job_date + _query_params.append(('id[' + _k + ']', _v)) + if name is not None: + _param_val = name if hasattr(_param_val, 'to_dict'): _param_val = _param_val.to_dict() if isinstance(_param_val, dict): @@ -9780,11 +11097,11 @@ def _jobs_aggregated_overview_get_serialize( # Explode list operator values (e.g. `in`) into repeated # params: field[in]=a&field[in]=b. for _item in _v: - _query_params.append(('last_job_date[' + _k + ']', _item)) + _query_params.append(('name[' + _k + ']', _item)) else: - _query_params.append(('last_job_date[' + _k + ']', _v)) - if last_job_name is not None: - _param_val = last_job_name + _query_params.append(('name[' + _k + ']', _v)) + if job_definition_id is not None: + _param_val = job_definition_id if hasattr(_param_val, 'to_dict'): _param_val = _param_val.to_dict() if isinstance(_param_val, dict): @@ -9795,9 +11112,69 @@ def _jobs_aggregated_overview_get_serialize( # Explode list operator values (e.g. `in`) into repeated # params: field[in]=a&field[in]=b. for _item in _v: - _query_params.append(('last_job_name[' + _k + ']', _item)) + _query_params.append(('job_definition_id[' + _k + ']', _item)) else: - _query_params.append(('last_job_name[' + _k + ']', _v)) + _query_params.append(('job_definition_id[' + _k + ']', _v)) + if audience_id is not None: + _param_val = audience_id + if hasattr(_param_val, 'to_dict'): + _param_val = _param_val.to_dict() + if isinstance(_param_val, dict): + for _k, _v in _param_val.items(): + if _v is None: + continue + if isinstance(_v, list): + # Explode list operator values (e.g. `in`) into repeated + # params: field[in]=a&field[in]=b. + for _item in _v: + _query_params.append(('audience_id[' + _k + ']', _item)) + else: + _query_params.append(('audience_id[' + _k + ']', _v)) + if state is not None: + _param_val = state + if hasattr(_param_val, 'to_dict'): + _param_val = _param_val.to_dict() + if isinstance(_param_val, dict): + for _k, _v in _param_val.items(): + if _v is None: + continue + if isinstance(_v, list): + # Explode list operator values (e.g. `in`) into repeated + # params: field[in]=a&field[in]=b. + for _item in _v: + _query_params.append(('state[' + _k + ']', _item)) + else: + _query_params.append(('state[' + _k + ']', _v)) + if owner_mail is not None: + _param_val = owner_mail + if hasattr(_param_val, 'to_dict'): + _param_val = _param_val.to_dict() + if isinstance(_param_val, dict): + for _k, _v in _param_val.items(): + if _v is None: + continue + if isinstance(_v, list): + # Explode list operator values (e.g. `in`) into repeated + # params: field[in]=a&field[in]=b. + for _item in _v: + _query_params.append(('owner_mail[' + _k + ']', _item)) + else: + _query_params.append(('owner_mail[' + _k + ']', _v)) + if created_at is not None: + _param_val = created_at + if hasattr(_param_val, 'to_dict'): + _param_val = _param_val.to_dict() + if isinstance(_param_val, dict): + for _k, _v in _param_val.items(): + if _v is None: + continue + if isinstance(_v, list): + # Explode list operator values (e.g. `in`) into repeated + # params: field[in]=a&field[in]=b. + for _item in _v: + _query_params.append(('created_at[' + _k + ']', _item)) + else: + _query_params.append(('created_at[' + _k + ']', _v)) if logic is not None: _query_params.append(('logic', logic)) @@ -9823,7 +11200,7 @@ def _jobs_aggregated_overview_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/jobs/aggregated-overview', + resource_path='/jobs', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -9840,7 +11217,7 @@ def _jobs_aggregated_overview_get_serialize( @validate_call - def jobs_get( + def jobs_shared_get( self, page: Annotated[Optional[StrictInt], Field(description="The 1-based page index.")] = None, page_size: Annotated[Optional[StrictInt], Field(description="The number of items per page.")] = None, @@ -9865,8 +11242,8 @@ def jobs_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, - ) -> QueryJobsEndpointPagedResultOfOutput: - """Queries jobs visible to the caller. + ) -> QuerySharedJobsEndpointPagedResultOfOutput: + """Queries the jobs another organization has shared with the caller. :param page: The 1-based page index. @@ -9913,7 +11290,7 @@ def jobs_get( :return: Returns the result object. """ # noqa: E501 - _param = self._jobs_get_serialize( + _param = self._jobs_shared_get_serialize( page=page, page_size=page_size, sort=sort, @@ -9932,7 +11309,7 @@ def jobs_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "QueryJobsEndpointPagedResultOfOutput", + '200': "QuerySharedJobsEndpointPagedResultOfOutput", '400': "ValidationProblemDetails", '401': None, '403': None, @@ -9949,7 +11326,7 @@ def jobs_get( @validate_call - def jobs_get_with_http_info( + def jobs_shared_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="The 1-based page index.")] = None, page_size: Annotated[Optional[StrictInt], Field(description="The number of items per page.")] = None, @@ -9974,8 +11351,8 @@ def jobs_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, - ) -> ApiResponse[QueryJobsEndpointPagedResultOfOutput]: - """Queries jobs visible to the caller. + ) -> ApiResponse[QuerySharedJobsEndpointPagedResultOfOutput]: + """Queries the jobs another organization has shared with the caller. :param page: The 1-based page index. @@ -10022,7 +11399,7 @@ def jobs_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._jobs_get_serialize( + _param = self._jobs_shared_get_serialize( page=page, page_size=page_size, sort=sort, @@ -10041,7 +11418,7 @@ def jobs_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "QueryJobsEndpointPagedResultOfOutput", + '200': "QuerySharedJobsEndpointPagedResultOfOutput", '400': "ValidationProblemDetails", '401': None, '403': None, @@ -10058,7 +11435,7 @@ def jobs_get_with_http_info( @validate_call - def jobs_get_without_preload_content( + def jobs_shared_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="The 1-based page index.")] = None, page_size: Annotated[Optional[StrictInt], Field(description="The number of items per page.")] = None, @@ -10084,7 +11461,7 @@ def jobs_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> RESTResponseType: - """Queries jobs visible to the caller. + """Queries the jobs another organization has shared with the caller. :param page: The 1-based page index. @@ -10131,7 +11508,7 @@ def jobs_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._jobs_get_serialize( + _param = self._jobs_shared_get_serialize( page=page, page_size=page_size, sort=sort, @@ -10150,7 +11527,7 @@ def jobs_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "QueryJobsEndpointPagedResultOfOutput", + '200': "QuerySharedJobsEndpointPagedResultOfOutput", '400': "ValidationProblemDetails", '401': None, '403': None, @@ -10162,7 +11539,7 @@ def jobs_get_without_preload_content( return response_data.response - def _jobs_get_serialize( + def _jobs_shared_get_serialize( self, page, page_size, @@ -10340,7 +11717,7 @@ def _jobs_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/jobs', + resource_path='/jobs/shared', path_params=_path_params, query_params=_query_params, header_params=_header_params, diff --git a/src/rapidata/api_client/api/leaderboard_api.py b/src/rapidata/api_client/api/leaderboard_api.py index b71e34629..15e4e9a89 100644 --- a/src/rapidata/api_client/api/leaderboard_api.py +++ b/src/rapidata/api_client/api/leaderboard_api.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/api/newsletter_api.py b/src/rapidata/api_client/api/newsletter_api.py index c96d30b5e..773c10364 100644 --- a/src/rapidata/api_client/api/newsletter_api.py +++ b/src/rapidata/api_client/api/newsletter_api.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/api/order_api.py b/src/rapidata/api_client/api/order_api.py index e5033b674..8160b5134 100644 --- a/src/rapidata/api_client/api/order_api.py +++ b/src/rapidata/api_client/api/order_api.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/api/organization_api.py b/src/rapidata/api_client/api/organization_api.py index 2187f0e47..d444a62e7 100644 --- a/src/rapidata/api_client/api/organization_api.py +++ b/src/rapidata/api_client/api/organization_api.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/api/owner_tier_override_api.py b/src/rapidata/api_client/api/owner_tier_override_api.py index 3a8a7a070..5dadbbe4d 100644 --- a/src/rapidata/api_client/api/owner_tier_override_api.py +++ b/src/rapidata/api_client/api/owner_tier_override_api.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/api/participant_api.py b/src/rapidata/api_client/api/participant_api.py index 1cd64647a..5b51439f0 100644 --- a/src/rapidata/api_client/api/participant_api.py +++ b/src/rapidata/api_client/api/participant_api.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/api/payment_api.py b/src/rapidata/api_client/api/payment_api.py index 2870e004a..16968385e 100644 --- a/src/rapidata/api_client/api/payment_api.py +++ b/src/rapidata/api_client/api/payment_api.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/api/platform_api.py b/src/rapidata/api_client/api/platform_api.py index 82133b925..e8a950eda 100644 --- a/src/rapidata/api_client/api/platform_api.py +++ b/src/rapidata/api_client/api/platform_api.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/api/prompt_api.py b/src/rapidata/api_client/api/prompt_api.py index 21cf4ff0b..ed8000cba 100644 --- a/src/rapidata/api_client/api/prompt_api.py +++ b/src/rapidata/api_client/api/prompt_api.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/api/prompt_embedding_map_api.py b/src/rapidata/api_client/api/prompt_embedding_map_api.py index 7828c32f4..4559b87e3 100644 --- a/src/rapidata/api_client/api/prompt_embedding_map_api.py +++ b/src/rapidata/api_client/api/prompt_embedding_map_api.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/api/ranking_flow_api.py b/src/rapidata/api_client/api/ranking_flow_api.py index 2597e8e3e..3e338ffbb 100644 --- a/src/rapidata/api_client/api/ranking_flow_api.py +++ b/src/rapidata/api_client/api/ranking_flow_api.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/api/ranking_flow_item_api.py b/src/rapidata/api_client/api/ranking_flow_item_api.py index 207e48773..31fc21788 100644 --- a/src/rapidata/api_client/api/ranking_flow_item_api.py +++ b/src/rapidata/api_client/api/ranking_flow_item_api.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/api/rapid_api.py b/src/rapidata/api_client/api/rapid_api.py index c50acc80e..19a804612 100644 --- a/src/rapidata/api_client/api/rapid_api.py +++ b/src/rapidata/api_client/api/rapid_api.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/api/rapidata_identity_api_api.py b/src/rapidata/api_client/api/rapidata_identity_api_api.py index b3b54b986..20697b245 100644 --- a/src/rapidata/api_client/api/rapidata_identity_api_api.py +++ b/src/rapidata/api_client/api/rapidata_identity_api_api.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/api/reconciliation_api.py b/src/rapidata/api_client/api/reconciliation_api.py index 1c3f2a0fd..fdff97fdf 100644 --- a/src/rapidata/api_client/api/reconciliation_api.py +++ b/src/rapidata/api_client/api/reconciliation_api.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/api/replicate_api.py b/src/rapidata/api_client/api/replicate_api.py index 8320dfc29..c87dae329 100644 --- a/src/rapidata/api_client/api/replicate_api.py +++ b/src/rapidata/api_client/api/replicate_api.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/api/sample_api.py b/src/rapidata/api_client/api/sample_api.py index ccb63ad5f..2d0dadc60 100644 --- a/src/rapidata/api_client/api/sample_api.py +++ b/src/rapidata/api_client/api/sample_api.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/api/sample_generation_api.py b/src/rapidata/api_client/api/sample_generation_api.py index e4494497d..d0fabce81 100644 --- a/src/rapidata/api_client/api/sample_generation_api.py +++ b/src/rapidata/api_client/api/sample_generation_api.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/api/settings_api.py b/src/rapidata/api_client/api/settings_api.py index 849707ef6..cbc8affb7 100644 --- a/src/rapidata/api_client/api/settings_api.py +++ b/src/rapidata/api_client/api/settings_api.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/api/signal_api.py b/src/rapidata/api_client/api/signal_api.py index 60ef9bbea..8316624da 100644 --- a/src/rapidata/api_client/api/signal_api.py +++ b/src/rapidata/api_client/api/signal_api.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/api/survey_api.py b/src/rapidata/api_client/api/survey_api.py index 8bad828d1..6777156ec 100644 --- a/src/rapidata/api_client/api/survey_api.py +++ b/src/rapidata/api_client/api/survey_api.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/api/translation_api.py b/src/rapidata/api_client/api/translation_api.py index 87c23d56c..d3ec488eb 100644 --- a/src/rapidata/api_client/api/translation_api.py +++ b/src/rapidata/api_client/api/translation_api.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/api/user_rapid_api.py b/src/rapidata/api_client/api/user_rapid_api.py index 0a65a7fa1..17fa6f552 100644 --- a/src/rapidata/api_client/api/user_rapid_api.py +++ b/src/rapidata/api_client/api/user_rapid_api.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/api/validation_feedback_api.py b/src/rapidata/api_client/api/validation_feedback_api.py index a3978ffbf..9b3f156ba 100644 --- a/src/rapidata/api_client/api/validation_feedback_api.py +++ b/src/rapidata/api_client/api/validation_feedback_api.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/api/validation_set_api.py b/src/rapidata/api_client/api/validation_set_api.py index a6d24ee75..12944d539 100644 --- a/src/rapidata/api_client/api/validation_set_api.py +++ b/src/rapidata/api_client/api/validation_set_api.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/api/volume_discount_api.py b/src/rapidata/api_client/api/volume_discount_api.py index 8169d9062..bb5e6b9d6 100644 --- a/src/rapidata/api_client/api/volume_discount_api.py +++ b/src/rapidata/api_client/api/volume_discount_api.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/api_client.py b/src/rapidata/api_client/api_client.py index 2f97abf48..bb562ed75 100644 --- a/src/rapidata/api_client/api_client.py +++ b/src/rapidata/api_client/api_client.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/configuration.py b/src/rapidata/api_client/configuration.py index 22ff4b46f..9efc8902c 100644 --- a/src/rapidata/api_client/configuration.py +++ b/src/rapidata/api_client/configuration.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. @@ -383,7 +383,7 @@ def to_debug_report(self): return "Python SDK Debug Report:\n"\ "OS: {env}\n"\ "Python Version: {pyversion}\n"\ - "Version of the API: 2026.08.21.0757-4bc4250\n"\ + "Version of the API: 2026.08.21.1305-2bf435d\n"\ "SDK Package Version: 1.0.0".\ format(env=sys.platform, pyversion=sys.version) diff --git a/src/rapidata/api_client/exceptions.py b/src/rapidata/api_client/exceptions.py index 82444a6aa..61857ba55 100644 --- a/src/rapidata/api_client/exceptions.py +++ b/src/rapidata/api_client/exceptions.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/__init__.py b/src/rapidata/api_client/models/__init__.py index 6e00eb4f4..94faf37de 100644 --- a/src/rapidata/api_client/models/__init__.py +++ b/src/rapidata/api_client/models/__init__.py @@ -6,7 +6,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/accept_org_invitation_endpoint_input.py b/src/rapidata/api_client/models/accept_org_invitation_endpoint_input.py index f8743c275..46de3a9af 100644 --- a/src/rapidata/api_client/models/accept_org_invitation_endpoint_input.py +++ b/src/rapidata/api_client/models/accept_org_invitation_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/accept_org_invitation_endpoint_output.py b/src/rapidata/api_client/models/accept_org_invitation_endpoint_output.py index 93fd47077..88f6de48c 100644 --- a/src/rapidata/api_client/models/accept_org_invitation_endpoint_output.py +++ b/src/rapidata/api_client/models/accept_org_invitation_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/add_example_to_audience_endpoint_input.py b/src/rapidata/api_client/models/add_example_to_audience_endpoint_input.py index 7b6e86ad3..357e88ca3 100644 --- a/src/rapidata/api_client/models/add_example_to_audience_endpoint_input.py +++ b/src/rapidata/api_client/models/add_example_to_audience_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/add_example_to_audience_endpoint_output.py b/src/rapidata/api_client/models/add_example_to_audience_endpoint_output.py index 18535a10d..b33d6fb2b 100644 --- a/src/rapidata/api_client/models/add_example_to_audience_endpoint_output.py +++ b/src/rapidata/api_client/models/add_example_to_audience_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/add_user_response_endpoint_input.py b/src/rapidata/api_client/models/add_user_response_endpoint_input.py index 582dc0037..89780c1ca 100644 --- a/src/rapidata/api_client/models/add_user_response_endpoint_input.py +++ b/src/rapidata/api_client/models/add_user_response_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/add_user_response_endpoint_output.py b/src/rapidata/api_client/models/add_user_response_endpoint_output.py index cc37dab88..f2676010f 100644 --- a/src/rapidata/api_client/models/add_user_response_endpoint_output.py +++ b/src/rapidata/api_client/models/add_user_response_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/add_validation_rapid_endpoint_input.py b/src/rapidata/api_client/models/add_validation_rapid_endpoint_input.py index 9b23ca047..fee8fb8f9 100644 --- a/src/rapidata/api_client/models/add_validation_rapid_endpoint_input.py +++ b/src/rapidata/api_client/models/add_validation_rapid_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/age_user_filter_age_group.py b/src/rapidata/api_client/models/age_user_filter_age_group.py index 97ee4ce0a..c7de8a3ec 100644 --- a/src/rapidata/api_client/models/age_user_filter_age_group.py +++ b/src/rapidata/api_client/models/age_user_filter_age_group.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/aggregator_type.py b/src/rapidata/api_client/models/aggregator_type.py index cac51b47c..d36d096f7 100644 --- a/src/rapidata/api_client/models/aggregator_type.py +++ b/src/rapidata/api_client/models/aggregator_type.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/attach_category_rapid_blueprint_category.py b/src/rapidata/api_client/models/attach_category_rapid_blueprint_category.py index 1852b3ed6..b91843f4b 100644 --- a/src/rapidata/api_client/models/attach_category_rapid_blueprint_category.py +++ b/src/rapidata/api_client/models/attach_category_rapid_blueprint_category.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/attach_category_rapid_category.py b/src/rapidata/api_client/models/attach_category_rapid_category.py index 1d3b040f6..d2bc113c9 100644 --- a/src/rapidata/api_client/models/attach_category_rapid_category.py +++ b/src/rapidata/api_client/models/attach_category_rapid_category.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/audience_audience_id_jobs_get_job_id_parameter.py b/src/rapidata/api_client/models/audience_audience_id_jobs_get_job_id_parameter.py index 54abdee2a..474795278 100644 --- a/src/rapidata/api_client/models/audience_audience_id_jobs_get_job_id_parameter.py +++ b/src/rapidata/api_client/models/audience_audience_id_jobs_get_job_id_parameter.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/audience_boost.py b/src/rapidata/api_client/models/audience_boost.py index 93e2a846f..48eb0f193 100644 --- a/src/rapidata/api_client/models/audience_boost.py +++ b/src/rapidata/api_client/models/audience_boost.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/audience_boost2.py b/src/rapidata/api_client/models/audience_boost2.py index f08eeeca7..ce9632b3a 100644 --- a/src/rapidata/api_client/models/audience_boost2.py +++ b/src/rapidata/api_client/models/audience_boost2.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/audience_inactivity_sync_phase.py b/src/rapidata/api_client/models/audience_inactivity_sync_phase.py index da9ba87fb..d24f3e54c 100644 --- a/src/rapidata/api_client/models/audience_inactivity_sync_phase.py +++ b/src/rapidata/api_client/models/audience_inactivity_sync_phase.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/audience_inactivity_sync_state.py b/src/rapidata/api_client/models/audience_inactivity_sync_state.py index 72a84f3cd..ffdd9b29c 100644 --- a/src/rapidata/api_client/models/audience_inactivity_sync_state.py +++ b/src/rapidata/api_client/models/audience_inactivity_sync_state.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/audience_job_state.py b/src/rapidata/api_client/models/audience_job_state.py index b44b4c4ba..b6506998d 100644 --- a/src/rapidata/api_client/models/audience_job_state.py +++ b/src/rapidata/api_client/models/audience_job_state.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/audience_state_recalculation_phase.py b/src/rapidata/api_client/models/audience_state_recalculation_phase.py index 53b66325f..c125aad4a 100644 --- a/src/rapidata/api_client/models/audience_state_recalculation_phase.py +++ b/src/rapidata/api_client/models/audience_state_recalculation_phase.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/audience_state_recalculation_state.py b/src/rapidata/api_client/models/audience_state_recalculation_state.py index 416ccae49..645de8ce8 100644 --- a/src/rapidata/api_client/models/audience_state_recalculation_state.py +++ b/src/rapidata/api_client/models/audience_state_recalculation_state.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/audience_status.py b/src/rapidata/api_client/models/audience_status.py index 8ef0affdf..eb933403d 100644 --- a/src/rapidata/api_client/models/audience_status.py +++ b/src/rapidata/api_client/models/audience_status.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/authorization_relations_bidder.py b/src/rapidata/api_client/models/authorization_relations_bidder.py index 90b69abdb..d5bd8cce3 100644 --- a/src/rapidata/api_client/models/authorization_relations_bidder.py +++ b/src/rapidata/api_client/models/authorization_relations_bidder.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/authorization_relations_external_app.py b/src/rapidata/api_client/models/authorization_relations_external_app.py index 558d1c432..c868388fd 100644 --- a/src/rapidata/api_client/models/authorization_relations_external_app.py +++ b/src/rapidata/api_client/models/authorization_relations_external_app.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/authorization_relations_platform.py b/src/rapidata/api_client/models/authorization_relations_platform.py index 0cadd92e9..805c0afa9 100644 --- a/src/rapidata/api_client/models/authorization_relations_platform.py +++ b/src/rapidata/api_client/models/authorization_relations_platform.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/authorization_scope.py b/src/rapidata/api_client/models/authorization_scope.py index 6d116c750..9361be74d 100644 --- a/src/rapidata/api_client/models/authorization_scope.py +++ b/src/rapidata/api_client/models/authorization_scope.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/batch_upload_status.py b/src/rapidata/api_client/models/batch_upload_status.py index 1ffc15053..6746e2fcb 100644 --- a/src/rapidata/api_client/models/batch_upload_status.py +++ b/src/rapidata/api_client/models/batch_upload_status.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/batch_upload_url_status.py b/src/rapidata/api_client/models/batch_upload_url_status.py index 3b616be2e..5cf2dc46e 100644 --- a/src/rapidata/api_client/models/batch_upload_url_status.py +++ b/src/rapidata/api_client/models/batch_upload_url_status.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/benchmark_demographic_dimension.py b/src/rapidata/api_client/models/benchmark_demographic_dimension.py index e98a7906b..4085d529a 100644 --- a/src/rapidata/api_client/models/benchmark_demographic_dimension.py +++ b/src/rapidata/api_client/models/benchmark_demographic_dimension.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/billing_period_status.py b/src/rapidata/api_client/models/billing_period_status.py index 44fb5389e..08f6dc1dd 100644 --- a/src/rapidata/api_client/models/billing_period_status.py +++ b/src/rapidata/api_client/models/billing_period_status.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/billing_summary_mode.py b/src/rapidata/api_client/models/billing_summary_mode.py index 9731fbcac..5e7ef77bc 100644 --- a/src/rapidata/api_client/models/billing_summary_mode.py +++ b/src/rapidata/api_client/models/billing_summary_mode.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/boost_leaderboard_endpoint_input.py b/src/rapidata/api_client/models/boost_leaderboard_endpoint_input.py index 9bac97319..18eddfb4d 100644 --- a/src/rapidata/api_client/models/boost_leaderboard_endpoint_input.py +++ b/src/rapidata/api_client/models/boost_leaderboard_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/boost_level.py b/src/rapidata/api_client/models/boost_level.py index 3f54381b3..3a334439b 100644 --- a/src/rapidata/api_client/models/boost_level.py +++ b/src/rapidata/api_client/models/boost_level.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/boost_mode.py b/src/rapidata/api_client/models/boost_mode.py index b0937e0bb..3370f2a26 100644 --- a/src/rapidata/api_client/models/boost_mode.py +++ b/src/rapidata/api_client/models/boost_mode.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/boost_status.py b/src/rapidata/api_client/models/boost_status.py index 8cd5088b9..1c760af22 100644 --- a/src/rapidata/api_client/models/boost_status.py +++ b/src/rapidata/api_client/models/boost_status.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/boosting_control_mode.py b/src/rapidata/api_client/models/boosting_control_mode.py index f519436fe..adc16680c 100644 --- a/src/rapidata/api_client/models/boosting_control_mode.py +++ b/src/rapidata/api_client/models/boosting_control_mode.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/boosting_profile.py b/src/rapidata/api_client/models/boosting_profile.py index 7c99d1846..c75cd16ef 100644 --- a/src/rapidata/api_client/models/boosting_profile.py +++ b/src/rapidata/api_client/models/boosting_profile.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/bounding_box_result_box.py b/src/rapidata/api_client/models/bounding_box_result_box.py index a9f36fc62..4b61c292a 100644 --- a/src/rapidata/api_client/models/bounding_box_result_box.py +++ b/src/rapidata/api_client/models/bounding_box_result_box.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/bulk_billing_period_close_state.py b/src/rapidata/api_client/models/bulk_billing_period_close_state.py index 61515e8af..5a6d109f8 100644 --- a/src/rapidata/api_client/models/bulk_billing_period_close_state.py +++ b/src/rapidata/api_client/models/bulk_billing_period_close_state.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/bulk_close_billing_periods_endpoint_input.py b/src/rapidata/api_client/models/bulk_close_billing_periods_endpoint_input.py index 91629eb8a..d71dc2572 100644 --- a/src/rapidata/api_client/models/bulk_close_billing_periods_endpoint_input.py +++ b/src/rapidata/api_client/models/bulk_close_billing_periods_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/bulk_close_billing_periods_endpoint_output.py b/src/rapidata/api_client/models/bulk_close_billing_periods_endpoint_output.py index bfa39d67a..f31543525 100644 --- a/src/rapidata/api_client/models/bulk_close_billing_periods_endpoint_output.py +++ b/src/rapidata/api_client/models/bulk_close_billing_periods_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/bulk_reconciliation_dispatch_state.py b/src/rapidata/api_client/models/bulk_reconciliation_dispatch_state.py index c835daed3..638b0d51b 100644 --- a/src/rapidata/api_client/models/bulk_reconciliation_dispatch_state.py +++ b/src/rapidata/api_client/models/bulk_reconciliation_dispatch_state.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/campaign_status.py b/src/rapidata/api_client/models/campaign_status.py index 2c90635fe..dd3947ca9 100644 --- a/src/rapidata/api_client/models/campaign_status.py +++ b/src/rapidata/api_client/models/campaign_status.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/capability.py b/src/rapidata/api_client/models/capability.py index f4d93d69a..b2bdea117 100644 --- a/src/rapidata/api_client/models/capability.py +++ b/src/rapidata/api_client/models/capability.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/change_audience_owner_endpoint_input.py b/src/rapidata/api_client/models/change_audience_owner_endpoint_input.py index a9776f0df..1129fb7ec 100644 --- a/src/rapidata/api_client/models/change_audience_owner_endpoint_input.py +++ b/src/rapidata/api_client/models/change_audience_owner_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/change_boost_endpoint_input.py b/src/rapidata/api_client/models/change_boost_endpoint_input.py index c56817dbc..ecbce7866 100644 --- a/src/rapidata/api_client/models/change_boost_endpoint_input.py +++ b/src/rapidata/api_client/models/change_boost_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/change_org_member_role_endpoint_input.py b/src/rapidata/api_client/models/change_org_member_role_endpoint_input.py index 3f8b32097..cd0427173 100644 --- a/src/rapidata/api_client/models/change_org_member_role_endpoint_input.py +++ b/src/rapidata/api_client/models/change_org_member_role_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/classify_payload.py b/src/rapidata/api_client/models/classify_payload.py index 7252d6090..03f80ffbd 100644 --- a/src/rapidata/api_client/models/classify_payload.py +++ b/src/rapidata/api_client/models/classify_payload.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/classify_payload_category.py b/src/rapidata/api_client/models/classify_payload_category.py index fd6bacfa0..cfcf7e92b 100644 --- a/src/rapidata/api_client/models/classify_payload_category.py +++ b/src/rapidata/api_client/models/classify_payload_category.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/client.py b/src/rapidata/api_client/models/client.py index 70cfecf01..012d59784 100644 --- a/src/rapidata/api_client/models/client.py +++ b/src/rapidata/api_client/models/client.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/clone_job_definition_endpoint_input.py b/src/rapidata/api_client/models/clone_job_definition_endpoint_input.py index 6df55bbcf..b65855668 100644 --- a/src/rapidata/api_client/models/clone_job_definition_endpoint_input.py +++ b/src/rapidata/api_client/models/clone_job_definition_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/clone_job_definition_endpoint_output.py b/src/rapidata/api_client/models/clone_job_definition_endpoint_output.py index 9d75f27d4..cab807e39 100644 --- a/src/rapidata/api_client/models/clone_job_definition_endpoint_output.py +++ b/src/rapidata/api_client/models/clone_job_definition_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/clone_order_endpoint_input.py b/src/rapidata/api_client/models/clone_order_endpoint_input.py index a05b358a6..ba1544409 100644 --- a/src/rapidata/api_client/models/clone_order_endpoint_input.py +++ b/src/rapidata/api_client/models/clone_order_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/clone_order_endpoint_output.py b/src/rapidata/api_client/models/clone_order_endpoint_output.py index ef9075315..7379875d8 100644 --- a/src/rapidata/api_client/models/clone_order_endpoint_output.py +++ b/src/rapidata/api_client/models/clone_order_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/close_billing_period_endpoint_input.py b/src/rapidata/api_client/models/close_billing_period_endpoint_input.py index 9c62091a0..35ee58ecf 100644 --- a/src/rapidata/api_client/models/close_billing_period_endpoint_input.py +++ b/src/rapidata/api_client/models/close_billing_period_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/close_billing_period_endpoint_output.py b/src/rapidata/api_client/models/close_billing_period_endpoint_output.py index 3e45bd884..f5559f146 100644 --- a/src/rapidata/api_client/models/close_billing_period_endpoint_output.py +++ b/src/rapidata/api_client/models/close_billing_period_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/comparison_operator.py b/src/rapidata/api_client/models/comparison_operator.py index c9b94a266..21a3d2458 100644 --- a/src/rapidata/api_client/models/comparison_operator.py +++ b/src/rapidata/api_client/models/comparison_operator.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/compression_override.py b/src/rapidata/api_client/models/compression_override.py index bb0a07888..aa09c0aca 100644 --- a/src/rapidata/api_client/models/compression_override.py +++ b/src/rapidata/api_client/models/compression_override.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/conditional_validation_selection_validation_chance.py b/src/rapidata/api_client/models/conditional_validation_selection_validation_chance.py index f0d207c73..c0ef35a73 100644 --- a/src/rapidata/api_client/models/conditional_validation_selection_validation_chance.py +++ b/src/rapidata/api_client/models/conditional_validation_selection_validation_chance.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/confidence_interval.py b/src/rapidata/api_client/models/confidence_interval.py index 8a5deddd9..79d26a370 100644 --- a/src/rapidata/api_client/models/confidence_interval.py +++ b/src/rapidata/api_client/models/confidence_interval.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_audience_endpoint_input.py b/src/rapidata/api_client/models/create_audience_endpoint_input.py index 11899ca29..5de7d4a3e 100644 --- a/src/rapidata/api_client/models/create_audience_endpoint_input.py +++ b/src/rapidata/api_client/models/create_audience_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_audience_endpoint_output.py b/src/rapidata/api_client/models/create_audience_endpoint_output.py index 0d2b1fa5a..312114de6 100644 --- a/src/rapidata/api_client/models/create_audience_endpoint_output.py +++ b/src/rapidata/api_client/models/create_audience_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_batch_upload_endpoint_input.py b/src/rapidata/api_client/models/create_batch_upload_endpoint_input.py index baf772c7a..45eb942fe 100644 --- a/src/rapidata/api_client/models/create_batch_upload_endpoint_input.py +++ b/src/rapidata/api_client/models/create_batch_upload_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_batch_upload_endpoint_output.py b/src/rapidata/api_client/models/create_batch_upload_endpoint_output.py index 2d625f172..a726b8ff6 100644 --- a/src/rapidata/api_client/models/create_batch_upload_endpoint_output.py +++ b/src/rapidata/api_client/models/create_batch_upload_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_benchmark_endpoint_input.py b/src/rapidata/api_client/models/create_benchmark_endpoint_input.py index 550f75b8d..0afc56c2e 100644 --- a/src/rapidata/api_client/models/create_benchmark_endpoint_input.py +++ b/src/rapidata/api_client/models/create_benchmark_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_benchmark_endpoint_output.py b/src/rapidata/api_client/models/create_benchmark_endpoint_output.py index aa105da0c..30e78a745 100644 --- a/src/rapidata/api_client/models/create_benchmark_endpoint_output.py +++ b/src/rapidata/api_client/models/create_benchmark_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_benchmark_participant_endpoint_input.py b/src/rapidata/api_client/models/create_benchmark_participant_endpoint_input.py index df15f28e1..098832293 100644 --- a/src/rapidata/api_client/models/create_benchmark_participant_endpoint_input.py +++ b/src/rapidata/api_client/models/create_benchmark_participant_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_benchmark_participant_endpoint_output.py b/src/rapidata/api_client/models/create_benchmark_participant_endpoint_output.py index e12cacbd6..96e94f0f9 100644 --- a/src/rapidata/api_client/models/create_benchmark_participant_endpoint_output.py +++ b/src/rapidata/api_client/models/create_benchmark_participant_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_billing_item_billing_setting_endpoint_input.py b/src/rapidata/api_client/models/create_billing_item_billing_setting_endpoint_input.py index 1340acc3d..c050e126f 100644 --- a/src/rapidata/api_client/models/create_billing_item_billing_setting_endpoint_input.py +++ b/src/rapidata/api_client/models/create_billing_item_billing_setting_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_bridge_token_endpoint_output.py b/src/rapidata/api_client/models/create_bridge_token_endpoint_output.py index 10d37c52c..decb2405b 100644 --- a/src/rapidata/api_client/models/create_bridge_token_endpoint_output.py +++ b/src/rapidata/api_client/models/create_bridge_token_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_checkout_endpoint_output.py b/src/rapidata/api_client/models/create_checkout_endpoint_output.py index 2b78f9082..94764f7f0 100644 --- a/src/rapidata/api_client/models/create_checkout_endpoint_output.py +++ b/src/rapidata/api_client/models/create_checkout_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_client_endpoint_input.py b/src/rapidata/api_client/models/create_client_endpoint_input.py index cf475aff0..11fd4bee6 100644 --- a/src/rapidata/api_client/models/create_client_endpoint_input.py +++ b/src/rapidata/api_client/models/create_client_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_client_endpoint_output.py b/src/rapidata/api_client/models/create_client_endpoint_output.py index 9b6f3c89d..5e31cc743 100644 --- a/src/rapidata/api_client/models/create_client_endpoint_output.py +++ b/src/rapidata/api_client/models/create_client_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_complex_order_endpoint_input.py b/src/rapidata/api_client/models/create_complex_order_endpoint_input.py index 6f37f0691..fd8cc381c 100644 --- a/src/rapidata/api_client/models/create_complex_order_endpoint_input.py +++ b/src/rapidata/api_client/models/create_complex_order_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_complex_order_endpoint_output.py b/src/rapidata/api_client/models/create_complex_order_endpoint_output.py index d6938879c..6379f892b 100644 --- a/src/rapidata/api_client/models/create_complex_order_endpoint_output.py +++ b/src/rapidata/api_client/models/create_complex_order_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_datapoint_endpoint_input.py b/src/rapidata/api_client/models/create_datapoint_endpoint_input.py index 9abcaa2b9..68c5d204c 100644 --- a/src/rapidata/api_client/models/create_datapoint_endpoint_input.py +++ b/src/rapidata/api_client/models/create_datapoint_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_datapoint_endpoint_output.py b/src/rapidata/api_client/models/create_datapoint_endpoint_output.py index 14f645694..2d2e92418 100644 --- a/src/rapidata/api_client/models/create_datapoint_endpoint_output.py +++ b/src/rapidata/api_client/models/create_datapoint_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_dataset_endpoint_input.py b/src/rapidata/api_client/models/create_dataset_endpoint_input.py index b6f12d478..6296ac9e6 100644 --- a/src/rapidata/api_client/models/create_dataset_endpoint_input.py +++ b/src/rapidata/api_client/models/create_dataset_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_dataset_endpoint_output.py b/src/rapidata/api_client/models/create_dataset_endpoint_output.py index 9598db0ea..d5d5a523b 100644 --- a/src/rapidata/api_client/models/create_dataset_endpoint_output.py +++ b/src/rapidata/api_client/models/create_dataset_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_dataset_group_endpoint_input.py b/src/rapidata/api_client/models/create_dataset_group_endpoint_input.py index 36cd1e31f..8c366b470 100644 --- a/src/rapidata/api_client/models/create_dataset_group_endpoint_input.py +++ b/src/rapidata/api_client/models/create_dataset_group_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_demographic_rapid_endpoint_input.py b/src/rapidata/api_client/models/create_demographic_rapid_endpoint_input.py index 7cc694537..7a4dfa69d 100644 --- a/src/rapidata/api_client/models/create_demographic_rapid_endpoint_input.py +++ b/src/rapidata/api_client/models/create_demographic_rapid_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_demographic_rapid_endpoint_output.py b/src/rapidata/api_client/models/create_demographic_rapid_endpoint_output.py index 2f87f2e59..078fdf2bd 100644 --- a/src/rapidata/api_client/models/create_demographic_rapid_endpoint_output.py +++ b/src/rapidata/api_client/models/create_demographic_rapid_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_external_service_price_endpoint_input.py b/src/rapidata/api_client/models/create_external_service_price_endpoint_input.py index 1f4f4bc3a..c439c38e9 100644 --- a/src/rapidata/api_client/models/create_external_service_price_endpoint_input.py +++ b/src/rapidata/api_client/models/create_external_service_price_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_filtered_audience_endpoint_input.py b/src/rapidata/api_client/models/create_filtered_audience_endpoint_input.py index f3bdf3dfd..038531f83 100644 --- a/src/rapidata/api_client/models/create_filtered_audience_endpoint_input.py +++ b/src/rapidata/api_client/models/create_filtered_audience_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_filtered_audience_endpoint_output.py b/src/rapidata/api_client/models/create_filtered_audience_endpoint_output.py index d66e7d3cc..0d628c25c 100644 --- a/src/rapidata/api_client/models/create_filtered_audience_endpoint_output.py +++ b/src/rapidata/api_client/models/create_filtered_audience_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_flow_endpoint_input.py b/src/rapidata/api_client/models/create_flow_endpoint_input.py index 25ca1519d..34f16b1f2 100644 --- a/src/rapidata/api_client/models/create_flow_endpoint_input.py +++ b/src/rapidata/api_client/models/create_flow_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_flow_endpoint_output.py b/src/rapidata/api_client/models/create_flow_endpoint_output.py index 46dfc15cc..e83b466c7 100644 --- a/src/rapidata/api_client/models/create_flow_endpoint_output.py +++ b/src/rapidata/api_client/models/create_flow_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_flow_item_endpoint_input.py b/src/rapidata/api_client/models/create_flow_item_endpoint_input.py index c852e5fa0..019fbdb01 100644 --- a/src/rapidata/api_client/models/create_flow_item_endpoint_input.py +++ b/src/rapidata/api_client/models/create_flow_item_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_flow_item_endpoint_output.py b/src/rapidata/api_client/models/create_flow_item_endpoint_output.py index 7a387cf33..16b643b77 100644 --- a/src/rapidata/api_client/models/create_flow_item_endpoint_output.py +++ b/src/rapidata/api_client/models/create_flow_item_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_global_billing_setting_endpoint_input.py b/src/rapidata/api_client/models/create_global_billing_setting_endpoint_input.py index 1eda21bc4..6448a8a36 100644 --- a/src/rapidata/api_client/models/create_global_billing_setting_endpoint_input.py +++ b/src/rapidata/api_client/models/create_global_billing_setting_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_global_text_endpoint_input.py b/src/rapidata/api_client/models/create_global_text_endpoint_input.py index 14173a956..7581462c4 100644 --- a/src/rapidata/api_client/models/create_global_text_endpoint_input.py +++ b/src/rapidata/api_client/models/create_global_text_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_global_text_endpoint_output.py b/src/rapidata/api_client/models/create_global_text_endpoint_output.py index 401847b24..abf4ca998 100644 --- a/src/rapidata/api_client/models/create_global_text_endpoint_output.py +++ b/src/rapidata/api_client/models/create_global_text_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_invoice_endpoint_input.py b/src/rapidata/api_client/models/create_invoice_endpoint_input.py index 51a5c6f07..ba7b2505e 100644 --- a/src/rapidata/api_client/models/create_invoice_endpoint_input.py +++ b/src/rapidata/api_client/models/create_invoice_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_invoice_endpoint_output.py b/src/rapidata/api_client/models/create_invoice_endpoint_output.py index 52e814d90..6beff34d8 100644 --- a/src/rapidata/api_client/models/create_invoice_endpoint_output.py +++ b/src/rapidata/api_client/models/create_invoice_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_job_definition_endpoint_input.py b/src/rapidata/api_client/models/create_job_definition_endpoint_input.py index 18759aff3..ce10f5cb0 100644 --- a/src/rapidata/api_client/models/create_job_definition_endpoint_input.py +++ b/src/rapidata/api_client/models/create_job_definition_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_job_definition_endpoint_output.py b/src/rapidata/api_client/models/create_job_definition_endpoint_output.py index 778471493..990585007 100644 --- a/src/rapidata/api_client/models/create_job_definition_endpoint_output.py +++ b/src/rapidata/api_client/models/create_job_definition_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_job_endpoint_cost_warning.py b/src/rapidata/api_client/models/create_job_endpoint_cost_warning.py index 66611777b..85a1544de 100644 --- a/src/rapidata/api_client/models/create_job_endpoint_cost_warning.py +++ b/src/rapidata/api_client/models/create_job_endpoint_cost_warning.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_job_endpoint_input.py b/src/rapidata/api_client/models/create_job_endpoint_input.py index 39a0ae592..1cd7a952e 100644 --- a/src/rapidata/api_client/models/create_job_endpoint_input.py +++ b/src/rapidata/api_client/models/create_job_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_job_endpoint_output.py b/src/rapidata/api_client/models/create_job_endpoint_output.py index ff74a4e94..2d5ebf85e 100644 --- a/src/rapidata/api_client/models/create_job_endpoint_output.py +++ b/src/rapidata/api_client/models/create_job_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_job_revision_endpoint_input.py b/src/rapidata/api_client/models/create_job_revision_endpoint_input.py index b2b46fa56..a602c8364 100644 --- a/src/rapidata/api_client/models/create_job_revision_endpoint_input.py +++ b/src/rapidata/api_client/models/create_job_revision_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_job_revision_endpoint_output.py b/src/rapidata/api_client/models/create_job_revision_endpoint_output.py index b305e0a91..7f5fca31e 100644 --- a/src/rapidata/api_client/models/create_job_revision_endpoint_output.py +++ b/src/rapidata/api_client/models/create_job_revision_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_job_share_endpoint_input.py b/src/rapidata/api_client/models/create_job_share_endpoint_input.py new file mode 100644 index 000000000..05b2ec956 --- /dev/null +++ b/src/rapidata/api_client/models/create_job_share_endpoint_input.py @@ -0,0 +1,91 @@ +# coding: utf-8 + +""" + Rapidata Asset API + + The API for the Rapidata Asset service + + The version of the OpenAPI document: 2026.08.21.1305-2bf435d + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + +from __future__ import annotations +import pprint +import re # noqa: F401 +import json + +from pydantic import BaseModel, ConfigDict, Field, StrictStr +from typing import Any, ClassVar, Dict, List +from rapidata.api_client.models.job_share_level import JobShareLevel +from pydantic import ValidationError +from rapidata.api_client.lazy_model import LazyValidatedModel +from typing import Optional, Set +from typing_extensions import Self + +class CreateJobShareEndpointInput(LazyValidatedModel): + """ + CreateJobShareEndpointInput + """ # noqa: E501 + email: StrictStr = Field(description="The email of the account to share the job with.") + level: JobShareLevel = Field(description="The access level to grant.") + __properties: ClassVar[List[str]] = ["email", "level"] + + # model_config is inherited from LazyValidatedModel + + + def to_str(self) -> str: + """Returns the string representation of the model using alias""" + return pprint.pformat(self.model_dump(by_alias=True)) + + def to_json(self) -> str: + """Returns the JSON representation of the model using alias""" + # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead + return json.dumps(self.to_dict()) + + @classmethod + def from_json(cls, json_str: str) -> Optional[Self]: + """Create an instance of CreateJobShareEndpointInput from a JSON string""" + return cls.from_dict(json.loads(json_str)) + + def to_dict(self) -> Dict[str, Any]: + """Return the dictionary representation of the model using alias. + + This has the following differences from calling pydantic's + `self.model_dump(by_alias=True)`: + + * `None` is only added to the output dict for nullable fields that + were set at model initialization. Other fields with value `None` + are ignored. + """ + excluded_fields: Set[str] = set([ + ]) + + _dict = self.model_dump( + by_alias=True, + exclude=excluded_fields, + exclude_none=True, + ) + return _dict + + @classmethod + def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: + """Create an instance of CreateJobShareEndpointInput from a dict""" + if obj is None: + return None + + if not isinstance(obj, dict): + return cls.model_validate(obj) + + _data = { + "email": obj.get("email"), + "level": obj.get("level") + } + try: + _obj = cls.model_validate(_data) + except ValidationError as _val_error: + _obj = cls._lazy_construct(_data, _val_error) + return _obj + + diff --git a/src/rapidata/api_client/models/create_leaderboard_endpoint_input.py b/src/rapidata/api_client/models/create_leaderboard_endpoint_input.py index c277c1d6b..f46d32bb1 100644 --- a/src/rapidata/api_client/models/create_leaderboard_endpoint_input.py +++ b/src/rapidata/api_client/models/create_leaderboard_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_leaderboard_endpoint_output.py b/src/rapidata/api_client/models/create_leaderboard_endpoint_output.py index d8d77a3cb..e8fff27a1 100644 --- a/src/rapidata/api_client/models/create_leaderboard_endpoint_output.py +++ b/src/rapidata/api_client/models/create_leaderboard_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_leaderboard_participant_endpoint_input.py b/src/rapidata/api_client/models/create_leaderboard_participant_endpoint_input.py index 5f7a5123e..9f4a6bdf9 100644 --- a/src/rapidata/api_client/models/create_leaderboard_participant_endpoint_input.py +++ b/src/rapidata/api_client/models/create_leaderboard_participant_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_leaderboard_participant_endpoint_output.py b/src/rapidata/api_client/models/create_leaderboard_participant_endpoint_output.py index 0486ec897..ee8721836 100644 --- a/src/rapidata/api_client/models/create_leaderboard_participant_endpoint_output.py +++ b/src/rapidata/api_client/models/create_leaderboard_participant_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_manual_charge_endpoint_input.py b/src/rapidata/api_client/models/create_manual_charge_endpoint_input.py index bb2c9cc82..dc31bff2e 100644 --- a/src/rapidata/api_client/models/create_manual_charge_endpoint_input.py +++ b/src/rapidata/api_client/models/create_manual_charge_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_manual_charge_endpoint_output.py b/src/rapidata/api_client/models/create_manual_charge_endpoint_output.py index 1794107c1..9294f9476 100644 --- a/src/rapidata/api_client/models/create_manual_charge_endpoint_output.py +++ b/src/rapidata/api_client/models/create_manual_charge_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_order.py b/src/rapidata/api_client/models/create_order.py index e4240856c..e4e1d5287 100644 --- a/src/rapidata/api_client/models/create_order.py +++ b/src/rapidata/api_client/models/create_order.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_order_endpoint_output.py b/src/rapidata/api_client/models/create_order_endpoint_output.py index b824114c5..c3ccad4ff 100644 --- a/src/rapidata/api_client/models/create_order_endpoint_output.py +++ b/src/rapidata/api_client/models/create_order_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_organization_billing_setting_endpoint_input.py b/src/rapidata/api_client/models/create_organization_billing_setting_endpoint_input.py index d519e1914..f1fbb1d17 100644 --- a/src/rapidata/api_client/models/create_organization_billing_setting_endpoint_input.py +++ b/src/rapidata/api_client/models/create_organization_billing_setting_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_organization_endpoint_input.py b/src/rapidata/api_client/models/create_organization_endpoint_input.py index dcf6d33a6..8c7dc3428 100644 --- a/src/rapidata/api_client/models/create_organization_endpoint_input.py +++ b/src/rapidata/api_client/models/create_organization_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_organization_endpoint_output.py b/src/rapidata/api_client/models/create_organization_endpoint_output.py index 3b7829274..11002596f 100644 --- a/src/rapidata/api_client/models/create_organization_endpoint_output.py +++ b/src/rapidata/api_client/models/create_organization_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_owner_tier_override_endpoint_input.py b/src/rapidata/api_client/models/create_owner_tier_override_endpoint_input.py index 82d1db186..e96652bbc 100644 --- a/src/rapidata/api_client/models/create_owner_tier_override_endpoint_input.py +++ b/src/rapidata/api_client/models/create_owner_tier_override_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_owner_tier_override_endpoint_output.py b/src/rapidata/api_client/models/create_owner_tier_override_endpoint_output.py index 008512afd..d96d35fa4 100644 --- a/src/rapidata/api_client/models/create_owner_tier_override_endpoint_output.py +++ b/src/rapidata/api_client/models/create_owner_tier_override_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_program_campaign_endpoint_input.py b/src/rapidata/api_client/models/create_program_campaign_endpoint_input.py index 6326fe01e..ab26b429a 100644 --- a/src/rapidata/api_client/models/create_program_campaign_endpoint_input.py +++ b/src/rapidata/api_client/models/create_program_campaign_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_program_campaign_endpoint_output.py b/src/rapidata/api_client/models/create_program_campaign_endpoint_output.py index 3bfc36707..50e149a8e 100644 --- a/src/rapidata/api_client/models/create_program_campaign_endpoint_output.py +++ b/src/rapidata/api_client/models/create_program_campaign_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_prompt_embedding_map_endpoint_output.py b/src/rapidata/api_client/models/create_prompt_embedding_map_endpoint_output.py index e408a5cab..2cee12808 100644 --- a/src/rapidata/api_client/models/create_prompt_embedding_map_endpoint_output.py +++ b/src/rapidata/api_client/models/create_prompt_embedding_map_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_prompt_for_benchmark_endpoint_input.py b/src/rapidata/api_client/models/create_prompt_for_benchmark_endpoint_input.py index b3dc5474d..b457c5577 100644 --- a/src/rapidata/api_client/models/create_prompt_for_benchmark_endpoint_input.py +++ b/src/rapidata/api_client/models/create_prompt_for_benchmark_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_prompt_for_benchmark_endpoint_output.py b/src/rapidata/api_client/models/create_prompt_for_benchmark_endpoint_output.py index ad602640b..75f6142c3 100644 --- a/src/rapidata/api_client/models/create_prompt_for_benchmark_endpoint_output.py +++ b/src/rapidata/api_client/models/create_prompt_for_benchmark_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_prompt_for_leaderboard_endpoint_output.py b/src/rapidata/api_client/models/create_prompt_for_leaderboard_endpoint_output.py index 9b62a8fb4..f8a8e3d88 100644 --- a/src/rapidata/api_client/models/create_prompt_for_leaderboard_endpoint_output.py +++ b/src/rapidata/api_client/models/create_prompt_for_leaderboard_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_sample_endpoint_input.py b/src/rapidata/api_client/models/create_sample_endpoint_input.py index c835e742c..9548c4284 100644 --- a/src/rapidata/api_client/models/create_sample_endpoint_input.py +++ b/src/rapidata/api_client/models/create_sample_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_sample_endpoint_output.py b/src/rapidata/api_client/models/create_sample_endpoint_output.py index 3c12ddfa9..c2a4ec7bb 100644 --- a/src/rapidata/api_client/models/create_sample_endpoint_output.py +++ b/src/rapidata/api_client/models/create_sample_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_sample_generation_endpoint_input.py b/src/rapidata/api_client/models/create_sample_generation_endpoint_input.py index 48181b4df..351865a80 100644 --- a/src/rapidata/api_client/models/create_sample_generation_endpoint_input.py +++ b/src/rapidata/api_client/models/create_sample_generation_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_sample_generation_endpoint_output.py b/src/rapidata/api_client/models/create_sample_generation_endpoint_output.py index 3e09b076c..9cd307420 100644 --- a/src/rapidata/api_client/models/create_sample_generation_endpoint_output.py +++ b/src/rapidata/api_client/models/create_sample_generation_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_sample_new_endpoint_input.py b/src/rapidata/api_client/models/create_sample_new_endpoint_input.py index 60021c2a9..777f6789f 100644 --- a/src/rapidata/api_client/models/create_sample_new_endpoint_input.py +++ b/src/rapidata/api_client/models/create_sample_new_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_sample_new_endpoint_output.py b/src/rapidata/api_client/models/create_sample_new_endpoint_output.py index 6988cbd88..6a04bfcb6 100644 --- a/src/rapidata/api_client/models/create_sample_new_endpoint_output.py +++ b/src/rapidata/api_client/models/create_sample_new_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_signal_endpoint_input.py b/src/rapidata/api_client/models/create_signal_endpoint_input.py index f7198028e..b7cfbb746 100644 --- a/src/rapidata/api_client/models/create_signal_endpoint_input.py +++ b/src/rapidata/api_client/models/create_signal_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_signal_endpoint_output.py b/src/rapidata/api_client/models/create_signal_endpoint_output.py index 1ae483e4f..06f3c314d 100644 --- a/src/rapidata/api_client/models/create_signal_endpoint_output.py +++ b/src/rapidata/api_client/models/create_signal_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_top_up_endpoint_input.py b/src/rapidata/api_client/models/create_top_up_endpoint_input.py index 6b39c9815..1129bdccc 100644 --- a/src/rapidata/api_client/models/create_top_up_endpoint_input.py +++ b/src/rapidata/api_client/models/create_top_up_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_top_up_endpoint_output.py b/src/rapidata/api_client/models/create_top_up_endpoint_output.py index 796ae50c2..e3146fe78 100644 --- a/src/rapidata/api_client/models/create_top_up_endpoint_output.py +++ b/src/rapidata/api_client/models/create_top_up_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_unsupported_order_endpoint_input.py b/src/rapidata/api_client/models/create_unsupported_order_endpoint_input.py index ae10cf227..38a67d179 100644 --- a/src/rapidata/api_client/models/create_unsupported_order_endpoint_input.py +++ b/src/rapidata/api_client/models/create_unsupported_order_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_validation_feedback_endpoint_input.py b/src/rapidata/api_client/models/create_validation_feedback_endpoint_input.py index 4d5f370e8..03e23f183 100644 --- a/src/rapidata/api_client/models/create_validation_feedback_endpoint_input.py +++ b/src/rapidata/api_client/models/create_validation_feedback_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_validation_set_endpoint_input.py b/src/rapidata/api_client/models/create_validation_set_endpoint_input.py index c28b89f3b..74ee8cecd 100644 --- a/src/rapidata/api_client/models/create_validation_set_endpoint_input.py +++ b/src/rapidata/api_client/models/create_validation_set_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_validation_set_endpoint_output.py b/src/rapidata/api_client/models/create_validation_set_endpoint_output.py index 81deda89b..c16b947d6 100644 --- a/src/rapidata/api_client/models/create_validation_set_endpoint_output.py +++ b/src/rapidata/api_client/models/create_validation_set_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_volume_discount_endpoint_input.py b/src/rapidata/api_client/models/create_volume_discount_endpoint_input.py index 71a3f29f2..6a13d1851 100644 --- a/src/rapidata/api_client/models/create_volume_discount_endpoint_input.py +++ b/src/rapidata/api_client/models/create_volume_discount_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_volume_discount_endpoint_output.py b/src/rapidata/api_client/models/create_volume_discount_endpoint_output.py index da418daf0..aacddddd8 100644 --- a/src/rapidata/api_client/models/create_volume_discount_endpoint_output.py +++ b/src/rapidata/api_client/models/create_volume_discount_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/datapoint_state.py b/src/rapidata/api_client/models/datapoint_state.py index b51c97e83..27a848dc2 100644 --- a/src/rapidata/api_client/models/datapoint_state.py +++ b/src/rapidata/api_client/models/datapoint_state.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/definition_type.py b/src/rapidata/api_client/models/definition_type.py index 072831008..b8577023b 100644 --- a/src/rapidata/api_client/models/definition_type.py +++ b/src/rapidata/api_client/models/definition_type.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/delete_audience_example_endpoint_output.py b/src/rapidata/api_client/models/delete_audience_example_endpoint_output.py index 89c57a709..1f756cb75 100644 --- a/src/rapidata/api_client/models/delete_audience_example_endpoint_output.py +++ b/src/rapidata/api_client/models/delete_audience_example_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/device_type.py b/src/rapidata/api_client/models/device_type.py index 7bdf42fb8..3c393967c 100644 --- a/src/rapidata/api_client/models/device_type.py +++ b/src/rapidata/api_client/models/device_type.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/dynamic_client_registration_request.py b/src/rapidata/api_client/models/dynamic_client_registration_request.py index 664d5240d..658a6f8dc 100644 --- a/src/rapidata/api_client/models/dynamic_client_registration_request.py +++ b/src/rapidata/api_client/models/dynamic_client_registration_request.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/elo_config.py b/src/rapidata/api_client/models/elo_config.py index ebe9fbdc8..faba67003 100644 --- a/src/rapidata/api_client/models/elo_config.py +++ b/src/rapidata/api_client/models/elo_config.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/ensure_english_endpoint_input.py b/src/rapidata/api_client/models/ensure_english_endpoint_input.py index f43073ce8..752481f5c 100644 --- a/src/rapidata/api_client/models/ensure_english_endpoint_input.py +++ b/src/rapidata/api_client/models/ensure_english_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/ensure_english_endpoint_output.py b/src/rapidata/api_client/models/ensure_english_endpoint_output.py index 9067c7d7f..4db7a373a 100644 --- a/src/rapidata/api_client/models/ensure_english_endpoint_output.py +++ b/src/rapidata/api_client/models/ensure_english_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/example_box_shape.py b/src/rapidata/api_client/models/example_box_shape.py index d036cfb26..98d68cd21 100644 --- a/src/rapidata/api_client/models/example_box_shape.py +++ b/src/rapidata/api_client/models/example_box_shape.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/example_category.py b/src/rapidata/api_client/models/example_category.py index eb9918d14..73761ec18 100644 --- a/src/rapidata/api_client/models/example_category.py +++ b/src/rapidata/api_client/models/example_category.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/example_scrub_range.py b/src/rapidata/api_client/models/example_scrub_range.py index 2684ec694..a8a8e8404 100644 --- a/src/rapidata/api_client/models/example_scrub_range.py +++ b/src/rapidata/api_client/models/example_scrub_range.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/example_transcription_word.py b/src/rapidata/api_client/models/example_transcription_word.py index b975bb3d6..578e819d3 100644 --- a/src/rapidata/api_client/models/example_transcription_word.py +++ b/src/rapidata/api_client/models/example_transcription_word.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/example_visibility.py b/src/rapidata/api_client/models/example_visibility.py index d01f76245..05fdad2fb 100644 --- a/src/rapidata/api_client/models/example_visibility.py +++ b/src/rapidata/api_client/models/example_visibility.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/existing_asset_input.py b/src/rapidata/api_client/models/existing_asset_input.py index 6c97a63cf..89a8f182b 100644 --- a/src/rapidata/api_client/models/existing_asset_input.py +++ b/src/rapidata/api_client/models/existing_asset_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/external_app_id.py b/src/rapidata/api_client/models/external_app_id.py index 25b1d38cc..983c620ce 100644 --- a/src/rapidata/api_client/models/external_app_id.py +++ b/src/rapidata/api_client/models/external_app_id.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/external_service_kind.py b/src/rapidata/api_client/models/external_service_kind.py index 84e1480bf..551e72cdb 100644 --- a/src/rapidata/api_client/models/external_service_kind.py +++ b/src/rapidata/api_client/models/external_service_kind.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/feature_flag.py b/src/rapidata/api_client/models/feature_flag.py index 680683933..2a68d3ba0 100644 --- a/src/rapidata/api_client/models/feature_flag.py +++ b/src/rapidata/api_client/models/feature_flag.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/file_type.py b/src/rapidata/api_client/models/file_type.py index c15f094f7..45fb2e0ed 100644 --- a/src/rapidata/api_client/models/file_type.py +++ b/src/rapidata/api_client/models/file_type.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/flow_item_state.py b/src/rapidata/api_client/models/flow_item_state.py index 7825ee934..110dff06c 100644 --- a/src/rapidata/api_client/models/flow_item_state.py +++ b/src/rapidata/api_client/models/flow_item_state.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/flow_type.py b/src/rapidata/api_client/models/flow_type.py index fcfa7c070..52c152e3f 100644 --- a/src/rapidata/api_client/models/flow_type.py +++ b/src/rapidata/api_client/models/flow_type.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/fork_benchmark_endpoint_output.py b/src/rapidata/api_client/models/fork_benchmark_endpoint_output.py index 44359719a..353f0cec6 100644 --- a/src/rapidata/api_client/models/fork_benchmark_endpoint_output.py +++ b/src/rapidata/api_client/models/fork_benchmark_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/gender_user_filter_gender.py b/src/rapidata/api_client/models/gender_user_filter_gender.py index d80c05fa8..7b1cf8c75 100644 --- a/src/rapidata/api_client/models/gender_user_filter_gender.py +++ b/src/rapidata/api_client/models/gender_user_filter_gender.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_active_billing_period_overview_endpoint_output.py b/src/rapidata/api_client/models/get_active_billing_period_overview_endpoint_output.py index f2ef5e207..6171fc57d 100644 --- a/src/rapidata/api_client/models/get_active_billing_period_overview_endpoint_output.py +++ b/src/rapidata/api_client/models/get_active_billing_period_overview_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_all_global_texts_endpoint_output.py b/src/rapidata/api_client/models/get_all_global_texts_endpoint_output.py index 543dd7b6d..7ffcb62f2 100644 --- a/src/rapidata/api_client/models/get_all_global_texts_endpoint_output.py +++ b/src/rapidata/api_client/models/get_all_global_texts_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_all_global_texts_endpoint_output_item.py b/src/rapidata/api_client/models/get_all_global_texts_endpoint_output_item.py index 23f1a6ce7..0d4cfc3c3 100644 --- a/src/rapidata/api_client/models/get_all_global_texts_endpoint_output_item.py +++ b/src/rapidata/api_client/models/get_all_global_texts_endpoint_output_item.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_audience_by_id_endpoint_output.py b/src/rapidata/api_client/models/get_audience_by_id_endpoint_output.py index 82648b4ef..1a5547a2a 100644 --- a/src/rapidata/api_client/models/get_audience_by_id_endpoint_output.py +++ b/src/rapidata/api_client/models/get_audience_by_id_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_audience_inactivity_sync_by_id_endpoint_output.py b/src/rapidata/api_client/models/get_audience_inactivity_sync_by_id_endpoint_output.py index f59d8af23..1fa55767e 100644 --- a/src/rapidata/api_client/models/get_audience_inactivity_sync_by_id_endpoint_output.py +++ b/src/rapidata/api_client/models/get_audience_inactivity_sync_by_id_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_audience_state_recalculation_by_id_endpoint_output.py b/src/rapidata/api_client/models/get_audience_state_recalculation_by_id_endpoint_output.py index 9a98d2477..bca96e1f4 100644 --- a/src/rapidata/api_client/models/get_audience_state_recalculation_by_id_endpoint_output.py +++ b/src/rapidata/api_client/models/get_audience_state_recalculation_by_id_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_audience_user_state_metrics_result.py b/src/rapidata/api_client/models/get_audience_user_state_metrics_result.py index def0a4621..9338fa07d 100644 --- a/src/rapidata/api_client/models/get_audience_user_state_metrics_result.py +++ b/src/rapidata/api_client/models/get_audience_user_state_metrics_result.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_available_validation_sets_endpoint_output.py b/src/rapidata/api_client/models/get_available_validation_sets_endpoint_output.py index ca59fa2ae..96176940d 100644 --- a/src/rapidata/api_client/models/get_available_validation_sets_endpoint_output.py +++ b/src/rapidata/api_client/models/get_available_validation_sets_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_available_validation_sets_endpoint_validation_set_overview_output.py b/src/rapidata/api_client/models/get_available_validation_sets_endpoint_validation_set_overview_output.py index f807613c8..7706e5d28 100644 --- a/src/rapidata/api_client/models/get_available_validation_sets_endpoint_validation_set_overview_output.py +++ b/src/rapidata/api_client/models/get_available_validation_sets_endpoint_validation_set_overview_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_batch_upload_result_endpoint_output.py b/src/rapidata/api_client/models/get_batch_upload_result_endpoint_output.py index fb47fe099..00ca1a060 100644 --- a/src/rapidata/api_client/models/get_batch_upload_result_endpoint_output.py +++ b/src/rapidata/api_client/models/get_batch_upload_result_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_batch_upload_result_endpoint_url_output.py b/src/rapidata/api_client/models/get_batch_upload_result_endpoint_url_output.py index 5d9202edb..2698cd21a 100644 --- a/src/rapidata/api_client/models/get_batch_upload_result_endpoint_url_output.py +++ b/src/rapidata/api_client/models/get_batch_upload_result_endpoint_url_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_batch_upload_status_endpoint_output.py b/src/rapidata/api_client/models/get_batch_upload_status_endpoint_output.py index d69f35a4d..47944d63c 100644 --- a/src/rapidata/api_client/models/get_batch_upload_status_endpoint_output.py +++ b/src/rapidata/api_client/models/get_batch_upload_status_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_benchmark_by_id_endpoint_output.py b/src/rapidata/api_client/models/get_benchmark_by_id_endpoint_output.py index d0689c151..501db8e7e 100644 --- a/src/rapidata/api_client/models/get_benchmark_by_id_endpoint_output.py +++ b/src/rapidata/api_client/models/get_benchmark_by_id_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_benchmark_demographics_endpoint_output.py b/src/rapidata/api_client/models/get_benchmark_demographics_endpoint_output.py index a798a8a72..c3f903487 100644 --- a/src/rapidata/api_client/models/get_benchmark_demographics_endpoint_output.py +++ b/src/rapidata/api_client/models/get_benchmark_demographics_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_benchmark_demographics_endpoint_output_bucket.py b/src/rapidata/api_client/models/get_benchmark_demographics_endpoint_output_bucket.py index 459a08fb3..30ac34028 100644 --- a/src/rapidata/api_client/models/get_benchmark_demographics_endpoint_output_bucket.py +++ b/src/rapidata/api_client/models/get_benchmark_demographics_endpoint_output_bucket.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_benchmark_demographics_endpoint_output_dimension_set.py b/src/rapidata/api_client/models/get_benchmark_demographics_endpoint_output_dimension_set.py index 97e3ae32e..34cdacb51 100644 --- a/src/rapidata/api_client/models/get_benchmark_demographics_endpoint_output_dimension_set.py +++ b/src/rapidata/api_client/models/get_benchmark_demographics_endpoint_output_dimension_set.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_benchmark_hugging_face_sync_endpoint_output.py b/src/rapidata/api_client/models/get_benchmark_hugging_face_sync_endpoint_output.py index de9198bb4..f0152cd17 100644 --- a/src/rapidata/api_client/models/get_benchmark_hugging_face_sync_endpoint_output.py +++ b/src/rapidata/api_client/models/get_benchmark_hugging_face_sync_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_benchmark_hugging_face_sync_history_endpoint_output.py b/src/rapidata/api_client/models/get_benchmark_hugging_face_sync_history_endpoint_output.py index 872ea6e06..acbe7aa68 100644 --- a/src/rapidata/api_client/models/get_benchmark_hugging_face_sync_history_endpoint_output.py +++ b/src/rapidata/api_client/models/get_benchmark_hugging_face_sync_history_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_benchmark_hugging_face_sync_history_endpoint_paged_result_of_output.py b/src/rapidata/api_client/models/get_benchmark_hugging_face_sync_history_endpoint_paged_result_of_output.py index e66cad9c1..428a86360 100644 --- a/src/rapidata/api_client/models/get_benchmark_hugging_face_sync_history_endpoint_paged_result_of_output.py +++ b/src/rapidata/api_client/models/get_benchmark_hugging_face_sync_history_endpoint_paged_result_of_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_benchmark_matchup_breakdown_endpoint_output.py b/src/rapidata/api_client/models/get_benchmark_matchup_breakdown_endpoint_output.py index 40924fa01..f133da227 100644 --- a/src/rapidata/api_client/models/get_benchmark_matchup_breakdown_endpoint_output.py +++ b/src/rapidata/api_client/models/get_benchmark_matchup_breakdown_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_benchmark_matchup_breakdown_endpoint_paged_result_of_output.py b/src/rapidata/api_client/models/get_benchmark_matchup_breakdown_endpoint_paged_result_of_output.py index 916fa0dd7..a1b9dcf93 100644 --- a/src/rapidata/api_client/models/get_benchmark_matchup_breakdown_endpoint_paged_result_of_output.py +++ b/src/rapidata/api_client/models/get_benchmark_matchup_breakdown_endpoint_paged_result_of_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_benchmark_standings_breakdown_endpoint_output.py b/src/rapidata/api_client/models/get_benchmark_standings_breakdown_endpoint_output.py index ed32e8a4a..276c469a3 100644 --- a/src/rapidata/api_client/models/get_benchmark_standings_breakdown_endpoint_output.py +++ b/src/rapidata/api_client/models/get_benchmark_standings_breakdown_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_benchmark_standings_breakdown_endpoint_output_output_item.py b/src/rapidata/api_client/models/get_benchmark_standings_breakdown_endpoint_output_output_item.py index 78d826795..5476e7ec1 100644 --- a/src/rapidata/api_client/models/get_benchmark_standings_breakdown_endpoint_output_output_item.py +++ b/src/rapidata/api_client/models/get_benchmark_standings_breakdown_endpoint_output_output_item.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_benchmark_standings_breakdown_endpoint_output_segment.py b/src/rapidata/api_client/models/get_benchmark_standings_breakdown_endpoint_output_segment.py index dbcf0efe7..97c012c42 100644 --- a/src/rapidata/api_client/models/get_benchmark_standings_breakdown_endpoint_output_segment.py +++ b/src/rapidata/api_client/models/get_benchmark_standings_breakdown_endpoint_output_segment.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_benchmark_standings_by_tag_endpoint_output.py b/src/rapidata/api_client/models/get_benchmark_standings_by_tag_endpoint_output.py index 421e1432f..3a7009e1f 100644 --- a/src/rapidata/api_client/models/get_benchmark_standings_by_tag_endpoint_output.py +++ b/src/rapidata/api_client/models/get_benchmark_standings_by_tag_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_benchmark_standings_by_tag_endpoint_output_output_item.py b/src/rapidata/api_client/models/get_benchmark_standings_by_tag_endpoint_output_output_item.py index 28f18f719..fcbbd7431 100644 --- a/src/rapidata/api_client/models/get_benchmark_standings_by_tag_endpoint_output_output_item.py +++ b/src/rapidata/api_client/models/get_benchmark_standings_by_tag_endpoint_output_output_item.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_benchmark_standings_by_tag_endpoint_output_segment.py b/src/rapidata/api_client/models/get_benchmark_standings_by_tag_endpoint_output_segment.py index cdfbafb27..a2ef8769b 100644 --- a/src/rapidata/api_client/models/get_benchmark_standings_by_tag_endpoint_output_segment.py +++ b/src/rapidata/api_client/models/get_benchmark_standings_by_tag_endpoint_output_segment.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_benchmark_standings_by_tag_endpoint_output_segment_item.py b/src/rapidata/api_client/models/get_benchmark_standings_by_tag_endpoint_output_segment_item.py index 2108a64f0..cb457f4d0 100644 --- a/src/rapidata/api_client/models/get_benchmark_standings_by_tag_endpoint_output_segment_item.py +++ b/src/rapidata/api_client/models/get_benchmark_standings_by_tag_endpoint_output_segment_item.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_bidder_relation_members_endpoint_cursor_paged_result_of_output.py b/src/rapidata/api_client/models/get_bidder_relation_members_endpoint_cursor_paged_result_of_output.py index ced6a9ef2..96e5acb3f 100644 --- a/src/rapidata/api_client/models/get_bidder_relation_members_endpoint_cursor_paged_result_of_output.py +++ b/src/rapidata/api_client/models/get_bidder_relation_members_endpoint_cursor_paged_result_of_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_bidder_relation_members_endpoint_output.py b/src/rapidata/api_client/models/get_bidder_relation_members_endpoint_output.py index c46503229..2d41539a6 100644 --- a/src/rapidata/api_client/models/get_bidder_relation_members_endpoint_output.py +++ b/src/rapidata/api_client/models/get_bidder_relation_members_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_billing_period_overview_endpoint_output.py b/src/rapidata/api_client/models/get_billing_period_overview_endpoint_output.py index 5c0e12781..a40af578b 100644 --- a/src/rapidata/api_client/models/get_billing_period_overview_endpoint_output.py +++ b/src/rapidata/api_client/models/get_billing_period_overview_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_billing_settings_timeline_endpoint_output.py b/src/rapidata/api_client/models/get_billing_settings_timeline_endpoint_output.py index 1e21fc41e..6e8ab89d6 100644 --- a/src/rapidata/api_client/models/get_billing_settings_timeline_endpoint_output.py +++ b/src/rapidata/api_client/models/get_billing_settings_timeline_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_billing_settings_timeline_endpoint_output_interval.py b/src/rapidata/api_client/models/get_billing_settings_timeline_endpoint_output_interval.py index 2de4c301b..f6ad5f15a 100644 --- a/src/rapidata/api_client/models/get_billing_settings_timeline_endpoint_output_interval.py +++ b/src/rapidata/api_client/models/get_billing_settings_timeline_endpoint_output_interval.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_billing_summary_endpoint_output.py b/src/rapidata/api_client/models/get_billing_summary_endpoint_output.py index 6a214d774..46027c296 100644 --- a/src/rapidata/api_client/models/get_billing_summary_endpoint_output.py +++ b/src/rapidata/api_client/models/get_billing_summary_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_boost_insights_endpoint_audience_output.py b/src/rapidata/api_client/models/get_boost_insights_endpoint_audience_output.py index 9df4a8d11..886304f11 100644 --- a/src/rapidata/api_client/models/get_boost_insights_endpoint_audience_output.py +++ b/src/rapidata/api_client/models/get_boost_insights_endpoint_audience_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_boost_insights_endpoint_contributor_output.py b/src/rapidata/api_client/models/get_boost_insights_endpoint_contributor_output.py index 9af0e4c96..d0a8e3487 100644 --- a/src/rapidata/api_client/models/get_boost_insights_endpoint_contributor_output.py +++ b/src/rapidata/api_client/models/get_boost_insights_endpoint_contributor_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_boost_insights_endpoint_global_boost_output.py b/src/rapidata/api_client/models/get_boost_insights_endpoint_global_boost_output.py index 5d3c1cad1..fed474c30 100644 --- a/src/rapidata/api_client/models/get_boost_insights_endpoint_global_boost_output.py +++ b/src/rapidata/api_client/models/get_boost_insights_endpoint_global_boost_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_boost_insights_endpoint_language_boost_output.py b/src/rapidata/api_client/models/get_boost_insights_endpoint_language_boost_output.py index 455e3688d..5aade3a0f 100644 --- a/src/rapidata/api_client/models/get_boost_insights_endpoint_language_boost_output.py +++ b/src/rapidata/api_client/models/get_boost_insights_endpoint_language_boost_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_boost_insights_endpoint_level_contributor_output.py b/src/rapidata/api_client/models/get_boost_insights_endpoint_level_contributor_output.py index bac68ca69..a3e095ffa 100644 --- a/src/rapidata/api_client/models/get_boost_insights_endpoint_level_contributor_output.py +++ b/src/rapidata/api_client/models/get_boost_insights_endpoint_level_contributor_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_boost_insights_endpoint_leveled_audience_output.py b/src/rapidata/api_client/models/get_boost_insights_endpoint_leveled_audience_output.py index d59c52f6c..302751406 100644 --- a/src/rapidata/api_client/models/get_boost_insights_endpoint_leveled_audience_output.py +++ b/src/rapidata/api_client/models/get_boost_insights_endpoint_leveled_audience_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_boost_insights_endpoint_output.py b/src/rapidata/api_client/models/get_boost_insights_endpoint_output.py index 6b6e389ec..8be96a625 100644 --- a/src/rapidata/api_client/models/get_boost_insights_endpoint_output.py +++ b/src/rapidata/api_client/models/get_boost_insights_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_boost_status_endpoint_output.py b/src/rapidata/api_client/models/get_boost_status_endpoint_output.py index 910d64067..9d1e1bd58 100644 --- a/src/rapidata/api_client/models/get_boost_status_endpoint_output.py +++ b/src/rapidata/api_client/models/get_boost_status_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_bulk_close_billing_periods_status_endpoint_output.py b/src/rapidata/api_client/models/get_bulk_close_billing_periods_status_endpoint_output.py index e38fa0151..d5a002551 100644 --- a/src/rapidata/api_client/models/get_bulk_close_billing_periods_status_endpoint_output.py +++ b/src/rapidata/api_client/models/get_bulk_close_billing_periods_status_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_bulk_close_billing_periods_status_endpoint_output_period.py b/src/rapidata/api_client/models/get_bulk_close_billing_periods_status_endpoint_output_period.py index 3d295e17e..9fa604657 100644 --- a/src/rapidata/api_client/models/get_bulk_close_billing_periods_status_endpoint_output_period.py +++ b/src/rapidata/api_client/models/get_bulk_close_billing_periods_status_endpoint_output_period.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_bulk_reconciliation_status_endpoint_output.py b/src/rapidata/api_client/models/get_bulk_reconciliation_status_endpoint_output.py index 9a1ec2108..a4a5e99a7 100644 --- a/src/rapidata/api_client/models/get_bulk_reconciliation_status_endpoint_output.py +++ b/src/rapidata/api_client/models/get_bulk_reconciliation_status_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_campaign_by_id_endpoint_i_campaign_details.py b/src/rapidata/api_client/models/get_campaign_by_id_endpoint_i_campaign_details.py index e188c6e71..9ea8e7daa 100644 --- a/src/rapidata/api_client/models/get_campaign_by_id_endpoint_i_campaign_details.py +++ b/src/rapidata/api_client/models/get_campaign_by_id_endpoint_i_campaign_details.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_campaign_by_id_endpoint_i_campaign_details_get_campaign_by_id_endpoint_program_campaign_details.py b/src/rapidata/api_client/models/get_campaign_by_id_endpoint_i_campaign_details_get_campaign_by_id_endpoint_program_campaign_details.py index f5fc9a2c5..d25c3eaf8 100644 --- a/src/rapidata/api_client/models/get_campaign_by_id_endpoint_i_campaign_details_get_campaign_by_id_endpoint_program_campaign_details.py +++ b/src/rapidata/api_client/models/get_campaign_by_id_endpoint_i_campaign_details_get_campaign_by_id_endpoint_program_campaign_details.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_campaign_by_id_endpoint_i_campaign_details_get_campaign_by_id_endpoint_routed_campaign_details.py b/src/rapidata/api_client/models/get_campaign_by_id_endpoint_i_campaign_details_get_campaign_by_id_endpoint_routed_campaign_details.py index 2eaefa584..2e47d3d6c 100644 --- a/src/rapidata/api_client/models/get_campaign_by_id_endpoint_i_campaign_details_get_campaign_by_id_endpoint_routed_campaign_details.py +++ b/src/rapidata/api_client/models/get_campaign_by_id_endpoint_i_campaign_details_get_campaign_by_id_endpoint_routed_campaign_details.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_campaign_cache_endpoint_campaign_entry.py b/src/rapidata/api_client/models/get_campaign_cache_endpoint_campaign_entry.py index cbaeec9f8..30a18c422 100644 --- a/src/rapidata/api_client/models/get_campaign_cache_endpoint_campaign_entry.py +++ b/src/rapidata/api_client/models/get_campaign_cache_endpoint_campaign_entry.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_campaign_cache_endpoint_output.py b/src/rapidata/api_client/models/get_campaign_cache_endpoint_output.py index 84f454f01..b6591dba3 100644 --- a/src/rapidata/api_client/models/get_campaign_cache_endpoint_output.py +++ b/src/rapidata/api_client/models/get_campaign_cache_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_capability_grantees_endpoint_cursor_paged_result_of_output.py b/src/rapidata/api_client/models/get_capability_grantees_endpoint_cursor_paged_result_of_output.py index 5fbfeed93..38390c1d0 100644 --- a/src/rapidata/api_client/models/get_capability_grantees_endpoint_cursor_paged_result_of_output.py +++ b/src/rapidata/api_client/models/get_capability_grantees_endpoint_cursor_paged_result_of_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_capability_grantees_endpoint_output.py b/src/rapidata/api_client/models/get_capability_grantees_endpoint_output.py index 004bf76a2..3c210c706 100644 --- a/src/rapidata/api_client/models/get_capability_grantees_endpoint_output.py +++ b/src/rapidata/api_client/models/get_capability_grantees_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_checkout_session_endpoint_output.py b/src/rapidata/api_client/models/get_checkout_session_endpoint_output.py index ec05754b9..ebebaa145 100644 --- a/src/rapidata/api_client/models/get_checkout_session_endpoint_output.py +++ b/src/rapidata/api_client/models/get_checkout_session_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_combined_benchmark_matrix_endpoint_output.py b/src/rapidata/api_client/models/get_combined_benchmark_matrix_endpoint_output.py index 968908ab6..758559b3b 100644 --- a/src/rapidata/api_client/models/get_combined_benchmark_matrix_endpoint_output.py +++ b/src/rapidata/api_client/models/get_combined_benchmark_matrix_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_combined_benchmark_standings_endpoint_output.py b/src/rapidata/api_client/models/get_combined_benchmark_standings_endpoint_output.py index 620da2b93..97467b0a5 100644 --- a/src/rapidata/api_client/models/get_combined_benchmark_standings_endpoint_output.py +++ b/src/rapidata/api_client/models/get_combined_benchmark_standings_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_combined_benchmark_standings_endpoint_output_item.py b/src/rapidata/api_client/models/get_combined_benchmark_standings_endpoint_output_item.py index 8eb96973a..e7796d5b3 100644 --- a/src/rapidata/api_client/models/get_combined_benchmark_standings_endpoint_output_item.py +++ b/src/rapidata/api_client/models/get_combined_benchmark_standings_endpoint_output_item.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_combined_leaderboard_matrix_endpoint_output.py b/src/rapidata/api_client/models/get_combined_leaderboard_matrix_endpoint_output.py index adeef776a..0d11e6548 100644 --- a/src/rapidata/api_client/models/get_combined_leaderboard_matrix_endpoint_output.py +++ b/src/rapidata/api_client/models/get_combined_leaderboard_matrix_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_combined_leaderboard_standings_endpoint_output.py b/src/rapidata/api_client/models/get_combined_leaderboard_standings_endpoint_output.py index 16ebaebdd..d0f732e0f 100644 --- a/src/rapidata/api_client/models/get_combined_leaderboard_standings_endpoint_output.py +++ b/src/rapidata/api_client/models/get_combined_leaderboard_standings_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_combined_leaderboard_standings_endpoint_output_item.py b/src/rapidata/api_client/models/get_combined_leaderboard_standings_endpoint_output_item.py index 9d8ff04e5..cccf8f133 100644 --- a/src/rapidata/api_client/models/get_combined_leaderboard_standings_endpoint_output_item.py +++ b/src/rapidata/api_client/models/get_combined_leaderboard_standings_endpoint_output_item.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_compatible_validation_sets_endpoint_output.py b/src/rapidata/api_client/models/get_compatible_validation_sets_endpoint_output.py index d2846b37a..a36df451d 100644 --- a/src/rapidata/api_client/models/get_compatible_validation_sets_endpoint_output.py +++ b/src/rapidata/api_client/models/get_compatible_validation_sets_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_compatible_validation_sets_endpoint_validation_set_output.py b/src/rapidata/api_client/models/get_compatible_validation_sets_endpoint_validation_set_output.py index 8cbf1799a..a450d90bb 100644 --- a/src/rapidata/api_client/models/get_compatible_validation_sets_endpoint_validation_set_output.py +++ b/src/rapidata/api_client/models/get_compatible_validation_sets_endpoint_validation_set_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_completion_time_histogram_endpoint_output.py b/src/rapidata/api_client/models/get_completion_time_histogram_endpoint_output.py index aff452cf1..b1ab08b40 100644 --- a/src/rapidata/api_client/models/get_completion_time_histogram_endpoint_output.py +++ b/src/rapidata/api_client/models/get_completion_time_histogram_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_completion_time_histogram_endpoint_output_bucket.py b/src/rapidata/api_client/models/get_completion_time_histogram_endpoint_output_bucket.py index 61d1c21ca..326b39fac 100644 --- a/src/rapidata/api_client/models/get_completion_time_histogram_endpoint_output_bucket.py +++ b/src/rapidata/api_client/models/get_completion_time_histogram_endpoint_output_bucket.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_cost_time_series_endpoint_cost_data_point.py b/src/rapidata/api_client/models/get_cost_time_series_endpoint_cost_data_point.py index 80bc99df5..934602d41 100644 --- a/src/rapidata/api_client/models/get_cost_time_series_endpoint_cost_data_point.py +++ b/src/rapidata/api_client/models/get_cost_time_series_endpoint_cost_data_point.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_cost_time_series_endpoint_output.py b/src/rapidata/api_client/models/get_cost_time_series_endpoint_output.py index 8a6fa2fa7..d4ffac257 100644 --- a/src/rapidata/api_client/models/get_cost_time_series_endpoint_output.py +++ b/src/rapidata/api_client/models/get_cost_time_series_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_customer_capabilities_endpoint_output.py b/src/rapidata/api_client/models/get_customer_capabilities_endpoint_output.py index 4d41a79e2..2532db33a 100644 --- a/src/rapidata/api_client/models/get_customer_capabilities_endpoint_output.py +++ b/src/rapidata/api_client/models/get_customer_capabilities_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_datapoint_endpoint_output.py b/src/rapidata/api_client/models/get_datapoint_endpoint_output.py index dd9e310e2..99f1357d5 100644 --- a/src/rapidata/api_client/models/get_datapoint_endpoint_output.py +++ b/src/rapidata/api_client/models/get_datapoint_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_dataset_by_id_endpoint_output.py b/src/rapidata/api_client/models/get_dataset_by_id_endpoint_output.py index 1763b8fa9..520ad5ce3 100644 --- a/src/rapidata/api_client/models/get_dataset_by_id_endpoint_output.py +++ b/src/rapidata/api_client/models/get_dataset_by_id_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_dataset_progress_endpoint_output.py b/src/rapidata/api_client/models/get_dataset_progress_endpoint_output.py index 18174e3d1..000f4ecc2 100644 --- a/src/rapidata/api_client/models/get_dataset_progress_endpoint_output.py +++ b/src/rapidata/api_client/models/get_dataset_progress_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_external_app_relation_members_endpoint_cursor_paged_result_of_output.py b/src/rapidata/api_client/models/get_external_app_relation_members_endpoint_cursor_paged_result_of_output.py index 83ac6c2b0..0ed879489 100644 --- a/src/rapidata/api_client/models/get_external_app_relation_members_endpoint_cursor_paged_result_of_output.py +++ b/src/rapidata/api_client/models/get_external_app_relation_members_endpoint_cursor_paged_result_of_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_external_app_relation_members_endpoint_output.py b/src/rapidata/api_client/models/get_external_app_relation_members_endpoint_output.py index ac5822d20..8e906b7fe 100644 --- a/src/rapidata/api_client/models/get_external_app_relation_members_endpoint_output.py +++ b/src/rapidata/api_client/models/get_external_app_relation_members_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_failed_datapoints_endpoint_datapoint.py b/src/rapidata/api_client/models/get_failed_datapoints_endpoint_datapoint.py index 6c9edb775..2d82b4e26 100644 --- a/src/rapidata/api_client/models/get_failed_datapoints_endpoint_datapoint.py +++ b/src/rapidata/api_client/models/get_failed_datapoints_endpoint_datapoint.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_failed_datapoints_endpoint_output.py b/src/rapidata/api_client/models/get_failed_datapoints_endpoint_output.py index 02e9784e3..ce3bf12ef 100644 --- a/src/rapidata/api_client/models/get_failed_datapoints_endpoint_output.py +++ b/src/rapidata/api_client/models/get_failed_datapoints_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_fast_bid_multiplier_endpoint_output.py b/src/rapidata/api_client/models/get_fast_bid_multiplier_endpoint_output.py index 574b19cad..4442e6e0b 100644 --- a/src/rapidata/api_client/models/get_fast_bid_multiplier_endpoint_output.py +++ b/src/rapidata/api_client/models/get_fast_bid_multiplier_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_flow_item_by_id_endpoint_output.py b/src/rapidata/api_client/models/get_flow_item_by_id_endpoint_output.py index 2ac501197..754d5c7b6 100644 --- a/src/rapidata/api_client/models/get_flow_item_by_id_endpoint_output.py +++ b/src/rapidata/api_client/models/get_flow_item_by_id_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_flow_item_creation_timeseries_endpoint_output.py b/src/rapidata/api_client/models/get_flow_item_creation_timeseries_endpoint_output.py index 9183c88b2..a76e94884 100644 --- a/src/rapidata/api_client/models/get_flow_item_creation_timeseries_endpoint_output.py +++ b/src/rapidata/api_client/models/get_flow_item_creation_timeseries_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_flow_item_creation_timeseries_endpoint_output_data_point.py b/src/rapidata/api_client/models/get_flow_item_creation_timeseries_endpoint_output_data_point.py index f923b5fbb..2b48f7cc5 100644 --- a/src/rapidata/api_client/models/get_flow_item_creation_timeseries_endpoint_output_data_point.py +++ b/src/rapidata/api_client/models/get_flow_item_creation_timeseries_endpoint_output_data_point.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_global_responses_endpoint_output.py b/src/rapidata/api_client/models/get_global_responses_endpoint_output.py index 4e73482bf..ff4dafd5c 100644 --- a/src/rapidata/api_client/models/get_global_responses_endpoint_output.py +++ b/src/rapidata/api_client/models/get_global_responses_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_global_responses_endpoint_output_response.py b/src/rapidata/api_client/models/get_global_responses_endpoint_output_response.py index 444532669..d422bcc3f 100644 --- a/src/rapidata/api_client/models/get_global_responses_endpoint_output_response.py +++ b/src/rapidata/api_client/models/get_global_responses_endpoint_output_response.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_invoice_endpoint_output.py b/src/rapidata/api_client/models/get_invoice_endpoint_output.py index 32d35f41d..f790f84ad 100644 --- a/src/rapidata/api_client/models/get_invoice_endpoint_output.py +++ b/src/rapidata/api_client/models/get_invoice_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_job_ab_summary_endpoint_output.py b/src/rapidata/api_client/models/get_job_ab_summary_endpoint_output.py index 558d08b82..3a8f31707 100644 --- a/src/rapidata/api_client/models/get_job_ab_summary_endpoint_output.py +++ b/src/rapidata/api_client/models/get_job_ab_summary_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_job_by_id_endpoint_output.py b/src/rapidata/api_client/models/get_job_by_id_endpoint_output.py index 789c797ae..a2b47131b 100644 --- a/src/rapidata/api_client/models/get_job_by_id_endpoint_output.py +++ b/src/rapidata/api_client/models/get_job_by_id_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_job_cost_estimate_endpoint_output.py b/src/rapidata/api_client/models/get_job_cost_estimate_endpoint_output.py index 32a2f353e..8bc4b5e80 100644 --- a/src/rapidata/api_client/models/get_job_cost_estimate_endpoint_output.py +++ b/src/rapidata/api_client/models/get_job_cost_estimate_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_job_datapoints_endpoint_output.py b/src/rapidata/api_client/models/get_job_datapoints_endpoint_output.py index ce408fe8e..8d5ad3ccc 100644 --- a/src/rapidata/api_client/models/get_job_datapoints_endpoint_output.py +++ b/src/rapidata/api_client/models/get_job_datapoints_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_job_datapoints_endpoint_paged_result_of_output.py b/src/rapidata/api_client/models/get_job_datapoints_endpoint_paged_result_of_output.py index 05259f951..8310e1164 100644 --- a/src/rapidata/api_client/models/get_job_datapoints_endpoint_paged_result_of_output.py +++ b/src/rapidata/api_client/models/get_job_datapoints_endpoint_paged_result_of_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_job_definition_by_id_endpoint_output.py b/src/rapidata/api_client/models/get_job_definition_by_id_endpoint_output.py index fdbbd56f8..a8b7b73da 100644 --- a/src/rapidata/api_client/models/get_job_definition_by_id_endpoint_output.py +++ b/src/rapidata/api_client/models/get_job_definition_by_id_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_job_definition_cost_estimate_endpoint_output.py b/src/rapidata/api_client/models/get_job_definition_cost_estimate_endpoint_output.py index 2946275f1..df9e0546d 100644 --- a/src/rapidata/api_client/models/get_job_definition_cost_estimate_endpoint_output.py +++ b/src/rapidata/api_client/models/get_job_definition_cost_estimate_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_job_progress_endpoint_output.py b/src/rapidata/api_client/models/get_job_progress_endpoint_output.py index 51f7c5fff..86123e733 100644 --- a/src/rapidata/api_client/models/get_job_progress_endpoint_output.py +++ b/src/rapidata/api_client/models/get_job_progress_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_job_responses_endpoint_output.py b/src/rapidata/api_client/models/get_job_responses_endpoint_output.py index 4e4790a71..d5f46e710 100644 --- a/src/rapidata/api_client/models/get_job_responses_endpoint_output.py +++ b/src/rapidata/api_client/models/get_job_responses_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_job_responses_endpoint_output_response.py b/src/rapidata/api_client/models/get_job_responses_endpoint_output_response.py index 2f1e5323c..25f7d7d3a 100644 --- a/src/rapidata/api_client/models/get_job_responses_endpoint_output_response.py +++ b/src/rapidata/api_client/models/get_job_responses_endpoint_output_response.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_job_result_navigation_endpoint_output.py b/src/rapidata/api_client/models/get_job_result_navigation_endpoint_output.py index 7872fe746..9d0c5cf5e 100644 --- a/src/rapidata/api_client/models/get_job_result_navigation_endpoint_output.py +++ b/src/rapidata/api_client/models/get_job_result_navigation_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_job_revision_endpoint_output.py b/src/rapidata/api_client/models/get_job_revision_endpoint_output.py index 187587bb8..a332d4240 100644 --- a/src/rapidata/api_client/models/get_job_revision_endpoint_output.py +++ b/src/rapidata/api_client/models/get_job_revision_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_job_shares_endpoint_output.py b/src/rapidata/api_client/models/get_job_shares_endpoint_output.py new file mode 100644 index 000000000..bff18c2a2 --- /dev/null +++ b/src/rapidata/api_client/models/get_job_shares_endpoint_output.py @@ -0,0 +1,99 @@ +# coding: utf-8 + +""" + Rapidata Asset API + + The API for the Rapidata Asset service + + The version of the OpenAPI document: 2026.08.21.1305-2bf435d + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + +from __future__ import annotations +import pprint +import re # noqa: F401 +import json + +from pydantic import BaseModel, ConfigDict, Field, StrictStr +from typing import Any, ClassVar, Dict, List, Optional +from uuid import UUID +from rapidata.api_client.models.job_share_level import JobShareLevel +from pydantic import ValidationError +from rapidata.api_client.lazy_model import LazyValidatedModel +from typing import Optional, Set +from typing_extensions import Self + +class GetJobSharesEndpointOutput(LazyValidatedModel): + """ + GetJobSharesEndpointOutput + """ # noqa: E501 + customer_id: UUID = Field(description="The id of the customer the job is shared with.", alias="customerId") + email: Optional[StrictStr] = Field(description="The customer's email, or null when it could not be resolved.") + level: JobShareLevel = Field(description="The access level the customer holds.") + __properties: ClassVar[List[str]] = ["customerId", "email", "level"] + + # model_config is inherited from LazyValidatedModel + + + def to_str(self) -> str: + """Returns the string representation of the model using alias""" + return pprint.pformat(self.model_dump(by_alias=True)) + + def to_json(self) -> str: + """Returns the JSON representation of the model using alias""" + # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead + return json.dumps(self.to_dict()) + + @classmethod + def from_json(cls, json_str: str) -> Optional[Self]: + """Create an instance of GetJobSharesEndpointOutput from a JSON string""" + return cls.from_dict(json.loads(json_str)) + + def to_dict(self) -> Dict[str, Any]: + """Return the dictionary representation of the model using alias. + + This has the following differences from calling pydantic's + `self.model_dump(by_alias=True)`: + + * `None` is only added to the output dict for nullable fields that + were set at model initialization. Other fields with value `None` + are ignored. + """ + excluded_fields: Set[str] = set([ + ]) + + _dict = self.model_dump( + by_alias=True, + exclude=excluded_fields, + exclude_none=True, + ) + # set to None if email (nullable) is None + # and model_fields_set contains the field + if self.email is None and "email" in self.model_fields_set: + _dict['email'] = None + + return _dict + + @classmethod + def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: + """Create an instance of GetJobSharesEndpointOutput from a dict""" + if obj is None: + return None + + if not isinstance(obj, dict): + return cls.model_validate(obj) + + _data = { + "customerId": obj.get("customerId"), + "email": obj.get("email"), + "level": obj.get("level") + } + try: + _obj = cls.model_validate(_data) + except ValidationError as _val_error: + _obj = cls._lazy_construct(_data, _val_error) + return _obj + + diff --git a/src/rapidata/api_client/models/get_latest_audience_inactivity_sync_endpoint_output.py b/src/rapidata/api_client/models/get_latest_audience_inactivity_sync_endpoint_output.py index ce3d06bed..10bd1694c 100644 --- a/src/rapidata/api_client/models/get_latest_audience_inactivity_sync_endpoint_output.py +++ b/src/rapidata/api_client/models/get_latest_audience_inactivity_sync_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_latest_audience_state_recalculation_endpoint_output.py b/src/rapidata/api_client/models/get_latest_audience_state_recalculation_endpoint_output.py index c682c04a2..cad96120d 100644 --- a/src/rapidata/api_client/models/get_latest_audience_state_recalculation_endpoint_output.py +++ b/src/rapidata/api_client/models/get_latest_audience_state_recalculation_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_leaderboard_by_id_endpoint_output.py b/src/rapidata/api_client/models/get_leaderboard_by_id_endpoint_output.py index 658f1e474..5708c2f16 100644 --- a/src/rapidata/api_client/models/get_leaderboard_by_id_endpoint_output.py +++ b/src/rapidata/api_client/models/get_leaderboard_by_id_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_order_by_id_endpoint_output.py b/src/rapidata/api_client/models/get_order_by_id_endpoint_output.py index 41c460393..a321c1bff 100644 --- a/src/rapidata/api_client/models/get_order_by_id_endpoint_output.py +++ b/src/rapidata/api_client/models/get_order_by_id_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_organization_capabilities_endpoint_output.py b/src/rapidata/api_client/models/get_organization_capabilities_endpoint_output.py index ab8f233f0..b2bd31334 100644 --- a/src/rapidata/api_client/models/get_organization_capabilities_endpoint_output.py +++ b/src/rapidata/api_client/models/get_organization_capabilities_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_organization_endpoint_output.py b/src/rapidata/api_client/models/get_organization_endpoint_output.py index 4204a68c0..d8d8bc43e 100644 --- a/src/rapidata/api_client/models/get_organization_endpoint_output.py +++ b/src/rapidata/api_client/models/get_organization_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_organization_owner_tier_endpoint_output.py b/src/rapidata/api_client/models/get_organization_owner_tier_endpoint_output.py index 584781cef..837599fb5 100644 --- a/src/rapidata/api_client/models/get_organization_owner_tier_endpoint_output.py +++ b/src/rapidata/api_client/models/get_organization_owner_tier_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_participant_by_id_endpoint_output.py b/src/rapidata/api_client/models/get_participant_by_id_endpoint_output.py index d15e9e792..2c16e2b1c 100644 --- a/src/rapidata/api_client/models/get_participant_by_id_endpoint_output.py +++ b/src/rapidata/api_client/models/get_participant_by_id_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_platform_relation_members_endpoint_cursor_paged_result_of_output.py b/src/rapidata/api_client/models/get_platform_relation_members_endpoint_cursor_paged_result_of_output.py index fdfa4d604..60ca2f1e8 100644 --- a/src/rapidata/api_client/models/get_platform_relation_members_endpoint_cursor_paged_result_of_output.py +++ b/src/rapidata/api_client/models/get_platform_relation_members_endpoint_cursor_paged_result_of_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_platform_relation_members_endpoint_output.py b/src/rapidata/api_client/models/get_platform_relation_members_endpoint_output.py index 96f0c1b6d..178a6c79f 100644 --- a/src/rapidata/api_client/models/get_platform_relation_members_endpoint_output.py +++ b/src/rapidata/api_client/models/get_platform_relation_members_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_prompt_embedding_map_endpoint_output.py b/src/rapidata/api_client/models/get_prompt_embedding_map_endpoint_output.py index 56cc0bb3b..e2d076959 100644 --- a/src/rapidata/api_client/models/get_prompt_embedding_map_endpoint_output.py +++ b/src/rapidata/api_client/models/get_prompt_embedding_map_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_prompt_embedding_map_endpoint_output_point.py b/src/rapidata/api_client/models/get_prompt_embedding_map_endpoint_output_point.py index cb3e18e1a..6963ce9d0 100644 --- a/src/rapidata/api_client/models/get_prompt_embedding_map_endpoint_output_point.py +++ b/src/rapidata/api_client/models/get_prompt_embedding_map_endpoint_output_point.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_prompt_embedding_map_status_endpoint_output.py b/src/rapidata/api_client/models/get_prompt_embedding_map_status_endpoint_output.py index 2131c0b28..1f98f2f17 100644 --- a/src/rapidata/api_client/models/get_prompt_embedding_map_status_endpoint_output.py +++ b/src/rapidata/api_client/models/get_prompt_embedding_map_status_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_prompts_by_benchmark_endpoint_output.py b/src/rapidata/api_client/models/get_prompts_by_benchmark_endpoint_output.py index 096584216..32e49cfa8 100644 --- a/src/rapidata/api_client/models/get_prompts_by_benchmark_endpoint_output.py +++ b/src/rapidata/api_client/models/get_prompts_by_benchmark_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_prompts_by_benchmark_endpoint_paged_result_of_output.py b/src/rapidata/api_client/models/get_prompts_by_benchmark_endpoint_paged_result_of_output.py index 0ac4b415f..03db4ee8b 100644 --- a/src/rapidata/api_client/models/get_prompts_by_benchmark_endpoint_paged_result_of_output.py +++ b/src/rapidata/api_client/models/get_prompts_by_benchmark_endpoint_paged_result_of_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_public_orders_endpoint_order_output.py b/src/rapidata/api_client/models/get_public_orders_endpoint_order_output.py index 0b07a20f6..4e53889a1 100644 --- a/src/rapidata/api_client/models/get_public_orders_endpoint_order_output.py +++ b/src/rapidata/api_client/models/get_public_orders_endpoint_order_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_public_orders_endpoint_output.py b/src/rapidata/api_client/models/get_public_orders_endpoint_output.py index e4676d963..97cc01864 100644 --- a/src/rapidata/api_client/models/get_public_orders_endpoint_output.py +++ b/src/rapidata/api_client/models/get_public_orders_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_ranking_flow_item_results_endpoint_output.py b/src/rapidata/api_client/models/get_ranking_flow_item_results_endpoint_output.py index 94fe09521..7ea077bd8 100644 --- a/src/rapidata/api_client/models/get_ranking_flow_item_results_endpoint_output.py +++ b/src/rapidata/api_client/models/get_ranking_flow_item_results_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_ranking_flow_item_results_endpoint_output_datapoint.py b/src/rapidata/api_client/models/get_ranking_flow_item_results_endpoint_output_datapoint.py index 466a1fe99..6a7590c33 100644 --- a/src/rapidata/api_client/models/get_ranking_flow_item_results_endpoint_output_datapoint.py +++ b/src/rapidata/api_client/models/get_ranking_flow_item_results_endpoint_output_datapoint.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_ranking_flow_item_vote_matrix_endpoint_output.py b/src/rapidata/api_client/models/get_ranking_flow_item_vote_matrix_endpoint_output.py index 0a35d0bbd..e6ffd5c9a 100644 --- a/src/rapidata/api_client/models/get_ranking_flow_item_vote_matrix_endpoint_output.py +++ b/src/rapidata/api_client/models/get_ranking_flow_item_vote_matrix_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_rapid_navigation_endpoint_card.py b/src/rapidata/api_client/models/get_rapid_navigation_endpoint_card.py index 2a862e288..25c92f50b 100644 --- a/src/rapidata/api_client/models/get_rapid_navigation_endpoint_card.py +++ b/src/rapidata/api_client/models/get_rapid_navigation_endpoint_card.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_rapid_navigation_endpoint_card_response.py b/src/rapidata/api_client/models/get_rapid_navigation_endpoint_card_response.py index 1ddd1038a..cd8e03f4b 100644 --- a/src/rapidata/api_client/models/get_rapid_navigation_endpoint_card_response.py +++ b/src/rapidata/api_client/models/get_rapid_navigation_endpoint_card_response.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_rapid_navigation_endpoint_item.py b/src/rapidata/api_client/models/get_rapid_navigation_endpoint_item.py index 8a69a8c4a..6789aa2b1 100644 --- a/src/rapidata/api_client/models/get_rapid_navigation_endpoint_item.py +++ b/src/rapidata/api_client/models/get_rapid_navigation_endpoint_item.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_rapid_navigation_endpoint_output.py b/src/rapidata/api_client/models/get_rapid_navigation_endpoint_output.py index b08e4a36c..f60d2eca6 100644 --- a/src/rapidata/api_client/models/get_rapid_navigation_endpoint_output.py +++ b/src/rapidata/api_client/models/get_rapid_navigation_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_recommended_validation_set_endpoint_output.py b/src/rapidata/api_client/models/get_recommended_validation_set_endpoint_output.py index 1912898e3..cfa01a4d9 100644 --- a/src/rapidata/api_client/models/get_recommended_validation_set_endpoint_output.py +++ b/src/rapidata/api_client/models/get_recommended_validation_set_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_recommended_validation_set_endpoint_validation_set_output.py b/src/rapidata/api_client/models/get_recommended_validation_set_endpoint_validation_set_output.py index 7501f69a3..61295bac0 100644 --- a/src/rapidata/api_client/models/get_recommended_validation_set_endpoint_validation_set_output.py +++ b/src/rapidata/api_client/models/get_recommended_validation_set_endpoint_validation_set_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_reconciliation_status_endpoint_output.py b/src/rapidata/api_client/models/get_reconciliation_status_endpoint_output.py index b447b1a7b..cea82a343 100644 --- a/src/rapidata/api_client/models/get_reconciliation_status_endpoint_output.py +++ b/src/rapidata/api_client/models/get_reconciliation_status_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_replicate_model_endpoint_output.py b/src/rapidata/api_client/models/get_replicate_model_endpoint_output.py index 2123cc3dc..cb6764b3d 100644 --- a/src/rapidata/api_client/models/get_replicate_model_endpoint_output.py +++ b/src/rapidata/api_client/models/get_replicate_model_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_replicate_model_endpoint_parameter.py b/src/rapidata/api_client/models/get_replicate_model_endpoint_parameter.py index 50d69e07a..2ef00504a 100644 --- a/src/rapidata/api_client/models/get_replicate_model_endpoint_parameter.py +++ b/src/rapidata/api_client/models/get_replicate_model_endpoint_parameter.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_response_count_histogram_endpoint_output.py b/src/rapidata/api_client/models/get_response_count_histogram_endpoint_output.py index 6d5a6d86f..77350752c 100644 --- a/src/rapidata/api_client/models/get_response_count_histogram_endpoint_output.py +++ b/src/rapidata/api_client/models/get_response_count_histogram_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_response_count_histogram_endpoint_output_bucket.py b/src/rapidata/api_client/models/get_response_count_histogram_endpoint_output_bucket.py index c96918425..47e3fc85d 100644 --- a/src/rapidata/api_client/models/get_response_count_histogram_endpoint_output_bucket.py +++ b/src/rapidata/api_client/models/get_response_count_histogram_endpoint_output_bucket.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_response_count_timeseries_endpoint_output.py b/src/rapidata/api_client/models/get_response_count_timeseries_endpoint_output.py index d3fc5ae03..dcfd058c4 100644 --- a/src/rapidata/api_client/models/get_response_count_timeseries_endpoint_output.py +++ b/src/rapidata/api_client/models/get_response_count_timeseries_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_response_count_timeseries_endpoint_output_data_point.py b/src/rapidata/api_client/models/get_response_count_timeseries_endpoint_output_data_point.py index e1aa15d64..0295cace3 100644 --- a/src/rapidata/api_client/models/get_response_count_timeseries_endpoint_output_data_point.py +++ b/src/rapidata/api_client/models/get_response_count_timeseries_endpoint_output_data_point.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_responses_for_rapid_endpoint_output.py b/src/rapidata/api_client/models/get_responses_for_rapid_endpoint_output.py index 1892e9b62..8869dd5a7 100644 --- a/src/rapidata/api_client/models/get_responses_for_rapid_endpoint_output.py +++ b/src/rapidata/api_client/models/get_responses_for_rapid_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_responses_for_rapid_endpoint_output_response.py b/src/rapidata/api_client/models/get_responses_for_rapid_endpoint_output_response.py index ed8911b25..5b852e6ac 100644 --- a/src/rapidata/api_client/models/get_responses_for_rapid_endpoint_output_response.py +++ b/src/rapidata/api_client/models/get_responses_for_rapid_endpoint_output_response.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_sample_by_id_endpoint_output.py b/src/rapidata/api_client/models/get_sample_by_id_endpoint_output.py index 17c2326b8..3325ab107 100644 --- a/src/rapidata/api_client/models/get_sample_by_id_endpoint_output.py +++ b/src/rapidata/api_client/models/get_sample_by_id_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_sample_generation_endpoint_output.py b/src/rapidata/api_client/models/get_sample_generation_endpoint_output.py index 8effa32f5..275a3aaae 100644 --- a/src/rapidata/api_client/models/get_sample_generation_endpoint_output.py +++ b/src/rapidata/api_client/models/get_sample_generation_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_sample_generation_endpoint_output_participant.py b/src/rapidata/api_client/models/get_sample_generation_endpoint_output_participant.py index c67f186bc..08c8385b6 100644 --- a/src/rapidata/api_client/models/get_sample_generation_endpoint_output_participant.py +++ b/src/rapidata/api_client/models/get_sample_generation_endpoint_output_participant.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_sample_generation_items_endpoint_output.py b/src/rapidata/api_client/models/get_sample_generation_items_endpoint_output.py index 8b2ce7019..e7a82c466 100644 --- a/src/rapidata/api_client/models/get_sample_generation_items_endpoint_output.py +++ b/src/rapidata/api_client/models/get_sample_generation_items_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_sample_generation_items_endpoint_paged_result_of_output.py b/src/rapidata/api_client/models/get_sample_generation_items_endpoint_paged_result_of_output.py index 8fa35376c..97add987d 100644 --- a/src/rapidata/api_client/models/get_sample_generation_items_endpoint_paged_result_of_output.py +++ b/src/rapidata/api_client/models/get_sample_generation_items_endpoint_paged_result_of_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_sample_navigation_endpoint_output.py b/src/rapidata/api_client/models/get_sample_navigation_endpoint_output.py index e35eafa8d..50cf0848a 100644 --- a/src/rapidata/api_client/models/get_sample_navigation_endpoint_output.py +++ b/src/rapidata/api_client/models/get_sample_navigation_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_sample_navigation_endpoint_sample.py b/src/rapidata/api_client/models/get_sample_navigation_endpoint_sample.py index 9a2df9e8d..5977f8bde 100644 --- a/src/rapidata/api_client/models/get_sample_navigation_endpoint_sample.py +++ b/src/rapidata/api_client/models/get_sample_navigation_endpoint_sample.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_samples_by_identifier_endpoint_output.py b/src/rapidata/api_client/models/get_samples_by_identifier_endpoint_output.py index 291170b8f..b1ccca1b4 100644 --- a/src/rapidata/api_client/models/get_samples_by_identifier_endpoint_output.py +++ b/src/rapidata/api_client/models/get_samples_by_identifier_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_samples_by_identifier_endpoint_paged_result_of_output.py b/src/rapidata/api_client/models/get_samples_by_identifier_endpoint_paged_result_of_output.py index 9ac6cee45..ff057b522 100644 --- a/src/rapidata/api_client/models/get_samples_by_identifier_endpoint_paged_result_of_output.py +++ b/src/rapidata/api_client/models/get_samples_by_identifier_endpoint_paged_result_of_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_samples_by_participant_endpoint_i_sample_output.py b/src/rapidata/api_client/models/get_samples_by_participant_endpoint_i_sample_output.py index 2dffaab76..6f2e524c3 100644 --- a/src/rapidata/api_client/models/get_samples_by_participant_endpoint_i_sample_output.py +++ b/src/rapidata/api_client/models/get_samples_by_participant_endpoint_i_sample_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_samples_by_participant_endpoint_i_sample_output_get_samples_by_participant_endpoint_placeholder_sample_output.py b/src/rapidata/api_client/models/get_samples_by_participant_endpoint_i_sample_output_get_samples_by_participant_endpoint_placeholder_sample_output.py index e15f8c96b..9e6356d70 100644 --- a/src/rapidata/api_client/models/get_samples_by_participant_endpoint_i_sample_output_get_samples_by_participant_endpoint_placeholder_sample_output.py +++ b/src/rapidata/api_client/models/get_samples_by_participant_endpoint_i_sample_output_get_samples_by_participant_endpoint_placeholder_sample_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_samples_by_participant_endpoint_i_sample_output_get_samples_by_participant_endpoint_sample_output.py b/src/rapidata/api_client/models/get_samples_by_participant_endpoint_i_sample_output_get_samples_by_participant_endpoint_sample_output.py index f40d7c549..6a05461ab 100644 --- a/src/rapidata/api_client/models/get_samples_by_participant_endpoint_i_sample_output_get_samples_by_participant_endpoint_sample_output.py +++ b/src/rapidata/api_client/models/get_samples_by_participant_endpoint_i_sample_output_get_samples_by_participant_endpoint_sample_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_samples_by_participant_endpoint_paged_result_of_i_sample_output.py b/src/rapidata/api_client/models/get_samples_by_participant_endpoint_paged_result_of_i_sample_output.py index 6738ac1d7..6bcc3d647 100644 --- a/src/rapidata/api_client/models/get_samples_by_participant_endpoint_paged_result_of_i_sample_output.py +++ b/src/rapidata/api_client/models/get_samples_by_participant_endpoint_paged_result_of_i_sample_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_signal_by_id_endpoint_output.py b/src/rapidata/api_client/models/get_signal_by_id_endpoint_output.py index 2f2cd1852..d747572b8 100644 --- a/src/rapidata/api_client/models/get_signal_by_id_endpoint_output.py +++ b/src/rapidata/api_client/models/get_signal_by_id_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_signal_run_by_id_endpoint_output.py b/src/rapidata/api_client/models/get_signal_run_by_id_endpoint_output.py index 61c15a223..e51520fe6 100644 --- a/src/rapidata/api_client/models/get_signal_run_by_id_endpoint_output.py +++ b/src/rapidata/api_client/models/get_signal_run_by_id_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_user_score_cache_endpoint_output.py b/src/rapidata/api_client/models/get_user_score_cache_endpoint_output.py index c2a2c703c..09fbfbad5 100644 --- a/src/rapidata/api_client/models/get_user_score_cache_endpoint_output.py +++ b/src/rapidata/api_client/models/get_user_score_cache_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_validation_rapids_endpoint_output.py b/src/rapidata/api_client/models/get_validation_rapids_endpoint_output.py index a771f8c58..9f584015b 100644 --- a/src/rapidata/api_client/models/get_validation_rapids_endpoint_output.py +++ b/src/rapidata/api_client/models/get_validation_rapids_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_validation_rapids_endpoint_paged_result_of_output.py b/src/rapidata/api_client/models/get_validation_rapids_endpoint_paged_result_of_output.py index e652d97d7..294867e34 100644 --- a/src/rapidata/api_client/models/get_validation_rapids_endpoint_paged_result_of_output.py +++ b/src/rapidata/api_client/models/get_validation_rapids_endpoint_paged_result_of_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_validation_set_by_id_endpoint_output.py b/src/rapidata/api_client/models/get_validation_set_by_id_endpoint_output.py index 8bfd7afeb..7db1c2149 100644 --- a/src/rapidata/api_client/models/get_validation_set_by_id_endpoint_output.py +++ b/src/rapidata/api_client/models/get_validation_set_by_id_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_volume_discounts_endpoint_output.py b/src/rapidata/api_client/models/get_volume_discounts_endpoint_output.py index e6fb41b67..59182f914 100644 --- a/src/rapidata/api_client/models/get_volume_discounts_endpoint_output.py +++ b/src/rapidata/api_client/models/get_volume_discounts_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_volume_discounts_endpoint_output_volume_discount_item.py b/src/rapidata/api_client/models/get_volume_discounts_endpoint_output_volume_discount_item.py index 7b32930ed..d8ecc77a2 100644 --- a/src/rapidata/api_client/models/get_volume_discounts_endpoint_output_volume_discount_item.py +++ b/src/rapidata/api_client/models/get_volume_discounts_endpoint_output_volume_discount_item.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/google_one_tap_login_endpoint_input.py b/src/rapidata/api_client/models/google_one_tap_login_endpoint_input.py index 7104b8aae..e87282242 100644 --- a/src/rapidata/api_client/models/google_one_tap_login_endpoint_input.py +++ b/src/rapidata/api_client/models/google_one_tap_login_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/google_one_tap_login_endpoint_output.py b/src/rapidata/api_client/models/google_one_tap_login_endpoint_output.py index 0a6c4696c..6ee72aa61 100644 --- a/src/rapidata/api_client/models/google_one_tap_login_endpoint_output.py +++ b/src/rapidata/api_client/models/google_one_tap_login_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/grant_bidder_relation_endpoint_input.py b/src/rapidata/api_client/models/grant_bidder_relation_endpoint_input.py index 3e1d408b9..42f3c77a0 100644 --- a/src/rapidata/api_client/models/grant_bidder_relation_endpoint_input.py +++ b/src/rapidata/api_client/models/grant_bidder_relation_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/grant_external_app_relation_endpoint_input.py b/src/rapidata/api_client/models/grant_external_app_relation_endpoint_input.py index c72f7d2a0..1c25ecb2e 100644 --- a/src/rapidata/api_client/models/grant_external_app_relation_endpoint_input.py +++ b/src/rapidata/api_client/models/grant_external_app_relation_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/grant_platform_relation_endpoint_input.py b/src/rapidata/api_client/models/grant_platform_relation_endpoint_input.py index 9c4eb6bb6..60b180b9e 100644 --- a/src/rapidata/api_client/models/grant_platform_relation_endpoint_input.py +++ b/src/rapidata/api_client/models/grant_platform_relation_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/grant_voucher_endpoint_input.py b/src/rapidata/api_client/models/grant_voucher_endpoint_input.py index b080d670e..a2131e068 100644 --- a/src/rapidata/api_client/models/grant_voucher_endpoint_input.py +++ b/src/rapidata/api_client/models/grant_voucher_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/grant_voucher_endpoint_output.py b/src/rapidata/api_client/models/grant_voucher_endpoint_output.py index c5468dac9..bba8d4414 100644 --- a/src/rapidata/api_client/models/grant_voucher_endpoint_output.py +++ b/src/rapidata/api_client/models/grant_voucher_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/grouped_ranking_group.py b/src/rapidata/api_client/models/grouped_ranking_group.py index e2b6c134a..a0d0fcc8e 100644 --- a/src/rapidata/api_client/models/grouped_ranking_group.py +++ b/src/rapidata/api_client/models/grouped_ranking_group.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/hugging_face_sync_outcome.py b/src/rapidata/api_client/models/hugging_face_sync_outcome.py index dcf761cdd..9475f242a 100644 --- a/src/rapidata/api_client/models/hugging_face_sync_outcome.py +++ b/src/rapidata/api_client/models/hugging_face_sync_outcome.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/hugging_face_sync_status.py b/src/rapidata/api_client/models/hugging_face_sync_status.py index 57f64ef03..288f72d40 100644 --- a/src/rapidata/api_client/models/hugging_face_sync_status.py +++ b/src/rapidata/api_client/models/hugging_face_sync_status.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_asset.py b/src/rapidata/api_client/models/i_asset.py index 553ed20be..94b8f742b 100644 --- a/src/rapidata/api_client/models/i_asset.py +++ b/src/rapidata/api_client/models/i_asset.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_asset_file_asset.py b/src/rapidata/api_client/models/i_asset_file_asset.py index 5888e4605..88e1c0f13 100644 --- a/src/rapidata/api_client/models/i_asset_file_asset.py +++ b/src/rapidata/api_client/models/i_asset_file_asset.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_asset_input.py b/src/rapidata/api_client/models/i_asset_input.py index a535d2e3d..31009269f 100644 --- a/src/rapidata/api_client/models/i_asset_input.py +++ b/src/rapidata/api_client/models/i_asset_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_asset_input_existing_asset_input.py b/src/rapidata/api_client/models/i_asset_input_existing_asset_input.py index aa1446a04..fc0b0f1a0 100644 --- a/src/rapidata/api_client/models/i_asset_input_existing_asset_input.py +++ b/src/rapidata/api_client/models/i_asset_input_existing_asset_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_asset_input_multi_asset_input.py b/src/rapidata/api_client/models/i_asset_input_multi_asset_input.py index f95e4603f..03953f995 100644 --- a/src/rapidata/api_client/models/i_asset_input_multi_asset_input.py +++ b/src/rapidata/api_client/models/i_asset_input_multi_asset_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_asset_input_text_asset_input.py b/src/rapidata/api_client/models/i_asset_input_text_asset_input.py index fee828985..f3c635c25 100644 --- a/src/rapidata/api_client/models/i_asset_input_text_asset_input.py +++ b/src/rapidata/api_client/models/i_asset_input_text_asset_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_asset_multi_asset.py b/src/rapidata/api_client/models/i_asset_multi_asset.py index b9308a854..23fd239c7 100644 --- a/src/rapidata/api_client/models/i_asset_multi_asset.py +++ b/src/rapidata/api_client/models/i_asset_multi_asset.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_asset_null_asset.py b/src/rapidata/api_client/models/i_asset_null_asset.py index 1efa8a8be..5df7cbe57 100644 --- a/src/rapidata/api_client/models/i_asset_null_asset.py +++ b/src/rapidata/api_client/models/i_asset_null_asset.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_asset_text_asset.py b/src/rapidata/api_client/models/i_asset_text_asset.py index dc86adfc2..57df264a1 100644 --- a/src/rapidata/api_client/models/i_asset_text_asset.py +++ b/src/rapidata/api_client/models/i_asset_text_asset.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_audience_filter.py b/src/rapidata/api_client/models/i_audience_filter.py index 656135ba7..75a20fec1 100644 --- a/src/rapidata/api_client/models/i_audience_filter.py +++ b/src/rapidata/api_client/models/i_audience_filter.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_audience_filter_and_audience_filter.py b/src/rapidata/api_client/models/i_audience_filter_and_audience_filter.py index d3cd3c3eb..62df9eed2 100644 --- a/src/rapidata/api_client/models/i_audience_filter_and_audience_filter.py +++ b/src/rapidata/api_client/models/i_audience_filter_and_audience_filter.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_audience_filter_country_audience_filter.py b/src/rapidata/api_client/models/i_audience_filter_country_audience_filter.py index ab3297379..242080362 100644 --- a/src/rapidata/api_client/models/i_audience_filter_country_audience_filter.py +++ b/src/rapidata/api_client/models/i_audience_filter_country_audience_filter.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_audience_filter_demographic_audience_filter.py b/src/rapidata/api_client/models/i_audience_filter_demographic_audience_filter.py index 621687bb9..913f11088 100644 --- a/src/rapidata/api_client/models/i_audience_filter_demographic_audience_filter.py +++ b/src/rapidata/api_client/models/i_audience_filter_demographic_audience_filter.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_audience_filter_device_audience_filter.py b/src/rapidata/api_client/models/i_audience_filter_device_audience_filter.py index e3a7f4788..12082b6c5 100644 --- a/src/rapidata/api_client/models/i_audience_filter_device_audience_filter.py +++ b/src/rapidata/api_client/models/i_audience_filter_device_audience_filter.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_audience_filter_language_audience_filter.py b/src/rapidata/api_client/models/i_audience_filter_language_audience_filter.py index 98a42175c..ac1665c1e 100644 --- a/src/rapidata/api_client/models/i_audience_filter_language_audience_filter.py +++ b/src/rapidata/api_client/models/i_audience_filter_language_audience_filter.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_audience_filter_not_audience_filter.py b/src/rapidata/api_client/models/i_audience_filter_not_audience_filter.py index 86ffab32f..720ee108f 100644 --- a/src/rapidata/api_client/models/i_audience_filter_not_audience_filter.py +++ b/src/rapidata/api_client/models/i_audience_filter_not_audience_filter.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_audience_filter_or_audience_filter.py b/src/rapidata/api_client/models/i_audience_filter_or_audience_filter.py index 024494664..bd8d45526 100644 --- a/src/rapidata/api_client/models/i_audience_filter_or_audience_filter.py +++ b/src/rapidata/api_client/models/i_audience_filter_or_audience_filter.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_billing_group.py b/src/rapidata/api_client/models/i_billing_group.py index 1b5ff1059..d5699efb3 100644 --- a/src/rapidata/api_client/models/i_billing_group.py +++ b/src/rapidata/api_client/models/i_billing_group.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_billing_group_audience_distillation_billing_group.py b/src/rapidata/api_client/models/i_billing_group_audience_distillation_billing_group.py index b377b2ed4..3a63109aa 100644 --- a/src/rapidata/api_client/models/i_billing_group_audience_distillation_billing_group.py +++ b/src/rapidata/api_client/models/i_billing_group_audience_distillation_billing_group.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_billing_group_audience_job_billing_group.py b/src/rapidata/api_client/models/i_billing_group_audience_job_billing_group.py index e0196d418..24b92ff6a 100644 --- a/src/rapidata/api_client/models/i_billing_group_audience_job_billing_group.py +++ b/src/rapidata/api_client/models/i_billing_group_audience_job_billing_group.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_billing_group_benchmark_billing_group.py b/src/rapidata/api_client/models/i_billing_group_benchmark_billing_group.py index adf1a2db0..43b1504c4 100644 --- a/src/rapidata/api_client/models/i_billing_group_benchmark_billing_group.py +++ b/src/rapidata/api_client/models/i_billing_group_benchmark_billing_group.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_billing_group_order_billing_group.py b/src/rapidata/api_client/models/i_billing_group_order_billing_group.py index 2c7ef3ad3..196969afd 100644 --- a/src/rapidata/api_client/models/i_billing_group_order_billing_group.py +++ b/src/rapidata/api_client/models/i_billing_group_order_billing_group.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_billing_group_ranking_flow_billing_group.py b/src/rapidata/api_client/models/i_billing_group_ranking_flow_billing_group.py index 05ab6a8f7..59015e575 100644 --- a/src/rapidata/api_client/models/i_billing_group_ranking_flow_billing_group.py +++ b/src/rapidata/api_client/models/i_billing_group_ranking_flow_billing_group.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_billing_group_validation_set_billing_group.py b/src/rapidata/api_client/models/i_billing_group_validation_set_billing_group.py index 76e397c07..023ad3f46 100644 --- a/src/rapidata/api_client/models/i_billing_group_validation_set_billing_group.py +++ b/src/rapidata/api_client/models/i_billing_group_validation_set_billing_group.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_campaign_filter.py b/src/rapidata/api_client/models/i_campaign_filter.py index 42aab760a..5da141f7f 100644 --- a/src/rapidata/api_client/models/i_campaign_filter.py +++ b/src/rapidata/api_client/models/i_campaign_filter.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_campaign_filter_and_filter.py b/src/rapidata/api_client/models/i_campaign_filter_and_filter.py index 6d0f83182..6f25bb9d8 100644 --- a/src/rapidata/api_client/models/i_campaign_filter_and_filter.py +++ b/src/rapidata/api_client/models/i_campaign_filter_and_filter.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_campaign_filter_audience_state_filter.py b/src/rapidata/api_client/models/i_campaign_filter_audience_state_filter.py index a39407aca..b4034d3ee 100644 --- a/src/rapidata/api_client/models/i_campaign_filter_audience_state_filter.py +++ b/src/rapidata/api_client/models/i_campaign_filter_audience_state_filter.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_campaign_filter_campaign_cooldown_filter.py b/src/rapidata/api_client/models/i_campaign_filter_campaign_cooldown_filter.py index 2039bd08c..eb63b5487 100644 --- a/src/rapidata/api_client/models/i_campaign_filter_campaign_cooldown_filter.py +++ b/src/rapidata/api_client/models/i_campaign_filter_campaign_cooldown_filter.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_campaign_filter_campaign_id_filter.py b/src/rapidata/api_client/models/i_campaign_filter_campaign_id_filter.py index f013b8c8d..6ad29eacf 100644 --- a/src/rapidata/api_client/models/i_campaign_filter_campaign_id_filter.py +++ b/src/rapidata/api_client/models/i_campaign_filter_campaign_id_filter.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_campaign_filter_campaign_session_count_filter.py b/src/rapidata/api_client/models/i_campaign_filter_campaign_session_count_filter.py index 3f10c99ea..14ddb97df 100644 --- a/src/rapidata/api_client/models/i_campaign_filter_campaign_session_count_filter.py +++ b/src/rapidata/api_client/models/i_campaign_filter_campaign_session_count_filter.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_campaign_filter_country_filter.py b/src/rapidata/api_client/models/i_campaign_filter_country_filter.py index 206a37f99..71607d40d 100644 --- a/src/rapidata/api_client/models/i_campaign_filter_country_filter.py +++ b/src/rapidata/api_client/models/i_campaign_filter_country_filter.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_campaign_filter_demographic_filter.py b/src/rapidata/api_client/models/i_campaign_filter_demographic_filter.py index 18ce34503..028f03b86 100644 --- a/src/rapidata/api_client/models/i_campaign_filter_demographic_filter.py +++ b/src/rapidata/api_client/models/i_campaign_filter_demographic_filter.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_campaign_filter_device_filter.py b/src/rapidata/api_client/models/i_campaign_filter_device_filter.py index 7ef5c8c1f..18a5d5bcc 100644 --- a/src/rapidata/api_client/models/i_campaign_filter_device_filter.py +++ b/src/rapidata/api_client/models/i_campaign_filter_device_filter.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_campaign_filter_dsp_filter.py b/src/rapidata/api_client/models/i_campaign_filter_dsp_filter.py index a535df77f..3b563dabe 100644 --- a/src/rapidata/api_client/models/i_campaign_filter_dsp_filter.py +++ b/src/rapidata/api_client/models/i_campaign_filter_dsp_filter.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_campaign_filter_language_filter.py b/src/rapidata/api_client/models/i_campaign_filter_language_filter.py index 196a9d71f..fd0343243 100644 --- a/src/rapidata/api_client/models/i_campaign_filter_language_filter.py +++ b/src/rapidata/api_client/models/i_campaign_filter_language_filter.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_campaign_filter_new_user_filter.py b/src/rapidata/api_client/models/i_campaign_filter_new_user_filter.py index 15444ad45..dbf96b03b 100644 --- a/src/rapidata/api_client/models/i_campaign_filter_new_user_filter.py +++ b/src/rapidata/api_client/models/i_campaign_filter_new_user_filter.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_campaign_filter_not_filter.py b/src/rapidata/api_client/models/i_campaign_filter_not_filter.py index c1411e477..0f2992f87 100644 --- a/src/rapidata/api_client/models/i_campaign_filter_not_filter.py +++ b/src/rapidata/api_client/models/i_campaign_filter_not_filter.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_campaign_filter_or_filter.py b/src/rapidata/api_client/models/i_campaign_filter_or_filter.py index e968cafc6..399eab8ec 100644 --- a/src/rapidata/api_client/models/i_campaign_filter_or_filter.py +++ b/src/rapidata/api_client/models/i_campaign_filter_or_filter.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_campaign_filter_response_count_filter.py b/src/rapidata/api_client/models/i_campaign_filter_response_count_filter.py index 53dad06de..721e6ad37 100644 --- a/src/rapidata/api_client/models/i_campaign_filter_response_count_filter.py +++ b/src/rapidata/api_client/models/i_campaign_filter_response_count_filter.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_campaign_filter_user_action_restriction_filter.py b/src/rapidata/api_client/models/i_campaign_filter_user_action_restriction_filter.py index 9d68b3886..b1eba9009 100644 --- a/src/rapidata/api_client/models/i_campaign_filter_user_action_restriction_filter.py +++ b/src/rapidata/api_client/models/i_campaign_filter_user_action_restriction_filter.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_campaign_filter_user_score_filter.py b/src/rapidata/api_client/models/i_campaign_filter_user_score_filter.py index 2730e3ec0..a275702db 100644 --- a/src/rapidata/api_client/models/i_campaign_filter_user_score_filter.py +++ b/src/rapidata/api_client/models/i_campaign_filter_user_score_filter.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_campaign_selection.py b/src/rapidata/api_client/models/i_campaign_selection.py index b9823eed8..e42ecf742 100644 --- a/src/rapidata/api_client/models/i_campaign_selection.py +++ b/src/rapidata/api_client/models/i_campaign_selection.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_campaign_selection_ab_test_selection.py b/src/rapidata/api_client/models/i_campaign_selection_ab_test_selection.py index d574c4d0f..4eb8581cf 100644 --- a/src/rapidata/api_client/models/i_campaign_selection_ab_test_selection.py +++ b/src/rapidata/api_client/models/i_campaign_selection_ab_test_selection.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_campaign_selection_audience_selection.py b/src/rapidata/api_client/models/i_campaign_selection_audience_selection.py index 67b375b4f..124733889 100644 --- a/src/rapidata/api_client/models/i_campaign_selection_audience_selection.py +++ b/src/rapidata/api_client/models/i_campaign_selection_audience_selection.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_campaign_selection_capped_selection.py b/src/rapidata/api_client/models/i_campaign_selection_capped_selection.py index 9de314a95..e64deef20 100644 --- a/src/rapidata/api_client/models/i_campaign_selection_capped_selection.py +++ b/src/rapidata/api_client/models/i_campaign_selection_capped_selection.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_campaign_selection_conditional_validation_selection.py b/src/rapidata/api_client/models/i_campaign_selection_conditional_validation_selection.py index f25bef70f..0e78205a9 100644 --- a/src/rapidata/api_client/models/i_campaign_selection_conditional_validation_selection.py +++ b/src/rapidata/api_client/models/i_campaign_selection_conditional_validation_selection.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_campaign_selection_demographic_selection.py b/src/rapidata/api_client/models/i_campaign_selection_demographic_selection.py index 28eadc324..ffe2465b5 100644 --- a/src/rapidata/api_client/models/i_campaign_selection_demographic_selection.py +++ b/src/rapidata/api_client/models/i_campaign_selection_demographic_selection.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_campaign_selection_enforcing_selection.py b/src/rapidata/api_client/models/i_campaign_selection_enforcing_selection.py index 1c67819a1..449e81761 100644 --- a/src/rapidata/api_client/models/i_campaign_selection_enforcing_selection.py +++ b/src/rapidata/api_client/models/i_campaign_selection_enforcing_selection.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_campaign_selection_labeling_selection.py b/src/rapidata/api_client/models/i_campaign_selection_labeling_selection.py index 79854e945..d28bd8e9a 100644 --- a/src/rapidata/api_client/models/i_campaign_selection_labeling_selection.py +++ b/src/rapidata/api_client/models/i_campaign_selection_labeling_selection.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_campaign_selection_shuffling_selection.py b/src/rapidata/api_client/models/i_campaign_selection_shuffling_selection.py index edf18438d..177d376fd 100644 --- a/src/rapidata/api_client/models/i_campaign_selection_shuffling_selection.py +++ b/src/rapidata/api_client/models/i_campaign_selection_shuffling_selection.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_campaign_selection_static_selection.py b/src/rapidata/api_client/models/i_campaign_selection_static_selection.py index f56946f58..6d46823e8 100644 --- a/src/rapidata/api_client/models/i_campaign_selection_static_selection.py +++ b/src/rapidata/api_client/models/i_campaign_selection_static_selection.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_campaign_selection_validation_selection.py b/src/rapidata/api_client/models/i_campaign_selection_validation_selection.py index cfb5ce96b..0a5f8eae6 100644 --- a/src/rapidata/api_client/models/i_campaign_selection_validation_selection.py +++ b/src/rapidata/api_client/models/i_campaign_selection_validation_selection.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_cooldown_duration.py b/src/rapidata/api_client/models/i_cooldown_duration.py index 6a41f46ef..705f680ed 100644 --- a/src/rapidata/api_client/models/i_cooldown_duration.py +++ b/src/rapidata/api_client/models/i_cooldown_duration.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_cooldown_duration_fixed_cooldown_duration.py b/src/rapidata/api_client/models/i_cooldown_duration_fixed_cooldown_duration.py index 10a785cda..441e2ea7e 100644 --- a/src/rapidata/api_client/models/i_cooldown_duration_fixed_cooldown_duration.py +++ b/src/rapidata/api_client/models/i_cooldown_duration_fixed_cooldown_duration.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_cooldown_duration_random_cooldown_duration.py b/src/rapidata/api_client/models/i_cooldown_duration_random_cooldown_duration.py index 210362820..5945202b5 100644 --- a/src/rapidata/api_client/models/i_cooldown_duration_random_cooldown_duration.py +++ b/src/rapidata/api_client/models/i_cooldown_duration_random_cooldown_duration.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_dataset_clone_dataset.py b/src/rapidata/api_client/models/i_dataset_clone_dataset.py index efb6198c7..41e97214f 100644 --- a/src/rapidata/api_client/models/i_dataset_clone_dataset.py +++ b/src/rapidata/api_client/models/i_dataset_clone_dataset.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_example_payload.py b/src/rapidata/api_client/models/i_example_payload.py index ac45ea9eb..7eb438fdb 100644 --- a/src/rapidata/api_client/models/i_example_payload.py +++ b/src/rapidata/api_client/models/i_example_payload.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_example_payload_classify_example_payload.py b/src/rapidata/api_client/models/i_example_payload_classify_example_payload.py index 4d647f27f..318205f06 100644 --- a/src/rapidata/api_client/models/i_example_payload_classify_example_payload.py +++ b/src/rapidata/api_client/models/i_example_payload_classify_example_payload.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_example_payload_compare_example_payload.py b/src/rapidata/api_client/models/i_example_payload_compare_example_payload.py index 800b23905..d4fb19662 100644 --- a/src/rapidata/api_client/models/i_example_payload_compare_example_payload.py +++ b/src/rapidata/api_client/models/i_example_payload_compare_example_payload.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_example_payload_line_example_payload.py b/src/rapidata/api_client/models/i_example_payload_line_example_payload.py index ef0543daf..f31b23e2c 100644 --- a/src/rapidata/api_client/models/i_example_payload_line_example_payload.py +++ b/src/rapidata/api_client/models/i_example_payload_line_example_payload.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_example_payload_locate_example_payload.py b/src/rapidata/api_client/models/i_example_payload_locate_example_payload.py index b3ce7da1d..bfb5960b1 100644 --- a/src/rapidata/api_client/models/i_example_payload_locate_example_payload.py +++ b/src/rapidata/api_client/models/i_example_payload_locate_example_payload.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_example_payload_scrub_example_payload.py b/src/rapidata/api_client/models/i_example_payload_scrub_example_payload.py index d1fa0d994..c2b79de04 100644 --- a/src/rapidata/api_client/models/i_example_payload_scrub_example_payload.py +++ b/src/rapidata/api_client/models/i_example_payload_scrub_example_payload.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_example_payload_transcription_example_payload.py b/src/rapidata/api_client/models/i_example_payload_transcription_example_payload.py index 5207c1b98..f48b207c3 100644 --- a/src/rapidata/api_client/models/i_example_payload_transcription_example_payload.py +++ b/src/rapidata/api_client/models/i_example_payload_transcription_example_payload.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_example_truth.py b/src/rapidata/api_client/models/i_example_truth.py index 95550cf0e..72c0cf0e0 100644 --- a/src/rapidata/api_client/models/i_example_truth.py +++ b/src/rapidata/api_client/models/i_example_truth.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_example_truth_classify_example_truth.py b/src/rapidata/api_client/models/i_example_truth_classify_example_truth.py index dd5f376da..fe21a9aeb 100644 --- a/src/rapidata/api_client/models/i_example_truth_classify_example_truth.py +++ b/src/rapidata/api_client/models/i_example_truth_classify_example_truth.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_example_truth_compare_example_truth.py b/src/rapidata/api_client/models/i_example_truth_compare_example_truth.py index b76f7b1ed..8c8f18061 100644 --- a/src/rapidata/api_client/models/i_example_truth_compare_example_truth.py +++ b/src/rapidata/api_client/models/i_example_truth_compare_example_truth.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_example_truth_line_example_truth.py b/src/rapidata/api_client/models/i_example_truth_line_example_truth.py index 89b461b20..fcb5ae671 100644 --- a/src/rapidata/api_client/models/i_example_truth_line_example_truth.py +++ b/src/rapidata/api_client/models/i_example_truth_line_example_truth.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_example_truth_locate_example_truth.py b/src/rapidata/api_client/models/i_example_truth_locate_example_truth.py index ffb84b807..7e415b80a 100644 --- a/src/rapidata/api_client/models/i_example_truth_locate_example_truth.py +++ b/src/rapidata/api_client/models/i_example_truth_locate_example_truth.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_example_truth_scrub_example_truth.py b/src/rapidata/api_client/models/i_example_truth_scrub_example_truth.py index b3c1dd69b..25570b425 100644 --- a/src/rapidata/api_client/models/i_example_truth_scrub_example_truth.py +++ b/src/rapidata/api_client/models/i_example_truth_scrub_example_truth.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_example_truth_transcription_example_truth.py b/src/rapidata/api_client/models/i_example_truth_transcription_example_truth.py index 6f1b10397..6120a662c 100644 --- a/src/rapidata/api_client/models/i_example_truth_transcription_example_truth.py +++ b/src/rapidata/api_client/models/i_example_truth_transcription_example_truth.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_faucet_input.py b/src/rapidata/api_client/models/i_faucet_input.py index 6d7928467..66b05b6a6 100644 --- a/src/rapidata/api_client/models/i_faucet_input.py +++ b/src/rapidata/api_client/models/i_faucet_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_faucet_input_replicate_faucet_input.py b/src/rapidata/api_client/models/i_faucet_input_replicate_faucet_input.py index c98eeeef0..f99211888 100644 --- a/src/rapidata/api_client/models/i_faucet_input_replicate_faucet_input.py +++ b/src/rapidata/api_client/models/i_faucet_input_replicate_faucet_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_faucet_output.py b/src/rapidata/api_client/models/i_faucet_output.py index 482be0269..c65a7db8d 100644 --- a/src/rapidata/api_client/models/i_faucet_output.py +++ b/src/rapidata/api_client/models/i_faucet_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_faucet_output_managed_faucet_output.py b/src/rapidata/api_client/models/i_faucet_output_managed_faucet_output.py index a2c3aa28c..56a0f73d7 100644 --- a/src/rapidata/api_client/models/i_faucet_output_managed_faucet_output.py +++ b/src/rapidata/api_client/models/i_faucet_output_managed_faucet_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_faucet_output_replicate_faucet_output.py b/src/rapidata/api_client/models/i_faucet_output_replicate_faucet_output.py index a3624304a..ed036296c 100644 --- a/src/rapidata/api_client/models/i_faucet_output_replicate_faucet_output.py +++ b/src/rapidata/api_client/models/i_faucet_output_replicate_faucet_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_flow.py b/src/rapidata/api_client/models/i_flow.py index f230c9a1f..aa6f3bb17 100644 --- a/src/rapidata/api_client/models/i_flow.py +++ b/src/rapidata/api_client/models/i_flow.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_flow_ranking_flow.py b/src/rapidata/api_client/models/i_flow_ranking_flow.py index 49d367f59..d8383bf55 100644 --- a/src/rapidata/api_client/models/i_flow_ranking_flow.py +++ b/src/rapidata/api_client/models/i_flow_ranking_flow.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_graduation_rule.py b/src/rapidata/api_client/models/i_graduation_rule.py index 517b546cb..8842de45b 100644 --- a/src/rapidata/api_client/models/i_graduation_rule.py +++ b/src/rapidata/api_client/models/i_graduation_rule.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_graduation_rule_accepted_free_text_rule.py b/src/rapidata/api_client/models/i_graduation_rule_accepted_free_text_rule.py index 4b4fd4cc8..da0097521 100644 --- a/src/rapidata/api_client/models/i_graduation_rule_accepted_free_text_rule.py +++ b/src/rapidata/api_client/models/i_graduation_rule_accepted_free_text_rule.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_graduation_rule_score_threshold_rule.py b/src/rapidata/api_client/models/i_graduation_rule_score_threshold_rule.py index 5196f59ac..b5fec9068 100644 --- a/src/rapidata/api_client/models/i_graduation_rule_score_threshold_rule.py +++ b/src/rapidata/api_client/models/i_graduation_rule_score_threshold_rule.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_graduation_rule_task_accuracy_rule.py b/src/rapidata/api_client/models/i_graduation_rule_task_accuracy_rule.py index b746bded0..c03f91520 100644 --- a/src/rapidata/api_client/models/i_graduation_rule_task_accuracy_rule.py +++ b/src/rapidata/api_client/models/i_graduation_rule_task_accuracy_rule.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_job_results.py b/src/rapidata/api_client/models/i_job_results.py index 3e1adf210..8d204238f 100644 --- a/src/rapidata/api_client/models/i_job_results.py +++ b/src/rapidata/api_client/models/i_job_results.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_job_results_grouped_ranking_results.py b/src/rapidata/api_client/models/i_job_results_grouped_ranking_results.py index 9f9922638..4a1655853 100644 --- a/src/rapidata/api_client/models/i_job_results_grouped_ranking_results.py +++ b/src/rapidata/api_client/models/i_job_results_grouped_ranking_results.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_job_results_ranking_results.py b/src/rapidata/api_client/models/i_job_results_ranking_results.py index 0bedfb1f5..df48dd0f2 100644 --- a/src/rapidata/api_client/models/i_job_results_ranking_results.py +++ b/src/rapidata/api_client/models/i_job_results_ranking_results.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_job_results_rapid_results.py b/src/rapidata/api_client/models/i_job_results_rapid_results.py index ab708109c..a8b3117ef 100644 --- a/src/rapidata/api_client/models/i_job_results_rapid_results.py +++ b/src/rapidata/api_client/models/i_job_results_rapid_results.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_line_item.py b/src/rapidata/api_client/models/i_line_item.py index 2dbb696aa..2a9d6a1bb 100644 --- a/src/rapidata/api_client/models/i_line_item.py +++ b/src/rapidata/api_client/models/i_line_item.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_line_item_minimum_spend_commitment.py b/src/rapidata/api_client/models/i_line_item_minimum_spend_commitment.py index 071c2925b..768940653 100644 --- a/src/rapidata/api_client/models/i_line_item_minimum_spend_commitment.py +++ b/src/rapidata/api_client/models/i_line_item_minimum_spend_commitment.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_line_item_other_charge.py b/src/rapidata/api_client/models/i_line_item_other_charge.py index 6395a4236..bfe79bdbe 100644 --- a/src/rapidata/api_client/models/i_line_item_other_charge.py +++ b/src/rapidata/api_client/models/i_line_item_other_charge.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_line_item_platform_fee.py b/src/rapidata/api_client/models/i_line_item_platform_fee.py index b611a521c..1fb92b33f 100644 --- a/src/rapidata/api_client/models/i_line_item_platform_fee.py +++ b/src/rapidata/api_client/models/i_line_item_platform_fee.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_line_item_refund.py b/src/rapidata/api_client/models/i_line_item_refund.py index aeb2d414f..f7367d919 100644 --- a/src/rapidata/api_client/models/i_line_item_refund.py +++ b/src/rapidata/api_client/models/i_line_item_refund.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_line_item_running_cost.py b/src/rapidata/api_client/models/i_line_item_running_cost.py index 9f349ae94..c3a4f3ef8 100644 --- a/src/rapidata/api_client/models/i_line_item_running_cost.py +++ b/src/rapidata/api_client/models/i_line_item_running_cost.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_line_item_volume_discount.py b/src/rapidata/api_client/models/i_line_item_volume_discount.py index a08a9b673..ce95e1aa1 100644 --- a/src/rapidata/api_client/models/i_line_item_volume_discount.py +++ b/src/rapidata/api_client/models/i_line_item_volume_discount.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_metadata.py b/src/rapidata/api_client/models/i_metadata.py index ba44a9691..81f97cc7c 100644 --- a/src/rapidata/api_client/models/i_metadata.py +++ b/src/rapidata/api_client/models/i_metadata.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_metadata_classification_metadata.py b/src/rapidata/api_client/models/i_metadata_classification_metadata.py index 071a4e1af..69d9536c8 100644 --- a/src/rapidata/api_client/models/i_metadata_classification_metadata.py +++ b/src/rapidata/api_client/models/i_metadata_classification_metadata.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_metadata_count_metadata.py b/src/rapidata/api_client/models/i_metadata_count_metadata.py index 9c3233b3e..841e850f8 100644 --- a/src/rapidata/api_client/models/i_metadata_count_metadata.py +++ b/src/rapidata/api_client/models/i_metadata_count_metadata.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_metadata_file_type_metadata.py b/src/rapidata/api_client/models/i_metadata_file_type_metadata.py index dc4627a45..ed39aacf3 100644 --- a/src/rapidata/api_client/models/i_metadata_file_type_metadata.py +++ b/src/rapidata/api_client/models/i_metadata_file_type_metadata.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_metadata_image_dimension_metadata.py b/src/rapidata/api_client/models/i_metadata_image_dimension_metadata.py index c4b4e2cbf..359d7bbab 100644 --- a/src/rapidata/api_client/models/i_metadata_image_dimension_metadata.py +++ b/src/rapidata/api_client/models/i_metadata_image_dimension_metadata.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_metadata_input_text_metadata_input.py b/src/rapidata/api_client/models/i_metadata_input_text_metadata_input.py index ae8b292db..05a94b430 100644 --- a/src/rapidata/api_client/models/i_metadata_input_text_metadata_input.py +++ b/src/rapidata/api_client/models/i_metadata_input_text_metadata_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_metadata_location_metadata.py b/src/rapidata/api_client/models/i_metadata_location_metadata.py index 55e638043..33e308b74 100644 --- a/src/rapidata/api_client/models/i_metadata_location_metadata.py +++ b/src/rapidata/api_client/models/i_metadata_location_metadata.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_metadata_original_filename_metadata.py b/src/rapidata/api_client/models/i_metadata_original_filename_metadata.py index da08fee0c..cb9b2ed97 100644 --- a/src/rapidata/api_client/models/i_metadata_original_filename_metadata.py +++ b/src/rapidata/api_client/models/i_metadata_original_filename_metadata.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_metadata_source_url_metadata.py b/src/rapidata/api_client/models/i_metadata_source_url_metadata.py index 1327ab568..fed84a630 100644 --- a/src/rapidata/api_client/models/i_metadata_source_url_metadata.py +++ b/src/rapidata/api_client/models/i_metadata_source_url_metadata.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_metadata_streams_metadata.py b/src/rapidata/api_client/models/i_metadata_streams_metadata.py index 8c18a2284..51d55cffe 100644 --- a/src/rapidata/api_client/models/i_metadata_streams_metadata.py +++ b/src/rapidata/api_client/models/i_metadata_streams_metadata.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_metadata_text_metadata.py b/src/rapidata/api_client/models/i_metadata_text_metadata.py index 95230b5bc..4a6a3c8b9 100644 --- a/src/rapidata/api_client/models/i_metadata_text_metadata.py +++ b/src/rapidata/api_client/models/i_metadata_text_metadata.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_metadata_video_duration_metadata.py b/src/rapidata/api_client/models/i_metadata_video_duration_metadata.py index b7c243f80..a3e51416d 100644 --- a/src/rapidata/api_client/models/i_metadata_video_duration_metadata.py +++ b/src/rapidata/api_client/models/i_metadata_video_duration_metadata.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_order_workflow_input.py b/src/rapidata/api_client/models/i_order_workflow_input.py index a5987a9bf..70748c3e2 100644 --- a/src/rapidata/api_client/models/i_order_workflow_input.py +++ b/src/rapidata/api_client/models/i_order_workflow_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_order_workflow_input_evaluation_workflow_input.py b/src/rapidata/api_client/models/i_order_workflow_input_evaluation_workflow_input.py index b49f2d519..95e563577 100644 --- a/src/rapidata/api_client/models/i_order_workflow_input_evaluation_workflow_input.py +++ b/src/rapidata/api_client/models/i_order_workflow_input_evaluation_workflow_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_order_workflow_input_grouped_ranking_workflow_input.py b/src/rapidata/api_client/models/i_order_workflow_input_grouped_ranking_workflow_input.py index 34b3ba3c9..e2beda96e 100644 --- a/src/rapidata/api_client/models/i_order_workflow_input_grouped_ranking_workflow_input.py +++ b/src/rapidata/api_client/models/i_order_workflow_input_grouped_ranking_workflow_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_order_workflow_input_simple_workflow_input.py b/src/rapidata/api_client/models/i_order_workflow_input_simple_workflow_input.py index a475d4e35..e6eccd080 100644 --- a/src/rapidata/api_client/models/i_order_workflow_input_simple_workflow_input.py +++ b/src/rapidata/api_client/models/i_order_workflow_input_simple_workflow_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_pair_maker_config.py b/src/rapidata/api_client/models/i_pair_maker_config.py index 5f51a15ab..2c5b113c0 100644 --- a/src/rapidata/api_client/models/i_pair_maker_config.py +++ b/src/rapidata/api_client/models/i_pair_maker_config.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_pair_maker_config_full_permutation_pair_maker_config.py b/src/rapidata/api_client/models/i_pair_maker_config_full_permutation_pair_maker_config.py index b17688c38..e0fe9953f 100644 --- a/src/rapidata/api_client/models/i_pair_maker_config_full_permutation_pair_maker_config.py +++ b/src/rapidata/api_client/models/i_pair_maker_config_full_permutation_pair_maker_config.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_pair_maker_config_online_pair_maker_config.py b/src/rapidata/api_client/models/i_pair_maker_config_online_pair_maker_config.py index e993ab8c5..5cd1eab0f 100644 --- a/src/rapidata/api_client/models/i_pair_maker_config_online_pair_maker_config.py +++ b/src/rapidata/api_client/models/i_pair_maker_config_online_pair_maker_config.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_pair_maker_information.py b/src/rapidata/api_client/models/i_pair_maker_information.py index 70dc7ae43..7fa4368aa 100644 --- a/src/rapidata/api_client/models/i_pair_maker_information.py +++ b/src/rapidata/api_client/models/i_pair_maker_information.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_pair_maker_information_full_permutation_pair_maker_information.py b/src/rapidata/api_client/models/i_pair_maker_information_full_permutation_pair_maker_information.py index 4aaae715f..03aa0b4e3 100644 --- a/src/rapidata/api_client/models/i_pair_maker_information_full_permutation_pair_maker_information.py +++ b/src/rapidata/api_client/models/i_pair_maker_information_full_permutation_pair_maker_information.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_pair_maker_information_online_pair_maker_information.py b/src/rapidata/api_client/models/i_pair_maker_information_online_pair_maker_information.py index adb435162..b6b88cff1 100644 --- a/src/rapidata/api_client/models/i_pair_maker_information_online_pair_maker_information.py +++ b/src/rapidata/api_client/models/i_pair_maker_information_online_pair_maker_information.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_pipeline_artifact_create_dataset_artifact.py b/src/rapidata/api_client/models/i_pipeline_artifact_create_dataset_artifact.py index efc0e924a..d32c630eb 100644 --- a/src/rapidata/api_client/models/i_pipeline_artifact_create_dataset_artifact.py +++ b/src/rapidata/api_client/models/i_pipeline_artifact_create_dataset_artifact.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_pipeline_create_simple_pipeline.py b/src/rapidata/api_client/models/i_pipeline_create_simple_pipeline.py index 3bfea80bb..54ea0059a 100644 --- a/src/rapidata/api_client/models/i_pipeline_create_simple_pipeline.py +++ b/src/rapidata/api_client/models/i_pipeline_create_simple_pipeline.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_pipeline_step.py b/src/rapidata/api_client/models/i_pipeline_step.py index 8f3f63be6..9cb87182d 100644 --- a/src/rapidata/api_client/models/i_pipeline_step.py +++ b/src/rapidata/api_client/models/i_pipeline_step.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_pipeline_step_dataset_evaluation_step.py b/src/rapidata/api_client/models/i_pipeline_step_dataset_evaluation_step.py index 7562a06ef..143113974 100644 --- a/src/rapidata/api_client/models/i_pipeline_step_dataset_evaluation_step.py +++ b/src/rapidata/api_client/models/i_pipeline_step_dataset_evaluation_step.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_pipeline_step_send_completion_mail_step.py b/src/rapidata/api_client/models/i_pipeline_step_send_completion_mail_step.py index 0aa91fb59..024f32ec5 100644 --- a/src/rapidata/api_client/models/i_pipeline_step_send_completion_mail_step.py +++ b/src/rapidata/api_client/models/i_pipeline_step_send_completion_mail_step.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_pipeline_step_workflow_aggregation_step.py b/src/rapidata/api_client/models/i_pipeline_step_workflow_aggregation_step.py index a1dc42d68..63d411a5c 100644 --- a/src/rapidata/api_client/models/i_pipeline_step_workflow_aggregation_step.py +++ b/src/rapidata/api_client/models/i_pipeline_step_workflow_aggregation_step.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_pipeline_step_workflow_labeling_step.py b/src/rapidata/api_client/models/i_pipeline_step_workflow_labeling_step.py index 11bde1276..49bda4bcf 100644 --- a/src/rapidata/api_client/models/i_pipeline_step_workflow_labeling_step.py +++ b/src/rapidata/api_client/models/i_pipeline_step_workflow_labeling_step.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_program_action.py b/src/rapidata/api_client/models/i_program_action.py index 117302750..c6f29227b 100644 --- a/src/rapidata/api_client/models/i_program_action.py +++ b/src/rapidata/api_client/models/i_program_action.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_program_action_complete_action.py b/src/rapidata/api_client/models/i_program_action_complete_action.py index b7d19092e..cea990b9d 100644 --- a/src/rapidata/api_client/models/i_program_action_complete_action.py +++ b/src/rapidata/api_client/models/i_program_action_complete_action.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_program_action_serve_rapid_action.py b/src/rapidata/api_client/models/i_program_action_serve_rapid_action.py index e8f3175cb..bb53ef956 100644 --- a/src/rapidata/api_client/models/i_program_action_serve_rapid_action.py +++ b/src/rapidata/api_client/models/i_program_action_serve_rapid_action.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_program_node.py b/src/rapidata/api_client/models/i_program_node.py index d3d95308b..56018a0db 100644 --- a/src/rapidata/api_client/models/i_program_node.py +++ b/src/rapidata/api_client/models/i_program_node.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_program_node_action_node.py b/src/rapidata/api_client/models/i_program_node_action_node.py index 85635af68..b70183c6b 100644 --- a/src/rapidata/api_client/models/i_program_node_action_node.py +++ b/src/rapidata/api_client/models/i_program_node_action_node.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_program_node_cases_node.py b/src/rapidata/api_client/models/i_program_node_cases_node.py index 18fe5a8e3..b54a26143 100644 --- a/src/rapidata/api_client/models/i_program_node_cases_node.py +++ b/src/rapidata/api_client/models/i_program_node_cases_node.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_program_node_weighted_split_node.py b/src/rapidata/api_client/models/i_program_node_weighted_split_node.py index 5ede27597..03ab65c8f 100644 --- a/src/rapidata/api_client/models/i_program_node_weighted_split_node.py +++ b/src/rapidata/api_client/models/i_program_node_weighted_split_node.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_program_predicate.py b/src/rapidata/api_client/models/i_program_predicate.py index 6013a184d..86f83c7b0 100644 --- a/src/rapidata/api_client/models/i_program_predicate.py +++ b/src/rapidata/api_client/models/i_program_predicate.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_program_predicate_accuracy_predicate.py b/src/rapidata/api_client/models/i_program_predicate_accuracy_predicate.py index f8e8dd527..101bbc17f 100644 --- a/src/rapidata/api_client/models/i_program_predicate_accuracy_predicate.py +++ b/src/rapidata/api_client/models/i_program_predicate_accuracy_predicate.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_program_predicate_answered_count_predicate.py b/src/rapidata/api_client/models/i_program_predicate_answered_count_predicate.py index 71ec84cff..5815f9b2a 100644 --- a/src/rapidata/api_client/models/i_program_predicate_answered_count_predicate.py +++ b/src/rapidata/api_client/models/i_program_predicate_answered_count_predicate.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_program_predicate_consecutive_correct_predicate.py b/src/rapidata/api_client/models/i_program_predicate_consecutive_correct_predicate.py index 260267726..1333b02fd 100644 --- a/src/rapidata/api_client/models/i_program_predicate_consecutive_correct_predicate.py +++ b/src/rapidata/api_client/models/i_program_predicate_consecutive_correct_predicate.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_program_predicate_consecutive_incorrect_predicate.py b/src/rapidata/api_client/models/i_program_predicate_consecutive_incorrect_predicate.py index 0bdba13b7..382d3469a 100644 --- a/src/rapidata/api_client/models/i_program_predicate_consecutive_incorrect_predicate.py +++ b/src/rapidata/api_client/models/i_program_predicate_consecutive_incorrect_predicate.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_program_predicate_correct_count_predicate.py b/src/rapidata/api_client/models/i_program_predicate_correct_count_predicate.py index 17e6a5a97..dd7381307 100644 --- a/src/rapidata/api_client/models/i_program_predicate_correct_count_predicate.py +++ b/src/rapidata/api_client/models/i_program_predicate_correct_count_predicate.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_program_predicate_time_elapsed_predicate.py b/src/rapidata/api_client/models/i_program_predicate_time_elapsed_predicate.py index c35994d81..ec822fa4a 100644 --- a/src/rapidata/api_client/models/i_program_predicate_time_elapsed_predicate.py +++ b/src/rapidata/api_client/models/i_program_predicate_time_elapsed_predicate.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_program_predicate_user_attribute_predicate.py b/src/rapidata/api_client/models/i_program_predicate_user_attribute_predicate.py index af5ec0a18..d626a9033 100644 --- a/src/rapidata/api_client/models/i_program_predicate_user_attribute_predicate.py +++ b/src/rapidata/api_client/models/i_program_predicate_user_attribute_predicate.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_program_predicate_user_score_predicate.py b/src/rapidata/api_client/models/i_program_predicate_user_score_predicate.py index ba8f8e0ac..21c296baa 100644 --- a/src/rapidata/api_client/models/i_program_predicate_user_score_predicate.py +++ b/src/rapidata/api_client/models/i_program_predicate_user_score_predicate.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_ranking_config.py b/src/rapidata/api_client/models/i_ranking_config.py index 25aa59bf5..5a8264348 100644 --- a/src/rapidata/api_client/models/i_ranking_config.py +++ b/src/rapidata/api_client/models/i_ranking_config.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_ranking_config_bradley_terry_ranking_config.py b/src/rapidata/api_client/models/i_ranking_config_bradley_terry_ranking_config.py index 7ca3987d5..ae7e19a1e 100644 --- a/src/rapidata/api_client/models/i_ranking_config_bradley_terry_ranking_config.py +++ b/src/rapidata/api_client/models/i_ranking_config_bradley_terry_ranking_config.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_ranking_config_elo_config.py b/src/rapidata/api_client/models/i_ranking_config_elo_config.py index 8e4e4187e..e4508cd01 100644 --- a/src/rapidata/api_client/models/i_ranking_config_elo_config.py +++ b/src/rapidata/api_client/models/i_ranking_config_elo_config.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_rapid.py b/src/rapidata/api_client/models/i_rapid.py index 75fcdf088..2d42ac733 100644 --- a/src/rapidata/api_client/models/i_rapid.py +++ b/src/rapidata/api_client/models/i_rapid.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_rapid_attach_category_rapid.py b/src/rapidata/api_client/models/i_rapid_attach_category_rapid.py index 4aceabd8a..e5f29bf6c 100644 --- a/src/rapidata/api_client/models/i_rapid_attach_category_rapid.py +++ b/src/rapidata/api_client/models/i_rapid_attach_category_rapid.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_rapid_blueprint.py b/src/rapidata/api_client/models/i_rapid_blueprint.py index 9caac252f..ed31e9cfa 100644 --- a/src/rapidata/api_client/models/i_rapid_blueprint.py +++ b/src/rapidata/api_client/models/i_rapid_blueprint.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_rapid_blueprint_attach_category_rapid_blueprint.py b/src/rapidata/api_client/models/i_rapid_blueprint_attach_category_rapid_blueprint.py index 27c2ac0a7..589c69f43 100644 --- a/src/rapidata/api_client/models/i_rapid_blueprint_attach_category_rapid_blueprint.py +++ b/src/rapidata/api_client/models/i_rapid_blueprint_attach_category_rapid_blueprint.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_rapid_blueprint_bounding_box_rapid_blueprint.py b/src/rapidata/api_client/models/i_rapid_blueprint_bounding_box_rapid_blueprint.py index 53211c8f9..e44e2b149 100644 --- a/src/rapidata/api_client/models/i_rapid_blueprint_bounding_box_rapid_blueprint.py +++ b/src/rapidata/api_client/models/i_rapid_blueprint_bounding_box_rapid_blueprint.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_rapid_blueprint_compare_rapid_blueprint.py b/src/rapidata/api_client/models/i_rapid_blueprint_compare_rapid_blueprint.py index dfd2962a5..5e8306920 100644 --- a/src/rapidata/api_client/models/i_rapid_blueprint_compare_rapid_blueprint.py +++ b/src/rapidata/api_client/models/i_rapid_blueprint_compare_rapid_blueprint.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_rapid_blueprint_free_text_rapid_blueprint.py b/src/rapidata/api_client/models/i_rapid_blueprint_free_text_rapid_blueprint.py index c5a9d095a..7e46a545e 100644 --- a/src/rapidata/api_client/models/i_rapid_blueprint_free_text_rapid_blueprint.py +++ b/src/rapidata/api_client/models/i_rapid_blueprint_free_text_rapid_blueprint.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_rapid_blueprint_line_rapid_blueprint.py b/src/rapidata/api_client/models/i_rapid_blueprint_line_rapid_blueprint.py index 69a929559..151c7c46b 100644 --- a/src/rapidata/api_client/models/i_rapid_blueprint_line_rapid_blueprint.py +++ b/src/rapidata/api_client/models/i_rapid_blueprint_line_rapid_blueprint.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_rapid_blueprint_locate_rapid_blueprint.py b/src/rapidata/api_client/models/i_rapid_blueprint_locate_rapid_blueprint.py index e02a6c65c..3108f7146 100644 --- a/src/rapidata/api_client/models/i_rapid_blueprint_locate_rapid_blueprint.py +++ b/src/rapidata/api_client/models/i_rapid_blueprint_locate_rapid_blueprint.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_rapid_blueprint_named_entity_rapid_blueprint.py b/src/rapidata/api_client/models/i_rapid_blueprint_named_entity_rapid_blueprint.py index 92791ee7f..0f8e32ccb 100644 --- a/src/rapidata/api_client/models/i_rapid_blueprint_named_entity_rapid_blueprint.py +++ b/src/rapidata/api_client/models/i_rapid_blueprint_named_entity_rapid_blueprint.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_rapid_blueprint_polygon_rapid_blueprint.py b/src/rapidata/api_client/models/i_rapid_blueprint_polygon_rapid_blueprint.py index 910ba3c25..57d59b3a2 100644 --- a/src/rapidata/api_client/models/i_rapid_blueprint_polygon_rapid_blueprint.py +++ b/src/rapidata/api_client/models/i_rapid_blueprint_polygon_rapid_blueprint.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_rapid_blueprint_scrub_rapid_blueprint.py b/src/rapidata/api_client/models/i_rapid_blueprint_scrub_rapid_blueprint.py index 5090adfe2..9694d3986 100644 --- a/src/rapidata/api_client/models/i_rapid_blueprint_scrub_rapid_blueprint.py +++ b/src/rapidata/api_client/models/i_rapid_blueprint_scrub_rapid_blueprint.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_rapid_blueprint_transcription_rapid_blueprint.py b/src/rapidata/api_client/models/i_rapid_blueprint_transcription_rapid_blueprint.py index d5bc62ce4..738131713 100644 --- a/src/rapidata/api_client/models/i_rapid_blueprint_transcription_rapid_blueprint.py +++ b/src/rapidata/api_client/models/i_rapid_blueprint_transcription_rapid_blueprint.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_rapid_bounding_box_rapid.py b/src/rapidata/api_client/models/i_rapid_bounding_box_rapid.py index 41f4a25ef..44067ea96 100644 --- a/src/rapidata/api_client/models/i_rapid_bounding_box_rapid.py +++ b/src/rapidata/api_client/models/i_rapid_bounding_box_rapid.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_rapid_compare_rapid.py b/src/rapidata/api_client/models/i_rapid_compare_rapid.py index d8b3f7fe3..fcba5efb1 100644 --- a/src/rapidata/api_client/models/i_rapid_compare_rapid.py +++ b/src/rapidata/api_client/models/i_rapid_compare_rapid.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_rapid_free_text_rapid.py b/src/rapidata/api_client/models/i_rapid_free_text_rapid.py index a2b9c9941..137fde584 100644 --- a/src/rapidata/api_client/models/i_rapid_free_text_rapid.py +++ b/src/rapidata/api_client/models/i_rapid_free_text_rapid.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_rapid_line_rapid.py b/src/rapidata/api_client/models/i_rapid_line_rapid.py index 959aa3ce8..d23842bda 100644 --- a/src/rapidata/api_client/models/i_rapid_line_rapid.py +++ b/src/rapidata/api_client/models/i_rapid_line_rapid.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_rapid_locate_rapid.py b/src/rapidata/api_client/models/i_rapid_locate_rapid.py index 652bca0b6..2fcb6a96d 100644 --- a/src/rapidata/api_client/models/i_rapid_locate_rapid.py +++ b/src/rapidata/api_client/models/i_rapid_locate_rapid.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_rapid_named_entity_rapid.py b/src/rapidata/api_client/models/i_rapid_named_entity_rapid.py index 3f866b005..c1cfcc8dd 100644 --- a/src/rapidata/api_client/models/i_rapid_named_entity_rapid.py +++ b/src/rapidata/api_client/models/i_rapid_named_entity_rapid.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_rapid_payload.py b/src/rapidata/api_client/models/i_rapid_payload.py index 5316ae7c3..89c1179ba 100644 --- a/src/rapidata/api_client/models/i_rapid_payload.py +++ b/src/rapidata/api_client/models/i_rapid_payload.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_rapid_payload_bounding_box_payload.py b/src/rapidata/api_client/models/i_rapid_payload_bounding_box_payload.py index 50524a08f..4e1535a15 100644 --- a/src/rapidata/api_client/models/i_rapid_payload_bounding_box_payload.py +++ b/src/rapidata/api_client/models/i_rapid_payload_bounding_box_payload.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_rapid_payload_classify_payload.py b/src/rapidata/api_client/models/i_rapid_payload_classify_payload.py index cb5005796..f2eacae11 100644 --- a/src/rapidata/api_client/models/i_rapid_payload_classify_payload.py +++ b/src/rapidata/api_client/models/i_rapid_payload_classify_payload.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_rapid_payload_compare_payload.py b/src/rapidata/api_client/models/i_rapid_payload_compare_payload.py index 03e5ff59c..c08d69993 100644 --- a/src/rapidata/api_client/models/i_rapid_payload_compare_payload.py +++ b/src/rapidata/api_client/models/i_rapid_payload_compare_payload.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_rapid_payload_free_text_payload.py b/src/rapidata/api_client/models/i_rapid_payload_free_text_payload.py index c529dea3b..bd0520e8d 100644 --- a/src/rapidata/api_client/models/i_rapid_payload_free_text_payload.py +++ b/src/rapidata/api_client/models/i_rapid_payload_free_text_payload.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_rapid_payload_line_payload.py b/src/rapidata/api_client/models/i_rapid_payload_line_payload.py index 83c8a322e..e9266b1f9 100644 --- a/src/rapidata/api_client/models/i_rapid_payload_line_payload.py +++ b/src/rapidata/api_client/models/i_rapid_payload_line_payload.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_rapid_payload_locate_payload.py b/src/rapidata/api_client/models/i_rapid_payload_locate_payload.py index c5f59a7bc..419cb6ed8 100644 --- a/src/rapidata/api_client/models/i_rapid_payload_locate_payload.py +++ b/src/rapidata/api_client/models/i_rapid_payload_locate_payload.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_rapid_payload_named_entity_payload.py b/src/rapidata/api_client/models/i_rapid_payload_named_entity_payload.py index d9033837c..5e4cf5ae4 100644 --- a/src/rapidata/api_client/models/i_rapid_payload_named_entity_payload.py +++ b/src/rapidata/api_client/models/i_rapid_payload_named_entity_payload.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_rapid_payload_polygon_payload.py b/src/rapidata/api_client/models/i_rapid_payload_polygon_payload.py index 9eff3ff1f..e723ed717 100644 --- a/src/rapidata/api_client/models/i_rapid_payload_polygon_payload.py +++ b/src/rapidata/api_client/models/i_rapid_payload_polygon_payload.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_rapid_payload_scrub_payload.py b/src/rapidata/api_client/models/i_rapid_payload_scrub_payload.py index e560c9044..c4e300eea 100644 --- a/src/rapidata/api_client/models/i_rapid_payload_scrub_payload.py +++ b/src/rapidata/api_client/models/i_rapid_payload_scrub_payload.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_rapid_payload_transcription_payload.py b/src/rapidata/api_client/models/i_rapid_payload_transcription_payload.py index 630d1f61b..9c4bf3c3b 100644 --- a/src/rapidata/api_client/models/i_rapid_payload_transcription_payload.py +++ b/src/rapidata/api_client/models/i_rapid_payload_transcription_payload.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_rapid_polygon_rapid.py b/src/rapidata/api_client/models/i_rapid_polygon_rapid.py index e287875c8..d57729af8 100644 --- a/src/rapidata/api_client/models/i_rapid_polygon_rapid.py +++ b/src/rapidata/api_client/models/i_rapid_polygon_rapid.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_rapid_result.py b/src/rapidata/api_client/models/i_rapid_result.py index 50160e30f..16e7bf960 100644 --- a/src/rapidata/api_client/models/i_rapid_result.py +++ b/src/rapidata/api_client/models/i_rapid_result.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_rapid_result_attach_category_result.py b/src/rapidata/api_client/models/i_rapid_result_attach_category_result.py index 98c5869f8..57da74e93 100644 --- a/src/rapidata/api_client/models/i_rapid_result_attach_category_result.py +++ b/src/rapidata/api_client/models/i_rapid_result_attach_category_result.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_rapid_result_bounding_box_result.py b/src/rapidata/api_client/models/i_rapid_result_bounding_box_result.py index 811ca4da8..db264324c 100644 --- a/src/rapidata/api_client/models/i_rapid_result_bounding_box_result.py +++ b/src/rapidata/api_client/models/i_rapid_result_bounding_box_result.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_rapid_result_compare_result.py b/src/rapidata/api_client/models/i_rapid_result_compare_result.py index 88d7bcbf0..5db64adb0 100644 --- a/src/rapidata/api_client/models/i_rapid_result_compare_result.py +++ b/src/rapidata/api_client/models/i_rapid_result_compare_result.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_rapid_result_free_text_result.py b/src/rapidata/api_client/models/i_rapid_result_free_text_result.py index 5791a9940..91cd1b996 100644 --- a/src/rapidata/api_client/models/i_rapid_result_free_text_result.py +++ b/src/rapidata/api_client/models/i_rapid_result_free_text_result.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_rapid_result_line_result.py b/src/rapidata/api_client/models/i_rapid_result_line_result.py index e1d44e693..0142b8bca 100644 --- a/src/rapidata/api_client/models/i_rapid_result_line_result.py +++ b/src/rapidata/api_client/models/i_rapid_result_line_result.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_rapid_result_locate_result.py b/src/rapidata/api_client/models/i_rapid_result_locate_result.py index b10c48a48..240bf2955 100644 --- a/src/rapidata/api_client/models/i_rapid_result_locate_result.py +++ b/src/rapidata/api_client/models/i_rapid_result_locate_result.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_rapid_result_named_entity_result.py b/src/rapidata/api_client/models/i_rapid_result_named_entity_result.py index e42705d91..1793731df 100644 --- a/src/rapidata/api_client/models/i_rapid_result_named_entity_result.py +++ b/src/rapidata/api_client/models/i_rapid_result_named_entity_result.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_rapid_result_polygon_result.py b/src/rapidata/api_client/models/i_rapid_result_polygon_result.py index ffa80e5fe..a91908539 100644 --- a/src/rapidata/api_client/models/i_rapid_result_polygon_result.py +++ b/src/rapidata/api_client/models/i_rapid_result_polygon_result.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_rapid_result_scrub_result.py b/src/rapidata/api_client/models/i_rapid_result_scrub_result.py index 82bc51077..a96d0937c 100644 --- a/src/rapidata/api_client/models/i_rapid_result_scrub_result.py +++ b/src/rapidata/api_client/models/i_rapid_result_scrub_result.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_rapid_result_skip_result.py b/src/rapidata/api_client/models/i_rapid_result_skip_result.py index 765746f4d..c5bfc1cbf 100644 --- a/src/rapidata/api_client/models/i_rapid_result_skip_result.py +++ b/src/rapidata/api_client/models/i_rapid_result_skip_result.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_rapid_result_transcription_result.py b/src/rapidata/api_client/models/i_rapid_result_transcription_result.py index 9112c9446..ac7cd1dec 100644 --- a/src/rapidata/api_client/models/i_rapid_result_transcription_result.py +++ b/src/rapidata/api_client/models/i_rapid_result_transcription_result.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_rapid_scrub_rapid.py b/src/rapidata/api_client/models/i_rapid_scrub_rapid.py index ef0e4d888..ace31eada 100644 --- a/src/rapidata/api_client/models/i_rapid_scrub_rapid.py +++ b/src/rapidata/api_client/models/i_rapid_scrub_rapid.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_rapid_transcription_rapid.py b/src/rapidata/api_client/models/i_rapid_transcription_rapid.py index f7127c0c3..44907c1ee 100644 --- a/src/rapidata/api_client/models/i_rapid_transcription_rapid.py +++ b/src/rapidata/api_client/models/i_rapid_transcription_rapid.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_referee.py b/src/rapidata/api_client/models/i_referee.py index 6bda455d4..829e39367 100644 --- a/src/rapidata/api_client/models/i_referee.py +++ b/src/rapidata/api_client/models/i_referee.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_referee_budget_referee.py b/src/rapidata/api_client/models/i_referee_budget_referee.py index e0fd0c162..292c7aa50 100644 --- a/src/rapidata/api_client/models/i_referee_budget_referee.py +++ b/src/rapidata/api_client/models/i_referee_budget_referee.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_referee_early_stopping_referee.py b/src/rapidata/api_client/models/i_referee_early_stopping_referee.py index 476e0c430..cf35e87a6 100644 --- a/src/rapidata/api_client/models/i_referee_early_stopping_referee.py +++ b/src/rapidata/api_client/models/i_referee_early_stopping_referee.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_referee_info.py b/src/rapidata/api_client/models/i_referee_info.py index 7dd6e209f..4d8b3c472 100644 --- a/src/rapidata/api_client/models/i_referee_info.py +++ b/src/rapidata/api_client/models/i_referee_info.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_referee_info_naive_referee_info.py b/src/rapidata/api_client/models/i_referee_info_naive_referee_info.py index f9099fbd1..862345a18 100644 --- a/src/rapidata/api_client/models/i_referee_info_naive_referee_info.py +++ b/src/rapidata/api_client/models/i_referee_info_naive_referee_info.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_referee_info_never_ending_referee_info.py b/src/rapidata/api_client/models/i_referee_info_never_ending_referee_info.py index aff36fcb6..a7903a0cd 100644 --- a/src/rapidata/api_client/models/i_referee_info_never_ending_referee_info.py +++ b/src/rapidata/api_client/models/i_referee_info_never_ending_referee_info.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_referee_info_probabilistic_attach_category_referee_info.py b/src/rapidata/api_client/models/i_referee_info_probabilistic_attach_category_referee_info.py index 6e96b42d9..ff798eeb3 100644 --- a/src/rapidata/api_client/models/i_referee_info_probabilistic_attach_category_referee_info.py +++ b/src/rapidata/api_client/models/i_referee_info_probabilistic_attach_category_referee_info.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_referee_info_quorum_referee_info.py b/src/rapidata/api_client/models/i_referee_info_quorum_referee_info.py index 5d64b8ad4..b9a7a8ed1 100644 --- a/src/rapidata/api_client/models/i_referee_info_quorum_referee_info.py +++ b/src/rapidata/api_client/models/i_referee_info_quorum_referee_info.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_referee_naive_referee.py b/src/rapidata/api_client/models/i_referee_naive_referee.py index 809e8933f..cbe1325ec 100644 --- a/src/rapidata/api_client/models/i_referee_naive_referee.py +++ b/src/rapidata/api_client/models/i_referee_naive_referee.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_referee_quorum_referee.py b/src/rapidata/api_client/models/i_referee_quorum_referee.py index aa2333763..250575545 100644 --- a/src/rapidata/api_client/models/i_referee_quorum_referee.py +++ b/src/rapidata/api_client/models/i_referee_quorum_referee.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_response_aggregation.py b/src/rapidata/api_client/models/i_response_aggregation.py index 95304ee9a..aad8861f7 100644 --- a/src/rapidata/api_client/models/i_response_aggregation.py +++ b/src/rapidata/api_client/models/i_response_aggregation.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_response_aggregation_classify_aggregation.py b/src/rapidata/api_client/models/i_response_aggregation_classify_aggregation.py index f934e4820..07ef7ec94 100644 --- a/src/rapidata/api_client/models/i_response_aggregation_classify_aggregation.py +++ b/src/rapidata/api_client/models/i_response_aggregation_classify_aggregation.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_response_aggregation_compare_aggregation.py b/src/rapidata/api_client/models/i_response_aggregation_compare_aggregation.py index 95a4c8465..087985e1d 100644 --- a/src/rapidata/api_client/models/i_response_aggregation_compare_aggregation.py +++ b/src/rapidata/api_client/models/i_response_aggregation_compare_aggregation.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_selection.py b/src/rapidata/api_client/models/i_selection.py index ccff97e61..da611d5db 100644 --- a/src/rapidata/api_client/models/i_selection.py +++ b/src/rapidata/api_client/models/i_selection.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_selection_ab_test_selection.py b/src/rapidata/api_client/models/i_selection_ab_test_selection.py index 76a312574..3af52c87a 100644 --- a/src/rapidata/api_client/models/i_selection_ab_test_selection.py +++ b/src/rapidata/api_client/models/i_selection_ab_test_selection.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_selection_capped_selection.py b/src/rapidata/api_client/models/i_selection_capped_selection.py index 8e4bcd5a3..e98378e34 100644 --- a/src/rapidata/api_client/models/i_selection_capped_selection.py +++ b/src/rapidata/api_client/models/i_selection_capped_selection.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_selection_conditional_validation_selection.py b/src/rapidata/api_client/models/i_selection_conditional_validation_selection.py index 2a30cdaa5..07081cfba 100644 --- a/src/rapidata/api_client/models/i_selection_conditional_validation_selection.py +++ b/src/rapidata/api_client/models/i_selection_conditional_validation_selection.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_selection_demographic_selection.py b/src/rapidata/api_client/models/i_selection_demographic_selection.py index bef454745..85f745cea 100644 --- a/src/rapidata/api_client/models/i_selection_demographic_selection.py +++ b/src/rapidata/api_client/models/i_selection_demographic_selection.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_selection_effort_capped_selection.py b/src/rapidata/api_client/models/i_selection_effort_capped_selection.py index 48f582c49..0e7c34aba 100644 --- a/src/rapidata/api_client/models/i_selection_effort_capped_selection.py +++ b/src/rapidata/api_client/models/i_selection_effort_capped_selection.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_selection_labeling_selection.py b/src/rapidata/api_client/models/i_selection_labeling_selection.py index c23021d5a..21287188a 100644 --- a/src/rapidata/api_client/models/i_selection_labeling_selection.py +++ b/src/rapidata/api_client/models/i_selection_labeling_selection.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_selection_shuffling_selection.py b/src/rapidata/api_client/models/i_selection_shuffling_selection.py index b4d0181de..bf32477e5 100644 --- a/src/rapidata/api_client/models/i_selection_shuffling_selection.py +++ b/src/rapidata/api_client/models/i_selection_shuffling_selection.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_selection_static_selection.py b/src/rapidata/api_client/models/i_selection_static_selection.py index 5f51e3be6..6a2123924 100644 --- a/src/rapidata/api_client/models/i_selection_static_selection.py +++ b/src/rapidata/api_client/models/i_selection_static_selection.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_selection_validation_selection.py b/src/rapidata/api_client/models/i_selection_validation_selection.py index 59ab84d48..0d6bcfe55 100644 --- a/src/rapidata/api_client/models/i_selection_validation_selection.py +++ b/src/rapidata/api_client/models/i_selection_validation_selection.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_user_filter.py b/src/rapidata/api_client/models/i_user_filter.py index 1beec8b8d..18c7c72ff 100644 --- a/src/rapidata/api_client/models/i_user_filter.py +++ b/src/rapidata/api_client/models/i_user_filter.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_user_filter_age_user_filter.py b/src/rapidata/api_client/models/i_user_filter_age_user_filter.py index 54a18b95f..13ef349ec 100644 --- a/src/rapidata/api_client/models/i_user_filter_age_user_filter.py +++ b/src/rapidata/api_client/models/i_user_filter_age_user_filter.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_user_filter_and_user_filter.py b/src/rapidata/api_client/models/i_user_filter_and_user_filter.py index 661ca3e45..6de031f7d 100644 --- a/src/rapidata/api_client/models/i_user_filter_and_user_filter.py +++ b/src/rapidata/api_client/models/i_user_filter_and_user_filter.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_user_filter_campaign_user_filter.py b/src/rapidata/api_client/models/i_user_filter_campaign_user_filter.py index 77a20dc30..7622e65ad 100644 --- a/src/rapidata/api_client/models/i_user_filter_campaign_user_filter.py +++ b/src/rapidata/api_client/models/i_user_filter_campaign_user_filter.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_user_filter_country_user_filter.py b/src/rapidata/api_client/models/i_user_filter_country_user_filter.py index 365adb352..3fb2334e2 100644 --- a/src/rapidata/api_client/models/i_user_filter_country_user_filter.py +++ b/src/rapidata/api_client/models/i_user_filter_country_user_filter.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_user_filter_custom_user_filter.py b/src/rapidata/api_client/models/i_user_filter_custom_user_filter.py index ee8515b48..8a85f6be7 100644 --- a/src/rapidata/api_client/models/i_user_filter_custom_user_filter.py +++ b/src/rapidata/api_client/models/i_user_filter_custom_user_filter.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_user_filter_device_user_filter.py b/src/rapidata/api_client/models/i_user_filter_device_user_filter.py index abceaecb2..f5ba4c557 100644 --- a/src/rapidata/api_client/models/i_user_filter_device_user_filter.py +++ b/src/rapidata/api_client/models/i_user_filter_device_user_filter.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_user_filter_gender_user_filter.py b/src/rapidata/api_client/models/i_user_filter_gender_user_filter.py index bbe864009..411f9691f 100644 --- a/src/rapidata/api_client/models/i_user_filter_gender_user_filter.py +++ b/src/rapidata/api_client/models/i_user_filter_gender_user_filter.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_user_filter_language_user_filter.py b/src/rapidata/api_client/models/i_user_filter_language_user_filter.py index 672b191c2..b70300c1e 100644 --- a/src/rapidata/api_client/models/i_user_filter_language_user_filter.py +++ b/src/rapidata/api_client/models/i_user_filter_language_user_filter.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_user_filter_new_user_filter.py b/src/rapidata/api_client/models/i_user_filter_new_user_filter.py index 4abbb7f84..b56504f3a 100644 --- a/src/rapidata/api_client/models/i_user_filter_new_user_filter.py +++ b/src/rapidata/api_client/models/i_user_filter_new_user_filter.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_user_filter_not_user_filter.py b/src/rapidata/api_client/models/i_user_filter_not_user_filter.py index fb91d5e37..0255bfeeb 100644 --- a/src/rapidata/api_client/models/i_user_filter_not_user_filter.py +++ b/src/rapidata/api_client/models/i_user_filter_not_user_filter.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_user_filter_or_user_filter.py b/src/rapidata/api_client/models/i_user_filter_or_user_filter.py index b4ac0353e..a6caba705 100644 --- a/src/rapidata/api_client/models/i_user_filter_or_user_filter.py +++ b/src/rapidata/api_client/models/i_user_filter_or_user_filter.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_user_filter_response_count_user_filter.py b/src/rapidata/api_client/models/i_user_filter_response_count_user_filter.py index 9b7755eba..3f9f0fde5 100644 --- a/src/rapidata/api_client/models/i_user_filter_response_count_user_filter.py +++ b/src/rapidata/api_client/models/i_user_filter_response_count_user_filter.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_user_filter_user_score_user_filter.py b/src/rapidata/api_client/models/i_user_filter_user_score_user_filter.py index 49963b055..ac5e8b387 100644 --- a/src/rapidata/api_client/models/i_user_filter_user_score_user_filter.py +++ b/src/rapidata/api_client/models/i_user_filter_user_score_user_filter.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_validation_truth.py b/src/rapidata/api_client/models/i_validation_truth.py index 58a32dc8b..0073f8a29 100644 --- a/src/rapidata/api_client/models/i_validation_truth.py +++ b/src/rapidata/api_client/models/i_validation_truth.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_validation_truth_attach_category_truth.py b/src/rapidata/api_client/models/i_validation_truth_attach_category_truth.py index 16fae0a06..e6975783a 100644 --- a/src/rapidata/api_client/models/i_validation_truth_attach_category_truth.py +++ b/src/rapidata/api_client/models/i_validation_truth_attach_category_truth.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_validation_truth_bounding_box_truth.py b/src/rapidata/api_client/models/i_validation_truth_bounding_box_truth.py index d2e011ef3..36e1763f1 100644 --- a/src/rapidata/api_client/models/i_validation_truth_bounding_box_truth.py +++ b/src/rapidata/api_client/models/i_validation_truth_bounding_box_truth.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_validation_truth_classify_truth.py b/src/rapidata/api_client/models/i_validation_truth_classify_truth.py index 3d0f4acb1..dc7c06665 100644 --- a/src/rapidata/api_client/models/i_validation_truth_classify_truth.py +++ b/src/rapidata/api_client/models/i_validation_truth_classify_truth.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_validation_truth_compare_truth.py b/src/rapidata/api_client/models/i_validation_truth_compare_truth.py index edbca3881..5d2c240a8 100644 --- a/src/rapidata/api_client/models/i_validation_truth_compare_truth.py +++ b/src/rapidata/api_client/models/i_validation_truth_compare_truth.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_validation_truth_empty_validation_truth.py b/src/rapidata/api_client/models/i_validation_truth_empty_validation_truth.py index b84467e33..01a412406 100644 --- a/src/rapidata/api_client/models/i_validation_truth_empty_validation_truth.py +++ b/src/rapidata/api_client/models/i_validation_truth_empty_validation_truth.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_validation_truth_line_truth.py b/src/rapidata/api_client/models/i_validation_truth_line_truth.py index 23b084635..cc9d4f28a 100644 --- a/src/rapidata/api_client/models/i_validation_truth_line_truth.py +++ b/src/rapidata/api_client/models/i_validation_truth_line_truth.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_validation_truth_locate_box_truth.py b/src/rapidata/api_client/models/i_validation_truth_locate_box_truth.py index bcef3dcb9..41f75457c 100644 --- a/src/rapidata/api_client/models/i_validation_truth_locate_box_truth.py +++ b/src/rapidata/api_client/models/i_validation_truth_locate_box_truth.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_validation_truth_multi_compare_truth.py b/src/rapidata/api_client/models/i_validation_truth_multi_compare_truth.py index 7902ebfef..4180364bc 100644 --- a/src/rapidata/api_client/models/i_validation_truth_multi_compare_truth.py +++ b/src/rapidata/api_client/models/i_validation_truth_multi_compare_truth.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_validation_truth_named_entity_truth.py b/src/rapidata/api_client/models/i_validation_truth_named_entity_truth.py index cdcee32d8..86f491cd9 100644 --- a/src/rapidata/api_client/models/i_validation_truth_named_entity_truth.py +++ b/src/rapidata/api_client/models/i_validation_truth_named_entity_truth.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_validation_truth_polygon_truth.py b/src/rapidata/api_client/models/i_validation_truth_polygon_truth.py index e4affedb9..b1b43ee94 100644 --- a/src/rapidata/api_client/models/i_validation_truth_polygon_truth.py +++ b/src/rapidata/api_client/models/i_validation_truth_polygon_truth.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_validation_truth_scrub_truth.py b/src/rapidata/api_client/models/i_validation_truth_scrub_truth.py index 0d8f18fc9..4799a571a 100644 --- a/src/rapidata/api_client/models/i_validation_truth_scrub_truth.py +++ b/src/rapidata/api_client/models/i_validation_truth_scrub_truth.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_validation_truth_skip_truth.py b/src/rapidata/api_client/models/i_validation_truth_skip_truth.py index 17ed72d00..49770e665 100644 --- a/src/rapidata/api_client/models/i_validation_truth_skip_truth.py +++ b/src/rapidata/api_client/models/i_validation_truth_skip_truth.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_validation_truth_transcription_truth.py b/src/rapidata/api_client/models/i_validation_truth_transcription_truth.py index 37d09b11a..901afe013 100644 --- a/src/rapidata/api_client/models/i_validation_truth_transcription_truth.py +++ b/src/rapidata/api_client/models/i_validation_truth_transcription_truth.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/inspect_report_endpoint_output.py b/src/rapidata/api_client/models/inspect_report_endpoint_output.py index e4f357aef..37ef7c5f8 100644 --- a/src/rapidata/api_client/models/inspect_report_endpoint_output.py +++ b/src/rapidata/api_client/models/inspect_report_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/invite_org_member_endpoint_input.py b/src/rapidata/api_client/models/invite_org_member_endpoint_input.py index 9d6915135..37406d171 100644 --- a/src/rapidata/api_client/models/invite_org_member_endpoint_input.py +++ b/src/rapidata/api_client/models/invite_org_member_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/invite_org_member_endpoint_output.py b/src/rapidata/api_client/models/invite_org_member_endpoint_output.py index 5ad800e13..874803587 100644 --- a/src/rapidata/api_client/models/invite_org_member_endpoint_output.py +++ b/src/rapidata/api_client/models/invite_org_member_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/invoice_status.py b/src/rapidata/api_client/models/invoice_status.py index 2c82f9b66..f82418626 100644 --- a/src/rapidata/api_client/models/invoice_status.py +++ b/src/rapidata/api_client/models/invoice_status.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/is_rapid_bag_valid_endpoint_output.py b/src/rapidata/api_client/models/is_rapid_bag_valid_endpoint_output.py index ba2493fc1..3688de661 100644 --- a/src/rapidata/api_client/models/is_rapid_bag_valid_endpoint_output.py +++ b/src/rapidata/api_client/models/is_rapid_bag_valid_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/job_definition_revision_state.py b/src/rapidata/api_client/models/job_definition_revision_state.py index ae2439baa..12cd9c3e7 100644 --- a/src/rapidata/api_client/models/job_definition_revision_state.py +++ b/src/rapidata/api_client/models/job_definition_revision_state.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/job_navigation_item.py b/src/rapidata/api_client/models/job_navigation_item.py index ab8ee6a96..b0d37085c 100644 --- a/src/rapidata/api_client/models/job_navigation_item.py +++ b/src/rapidata/api_client/models/job_navigation_item.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/job_rapid_result.py b/src/rapidata/api_client/models/job_rapid_result.py index c82a545d3..1b7c93927 100644 --- a/src/rapidata/api_client/models/job_rapid_result.py +++ b/src/rapidata/api_client/models/job_rapid_result.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/job_response.py b/src/rapidata/api_client/models/job_response.py index 9a3932740..553f1b583 100644 --- a/src/rapidata/api_client/models/job_response.py +++ b/src/rapidata/api_client/models/job_response.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/job_share_level.py b/src/rapidata/api_client/models/job_share_level.py new file mode 100644 index 000000000..1a6f35ad5 --- /dev/null +++ b/src/rapidata/api_client/models/job_share_level.py @@ -0,0 +1,35 @@ +# coding: utf-8 + +""" + Rapidata Asset API + + The API for the Rapidata Asset service + + The version of the OpenAPI document: 2026.08.21.1305-2bf435d + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + +from __future__ import annotations +import json +from enum import Enum +from typing_extensions import Self + + +class JobShareLevel(str, Enum): + """ + JobShareLevel + """ + + """ + allowed enum values + """ + VIEWER = 'Viewer' + EDITOR = 'Editor' + + @classmethod + def from_json(cls, json_str: str) -> Self: + """Create an instance of JobShareLevel from a JSON string""" + return cls(json.loads(json_str)) + diff --git a/src/rapidata/api_client/models/json_web_key.py b/src/rapidata/api_client/models/json_web_key.py index b72acc105..2e7085ce7 100644 --- a/src/rapidata/api_client/models/json_web_key.py +++ b/src/rapidata/api_client/models/json_web_key.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/json_web_key_set.py b/src/rapidata/api_client/models/json_web_key_set.py index b2096d355..1a52537f6 100644 --- a/src/rapidata/api_client/models/json_web_key_set.py +++ b/src/rapidata/api_client/models/json_web_key_set.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/labeling_state.py b/src/rapidata/api_client/models/labeling_state.py index 2b56e4505..d302327fb 100644 --- a/src/rapidata/api_client/models/labeling_state.py +++ b/src/rapidata/api_client/models/labeling_state.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/line_result_line.py b/src/rapidata/api_client/models/line_result_line.py index 0fea08e03..a4c1639ba 100644 --- a/src/rapidata/api_client/models/line_result_line.py +++ b/src/rapidata/api_client/models/line_result_line.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/line_result_line_point.py b/src/rapidata/api_client/models/line_result_line_point.py index ac7151732..7e0b3c1d6 100644 --- a/src/rapidata/api_client/models/line_result_line_point.py +++ b/src/rapidata/api_client/models/line_result_line_point.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/list_org_invitations_endpoint_output.py b/src/rapidata/api_client/models/list_org_invitations_endpoint_output.py index 45e16257d..7e0079e36 100644 --- a/src/rapidata/api_client/models/list_org_invitations_endpoint_output.py +++ b/src/rapidata/api_client/models/list_org_invitations_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/list_org_invitations_endpoint_output_invitation.py b/src/rapidata/api_client/models/list_org_invitations_endpoint_output_invitation.py index a83781213..ddf460ea1 100644 --- a/src/rapidata/api_client/models/list_org_invitations_endpoint_output_invitation.py +++ b/src/rapidata/api_client/models/list_org_invitations_endpoint_output_invitation.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/list_org_members_endpoint_output.py b/src/rapidata/api_client/models/list_org_members_endpoint_output.py index 733b833f8..11a14ed46 100644 --- a/src/rapidata/api_client/models/list_org_members_endpoint_output.py +++ b/src/rapidata/api_client/models/list_org_members_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/list_org_members_endpoint_output_member.py b/src/rapidata/api_client/models/list_org_members_endpoint_output_member.py index a1a1eb9fb..3065b6d60 100644 --- a/src/rapidata/api_client/models/list_org_members_endpoint_output_member.py +++ b/src/rapidata/api_client/models/list_org_members_endpoint_output_member.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/locate_box_truth_box.py b/src/rapidata/api_client/models/locate_box_truth_box.py index a7efb5096..612ddcafe 100644 --- a/src/rapidata/api_client/models/locate_box_truth_box.py +++ b/src/rapidata/api_client/models/locate_box_truth_box.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/locate_coordinate.py b/src/rapidata/api_client/models/locate_coordinate.py index ba9f96a76..5590dea10 100644 --- a/src/rapidata/api_client/models/locate_coordinate.py +++ b/src/rapidata/api_client/models/locate_coordinate.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/manual_charge_reason.py b/src/rapidata/api_client/models/manual_charge_reason.py index ccacc0d77..89510715e 100644 --- a/src/rapidata/api_client/models/manual_charge_reason.py +++ b/src/rapidata/api_client/models/manual_charge_reason.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/matchup_zone.py b/src/rapidata/api_client/models/matchup_zone.py index 663a56981..e78210818 100644 --- a/src/rapidata/api_client/models/matchup_zone.py +++ b/src/rapidata/api_client/models/matchup_zone.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/membership_status.py b/src/rapidata/api_client/models/membership_status.py index 631d76165..65f70d752 100644 --- a/src/rapidata/api_client/models/membership_status.py +++ b/src/rapidata/api_client/models/membership_status.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/model_license_type.py b/src/rapidata/api_client/models/model_license_type.py index 032fb00e2..64f8e9fc2 100644 --- a/src/rapidata/api_client/models/model_license_type.py +++ b/src/rapidata/api_client/models/model_license_type.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/named_entity_result_named_classification.py b/src/rapidata/api_client/models/named_entity_result_named_classification.py index 594636764..e79326d4b 100644 --- a/src/rapidata/api_client/models/named_entity_result_named_classification.py +++ b/src/rapidata/api_client/models/named_entity_result_named_classification.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/named_entity_truth_named_classification.py b/src/rapidata/api_client/models/named_entity_truth_named_classification.py index e79a494c9..47e41a40c 100644 --- a/src/rapidata/api_client/models/named_entity_truth_named_classification.py +++ b/src/rapidata/api_client/models/named_entity_truth_named_classification.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/order_state.py b/src/rapidata/api_client/models/order_state.py index 3278013f6..0fe2e1d62 100644 --- a/src/rapidata/api_client/models/order_state.py +++ b/src/rapidata/api_client/models/order_state.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/org_role.py b/src/rapidata/api_client/models/org_role.py index a30a30114..fdf473ef4 100644 --- a/src/rapidata/api_client/models/org_role.py +++ b/src/rapidata/api_client/models/org_role.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/origin.py b/src/rapidata/api_client/models/origin.py index ad7a2a3fe..f76daa8bc 100644 --- a/src/rapidata/api_client/models/origin.py +++ b/src/rapidata/api_client/models/origin.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/paged_result_of_i_billing_group.py b/src/rapidata/api_client/models/paged_result_of_i_billing_group.py index 7e00c413a..67bc40082 100644 --- a/src/rapidata/api_client/models/paged_result_of_i_billing_group.py +++ b/src/rapidata/api_client/models/paged_result_of_i_billing_group.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/participant_status.py b/src/rapidata/api_client/models/participant_status.py index 9ccb3d353..c9497c2b2 100644 --- a/src/rapidata/api_client/models/participant_status.py +++ b/src/rapidata/api_client/models/participant_status.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/pid_batch_mode.py b/src/rapidata/api_client/models/pid_batch_mode.py index 0c9e8873d..a1a912301 100644 --- a/src/rapidata/api_client/models/pid_batch_mode.py +++ b/src/rapidata/api_client/models/pid_batch_mode.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/polygon_result_coordinate.py b/src/rapidata/api_client/models/polygon_result_coordinate.py index 9ddc29423..b17fde264 100644 --- a/src/rapidata/api_client/models/polygon_result_coordinate.py +++ b/src/rapidata/api_client/models/polygon_result_coordinate.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/polygon_result_shape.py b/src/rapidata/api_client/models/polygon_result_shape.py index d6d1d4dba..552e378f3 100644 --- a/src/rapidata/api_client/models/polygon_result_shape.py +++ b/src/rapidata/api_client/models/polygon_result_shape.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/preview_order_endpoint_input.py b/src/rapidata/api_client/models/preview_order_endpoint_input.py index 9baff7d76..00107479e 100644 --- a/src/rapidata/api_client/models/preview_order_endpoint_input.py +++ b/src/rapidata/api_client/models/preview_order_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/problem_details.py b/src/rapidata/api_client/models/problem_details.py index fc0f9a08c..bef30a97a 100644 --- a/src/rapidata/api_client/models/problem_details.py +++ b/src/rapidata/api_client/models/problem_details.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/program_case.py b/src/rapidata/api_client/models/program_case.py index b41d58878..a2447265a 100644 --- a/src/rapidata/api_client/models/program_case.py +++ b/src/rapidata/api_client/models/program_case.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/program_comparison.py b/src/rapidata/api_client/models/program_comparison.py index e6fdbfa8d..82949b217 100644 --- a/src/rapidata/api_client/models/program_comparison.py +++ b/src/rapidata/api_client/models/program_comparison.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/prompt_embedding_map_status.py b/src/rapidata/api_client/models/prompt_embedding_map_status.py index 09e026fc6..1a8acbcde 100644 --- a/src/rapidata/api_client/models/prompt_embedding_map_status.py +++ b/src/rapidata/api_client/models/prompt_embedding_map_status.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_aggregated_jobs_endpoint_output.py b/src/rapidata/api_client/models/query_aggregated_jobs_endpoint_output.py index 35a339a5f..1b4081899 100644 --- a/src/rapidata/api_client/models/query_aggregated_jobs_endpoint_output.py +++ b/src/rapidata/api_client/models/query_aggregated_jobs_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_aggregated_jobs_endpoint_paged_result_of_output.py b/src/rapidata/api_client/models/query_aggregated_jobs_endpoint_paged_result_of_output.py index f162dc325..f731cd16e 100644 --- a/src/rapidata/api_client/models/query_aggregated_jobs_endpoint_paged_result_of_output.py +++ b/src/rapidata/api_client/models/query_aggregated_jobs_endpoint_paged_result_of_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_aggregated_orders_endpoint_output.py b/src/rapidata/api_client/models/query_aggregated_orders_endpoint_output.py index 83ed0d361..528241b98 100644 --- a/src/rapidata/api_client/models/query_aggregated_orders_endpoint_output.py +++ b/src/rapidata/api_client/models/query_aggregated_orders_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_aggregated_orders_endpoint_paged_result_of_output.py b/src/rapidata/api_client/models/query_aggregated_orders_endpoint_paged_result_of_output.py index b292b9887..8b5399c8e 100644 --- a/src/rapidata/api_client/models/query_aggregated_orders_endpoint_paged_result_of_output.py +++ b/src/rapidata/api_client/models/query_aggregated_orders_endpoint_paged_result_of_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_all_organizations_endpoint_output.py b/src/rapidata/api_client/models/query_all_organizations_endpoint_output.py index a72d40496..96d68286a 100644 --- a/src/rapidata/api_client/models/query_all_organizations_endpoint_output.py +++ b/src/rapidata/api_client/models/query_all_organizations_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_all_organizations_endpoint_paged_result_of_output.py b/src/rapidata/api_client/models/query_all_organizations_endpoint_paged_result_of_output.py index f756bcc92..a651b629e 100644 --- a/src/rapidata/api_client/models/query_all_organizations_endpoint_paged_result_of_output.py +++ b/src/rapidata/api_client/models/query_all_organizations_endpoint_paged_result_of_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_audience_jobs_endpoint_output.py b/src/rapidata/api_client/models/query_audience_jobs_endpoint_output.py index fae28f907..ecdd0e608 100644 --- a/src/rapidata/api_client/models/query_audience_jobs_endpoint_output.py +++ b/src/rapidata/api_client/models/query_audience_jobs_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_audience_jobs_endpoint_paged_result_of_output.py b/src/rapidata/api_client/models/query_audience_jobs_endpoint_paged_result_of_output.py index b819c8f32..8baf43550 100644 --- a/src/rapidata/api_client/models/query_audience_jobs_endpoint_paged_result_of_output.py +++ b/src/rapidata/api_client/models/query_audience_jobs_endpoint_paged_result_of_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_audiences_endpoint_output.py b/src/rapidata/api_client/models/query_audiences_endpoint_output.py index f4fdc10ba..28e700141 100644 --- a/src/rapidata/api_client/models/query_audiences_endpoint_output.py +++ b/src/rapidata/api_client/models/query_audiences_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_audiences_endpoint_paged_result_of_output.py b/src/rapidata/api_client/models/query_audiences_endpoint_paged_result_of_output.py index f69b43a23..809258bed 100644 --- a/src/rapidata/api_client/models/query_audiences_endpoint_paged_result_of_output.py +++ b/src/rapidata/api_client/models/query_audiences_endpoint_paged_result_of_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_benchmark_standings_endpoint_output.py b/src/rapidata/api_client/models/query_benchmark_standings_endpoint_output.py index bcda10f71..b56a55261 100644 --- a/src/rapidata/api_client/models/query_benchmark_standings_endpoint_output.py +++ b/src/rapidata/api_client/models/query_benchmark_standings_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_benchmark_standings_endpoint_paged_result_of_output.py b/src/rapidata/api_client/models/query_benchmark_standings_endpoint_paged_result_of_output.py index 84746d6de..c4fb5045c 100644 --- a/src/rapidata/api_client/models/query_benchmark_standings_endpoint_paged_result_of_output.py +++ b/src/rapidata/api_client/models/query_benchmark_standings_endpoint_paged_result_of_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_benchmarks_endpoint_output.py b/src/rapidata/api_client/models/query_benchmarks_endpoint_output.py index b21c913a0..e4f7be9f3 100644 --- a/src/rapidata/api_client/models/query_benchmarks_endpoint_output.py +++ b/src/rapidata/api_client/models/query_benchmarks_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_benchmarks_endpoint_paged_result_of_output.py b/src/rapidata/api_client/models/query_benchmarks_endpoint_paged_result_of_output.py index fc176fa7c..5037050ad 100644 --- a/src/rapidata/api_client/models/query_benchmarks_endpoint_paged_result_of_output.py +++ b/src/rapidata/api_client/models/query_benchmarks_endpoint_paged_result_of_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_billing_periods_endpoint_output.py b/src/rapidata/api_client/models/query_billing_periods_endpoint_output.py index bc92c821f..57b42878c 100644 --- a/src/rapidata/api_client/models/query_billing_periods_endpoint_output.py +++ b/src/rapidata/api_client/models/query_billing_periods_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_billing_periods_endpoint_paged_result_of_output.py b/src/rapidata/api_client/models/query_billing_periods_endpoint_paged_result_of_output.py index 3373645d9..7d459756d 100644 --- a/src/rapidata/api_client/models/query_billing_periods_endpoint_paged_result_of_output.py +++ b/src/rapidata/api_client/models/query_billing_periods_endpoint_paged_result_of_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_campaigns_endpoint_output.py b/src/rapidata/api_client/models/query_campaigns_endpoint_output.py index 0c1bd2d4d..748f919cf 100644 --- a/src/rapidata/api_client/models/query_campaigns_endpoint_output.py +++ b/src/rapidata/api_client/models/query_campaigns_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_campaigns_endpoint_paged_result_of_output.py b/src/rapidata/api_client/models/query_campaigns_endpoint_paged_result_of_output.py index ed6b449d6..9d8cc60ce 100644 --- a/src/rapidata/api_client/models/query_campaigns_endpoint_paged_result_of_output.py +++ b/src/rapidata/api_client/models/query_campaigns_endpoint_paged_result_of_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_clients_endpoint_output.py b/src/rapidata/api_client/models/query_clients_endpoint_output.py index f77a823d9..76c9dbbe0 100644 --- a/src/rapidata/api_client/models/query_clients_endpoint_output.py +++ b/src/rapidata/api_client/models/query_clients_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_clients_endpoint_paged_result_of_output.py b/src/rapidata/api_client/models/query_clients_endpoint_paged_result_of_output.py index 67151eaae..921d9eb63 100644 --- a/src/rapidata/api_client/models/query_clients_endpoint_paged_result_of_output.py +++ b/src/rapidata/api_client/models/query_clients_endpoint_paged_result_of_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_combined_matrix_by_benchmarks_endpoint_output.py b/src/rapidata/api_client/models/query_combined_matrix_by_benchmarks_endpoint_output.py index 8b4787d57..a3c4ee927 100644 --- a/src/rapidata/api_client/models/query_combined_matrix_by_benchmarks_endpoint_output.py +++ b/src/rapidata/api_client/models/query_combined_matrix_by_benchmarks_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_combined_matrix_by_leaderboards_endpoint_output.py b/src/rapidata/api_client/models/query_combined_matrix_by_leaderboards_endpoint_output.py index 21d757080..1a4150729 100644 --- a/src/rapidata/api_client/models/query_combined_matrix_by_leaderboards_endpoint_output.py +++ b/src/rapidata/api_client/models/query_combined_matrix_by_leaderboards_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_combined_standings_by_benchmarks_endpoint_output.py b/src/rapidata/api_client/models/query_combined_standings_by_benchmarks_endpoint_output.py index 95a7942db..b37ceffd6 100644 --- a/src/rapidata/api_client/models/query_combined_standings_by_benchmarks_endpoint_output.py +++ b/src/rapidata/api_client/models/query_combined_standings_by_benchmarks_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_combined_standings_by_benchmarks_endpoint_output_item.py b/src/rapidata/api_client/models/query_combined_standings_by_benchmarks_endpoint_output_item.py index ba2bf9224..442530a33 100644 --- a/src/rapidata/api_client/models/query_combined_standings_by_benchmarks_endpoint_output_item.py +++ b/src/rapidata/api_client/models/query_combined_standings_by_benchmarks_endpoint_output_item.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_combined_standings_by_leaderboards_endpoint_output.py b/src/rapidata/api_client/models/query_combined_standings_by_leaderboards_endpoint_output.py index 377d1bc86..b21ea557e 100644 --- a/src/rapidata/api_client/models/query_combined_standings_by_leaderboards_endpoint_output.py +++ b/src/rapidata/api_client/models/query_combined_standings_by_leaderboards_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_combined_standings_by_leaderboards_endpoint_output_item.py b/src/rapidata/api_client/models/query_combined_standings_by_leaderboards_endpoint_output_item.py index c2626ef6d..3cf3c0859 100644 --- a/src/rapidata/api_client/models/query_combined_standings_by_leaderboards_endpoint_output_item.py +++ b/src/rapidata/api_client/models/query_combined_standings_by_leaderboards_endpoint_output_item.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_costs_by_customer_endpoint_output.py b/src/rapidata/api_client/models/query_costs_by_customer_endpoint_output.py index dbf750352..48928a2ba 100644 --- a/src/rapidata/api_client/models/query_costs_by_customer_endpoint_output.py +++ b/src/rapidata/api_client/models/query_costs_by_customer_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_costs_by_customer_endpoint_paged_result_of_output.py b/src/rapidata/api_client/models/query_costs_by_customer_endpoint_paged_result_of_output.py index 5fbd8ed55..b14359317 100644 --- a/src/rapidata/api_client/models/query_costs_by_customer_endpoint_paged_result_of_output.py +++ b/src/rapidata/api_client/models/query_costs_by_customer_endpoint_paged_result_of_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_costs_by_organization_endpoint_output.py b/src/rapidata/api_client/models/query_costs_by_organization_endpoint_output.py index c6ad70ca7..33293b938 100644 --- a/src/rapidata/api_client/models/query_costs_by_organization_endpoint_output.py +++ b/src/rapidata/api_client/models/query_costs_by_organization_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_costs_by_organization_endpoint_paged_result_of_output.py b/src/rapidata/api_client/models/query_costs_by_organization_endpoint_paged_result_of_output.py index 927eed0bc..f577a1949 100644 --- a/src/rapidata/api_client/models/query_costs_by_organization_endpoint_paged_result_of_output.py +++ b/src/rapidata/api_client/models/query_costs_by_organization_endpoint_paged_result_of_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_customers_endpoint_output.py b/src/rapidata/api_client/models/query_customers_endpoint_output.py index f5acda6e8..d178be888 100644 --- a/src/rapidata/api_client/models/query_customers_endpoint_output.py +++ b/src/rapidata/api_client/models/query_customers_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_customers_endpoint_paged_result_of_output.py b/src/rapidata/api_client/models/query_customers_endpoint_paged_result_of_output.py index 4fa720087..8df2c0bc5 100644 --- a/src/rapidata/api_client/models/query_customers_endpoint_paged_result_of_output.py +++ b/src/rapidata/api_client/models/query_customers_endpoint_paged_result_of_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_datapoints_by_dataset_id_endpoint_output.py b/src/rapidata/api_client/models/query_datapoints_by_dataset_id_endpoint_output.py index 9cc059dd5..401d5645a 100644 --- a/src/rapidata/api_client/models/query_datapoints_by_dataset_id_endpoint_output.py +++ b/src/rapidata/api_client/models/query_datapoints_by_dataset_id_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_datapoints_by_dataset_id_endpoint_paged_result_of_output.py b/src/rapidata/api_client/models/query_datapoints_by_dataset_id_endpoint_paged_result_of_output.py index d0104551b..0b60a29b4 100644 --- a/src/rapidata/api_client/models/query_datapoints_by_dataset_id_endpoint_paged_result_of_output.py +++ b/src/rapidata/api_client/models/query_datapoints_by_dataset_id_endpoint_paged_result_of_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_examples_for_audience_endpoint_output.py b/src/rapidata/api_client/models/query_examples_for_audience_endpoint_output.py index 502a656f4..82ab1eddb 100644 --- a/src/rapidata/api_client/models/query_examples_for_audience_endpoint_output.py +++ b/src/rapidata/api_client/models/query_examples_for_audience_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_examples_for_audience_endpoint_paged_result_of_output.py b/src/rapidata/api_client/models/query_examples_for_audience_endpoint_paged_result_of_output.py index 224aa806e..c03b2088f 100644 --- a/src/rapidata/api_client/models/query_examples_for_audience_endpoint_paged_result_of_output.py +++ b/src/rapidata/api_client/models/query_examples_for_audience_endpoint_paged_result_of_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_external_audiences_endpoint_output.py b/src/rapidata/api_client/models/query_external_audiences_endpoint_output.py index f57b9b009..d082492ad 100644 --- a/src/rapidata/api_client/models/query_external_audiences_endpoint_output.py +++ b/src/rapidata/api_client/models/query_external_audiences_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_external_audiences_endpoint_paged_result_of_output.py b/src/rapidata/api_client/models/query_external_audiences_endpoint_paged_result_of_output.py index 8eabe917b..6632598d1 100644 --- a/src/rapidata/api_client/models/query_external_audiences_endpoint_paged_result_of_output.py +++ b/src/rapidata/api_client/models/query_external_audiences_endpoint_paged_result_of_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_flagged_rapids_endpoint_output.py b/src/rapidata/api_client/models/query_flagged_rapids_endpoint_output.py index 7cc8e3728..b1c6b7269 100644 --- a/src/rapidata/api_client/models/query_flagged_rapids_endpoint_output.py +++ b/src/rapidata/api_client/models/query_flagged_rapids_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_flagged_rapids_endpoint_paged_result_of_output.py b/src/rapidata/api_client/models/query_flagged_rapids_endpoint_paged_result_of_output.py index 29748de59..10a7aaa33 100644 --- a/src/rapidata/api_client/models/query_flagged_rapids_endpoint_paged_result_of_output.py +++ b/src/rapidata/api_client/models/query_flagged_rapids_endpoint_paged_result_of_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_flow_items_endpoint_output.py b/src/rapidata/api_client/models/query_flow_items_endpoint_output.py index dd7f66c9b..5aaa3d382 100644 --- a/src/rapidata/api_client/models/query_flow_items_endpoint_output.py +++ b/src/rapidata/api_client/models/query_flow_items_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_flow_items_endpoint_paged_result_of_output.py b/src/rapidata/api_client/models/query_flow_items_endpoint_paged_result_of_output.py index 722c3ac3a..3ae49e71d 100644 --- a/src/rapidata/api_client/models/query_flow_items_endpoint_paged_result_of_output.py +++ b/src/rapidata/api_client/models/query_flow_items_endpoint_paged_result_of_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_flows_endpoint_output.py b/src/rapidata/api_client/models/query_flows_endpoint_output.py index 390b82412..039f23dd3 100644 --- a/src/rapidata/api_client/models/query_flows_endpoint_output.py +++ b/src/rapidata/api_client/models/query_flows_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_flows_endpoint_paged_result_of_output.py b/src/rapidata/api_client/models/query_flows_endpoint_paged_result_of_output.py index 45ea10bcd..6efd56c40 100644 --- a/src/rapidata/api_client/models/query_flows_endpoint_paged_result_of_output.py +++ b/src/rapidata/api_client/models/query_flows_endpoint_paged_result_of_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_invoices_endpoint_output.py b/src/rapidata/api_client/models/query_invoices_endpoint_output.py index 0ffe6a9df..ab103fa7f 100644 --- a/src/rapidata/api_client/models/query_invoices_endpoint_output.py +++ b/src/rapidata/api_client/models/query_invoices_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_invoices_endpoint_paged_result_of_output.py b/src/rapidata/api_client/models/query_invoices_endpoint_paged_result_of_output.py index 317b8620b..929ae3fba 100644 --- a/src/rapidata/api_client/models/query_invoices_endpoint_paged_result_of_output.py +++ b/src/rapidata/api_client/models/query_invoices_endpoint_paged_result_of_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_job_definitions_endpoint_output.py b/src/rapidata/api_client/models/query_job_definitions_endpoint_output.py index aba7eaf6b..1038353f2 100644 --- a/src/rapidata/api_client/models/query_job_definitions_endpoint_output.py +++ b/src/rapidata/api_client/models/query_job_definitions_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_job_definitions_endpoint_paged_result_of_output.py b/src/rapidata/api_client/models/query_job_definitions_endpoint_paged_result_of_output.py index 472d455de..7bed7b5ee 100644 --- a/src/rapidata/api_client/models/query_job_definitions_endpoint_paged_result_of_output.py +++ b/src/rapidata/api_client/models/query_job_definitions_endpoint_paged_result_of_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_job_revisions_endpoint_output.py b/src/rapidata/api_client/models/query_job_revisions_endpoint_output.py index 9ceba525b..6f21c4aab 100644 --- a/src/rapidata/api_client/models/query_job_revisions_endpoint_output.py +++ b/src/rapidata/api_client/models/query_job_revisions_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_job_revisions_endpoint_paged_result_of_output.py b/src/rapidata/api_client/models/query_job_revisions_endpoint_paged_result_of_output.py index 6c4a76fbb..0629d2f85 100644 --- a/src/rapidata/api_client/models/query_job_revisions_endpoint_paged_result_of_output.py +++ b/src/rapidata/api_client/models/query_job_revisions_endpoint_paged_result_of_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_jobs_endpoint_output.py b/src/rapidata/api_client/models/query_jobs_endpoint_output.py index 89ed9e461..b9f737683 100644 --- a/src/rapidata/api_client/models/query_jobs_endpoint_output.py +++ b/src/rapidata/api_client/models/query_jobs_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_jobs_endpoint_paged_result_of_output.py b/src/rapidata/api_client/models/query_jobs_endpoint_paged_result_of_output.py index c0eb6f7e8..c50338b36 100644 --- a/src/rapidata/api_client/models/query_jobs_endpoint_paged_result_of_output.py +++ b/src/rapidata/api_client/models/query_jobs_endpoint_paged_result_of_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_leaderboard_runs_endpoint_output.py b/src/rapidata/api_client/models/query_leaderboard_runs_endpoint_output.py index d9cf05a0f..d55f4b0f6 100644 --- a/src/rapidata/api_client/models/query_leaderboard_runs_endpoint_output.py +++ b/src/rapidata/api_client/models/query_leaderboard_runs_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_leaderboard_runs_endpoint_paged_result_of_output.py b/src/rapidata/api_client/models/query_leaderboard_runs_endpoint_paged_result_of_output.py index 5125a2530..e1e53ddc8 100644 --- a/src/rapidata/api_client/models/query_leaderboard_runs_endpoint_paged_result_of_output.py +++ b/src/rapidata/api_client/models/query_leaderboard_runs_endpoint_paged_result_of_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_leaderboards_by_benchmark_endpoint_output.py b/src/rapidata/api_client/models/query_leaderboards_by_benchmark_endpoint_output.py index 0979b0a89..b535fb335 100644 --- a/src/rapidata/api_client/models/query_leaderboards_by_benchmark_endpoint_output.py +++ b/src/rapidata/api_client/models/query_leaderboards_by_benchmark_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_leaderboards_by_benchmark_endpoint_paged_result_of_output.py b/src/rapidata/api_client/models/query_leaderboards_by_benchmark_endpoint_paged_result_of_output.py index 726bb41ad..559d35e5f 100644 --- a/src/rapidata/api_client/models/query_leaderboards_by_benchmark_endpoint_paged_result_of_output.py +++ b/src/rapidata/api_client/models/query_leaderboards_by_benchmark_endpoint_paged_result_of_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_leaderboards_endpoint_output.py b/src/rapidata/api_client/models/query_leaderboards_endpoint_output.py index 6e0f5eed6..5451c4947 100644 --- a/src/rapidata/api_client/models/query_leaderboards_endpoint_output.py +++ b/src/rapidata/api_client/models/query_leaderboards_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_leaderboards_endpoint_paged_result_of_output.py b/src/rapidata/api_client/models/query_leaderboards_endpoint_paged_result_of_output.py index f57ec32e9..088111c63 100644 --- a/src/rapidata/api_client/models/query_leaderboards_endpoint_paged_result_of_output.py +++ b/src/rapidata/api_client/models/query_leaderboards_endpoint_paged_result_of_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_managed_benchmarks_endpoint_output.py b/src/rapidata/api_client/models/query_managed_benchmarks_endpoint_output.py index 51c4db7dc..7d559fcce 100644 --- a/src/rapidata/api_client/models/query_managed_benchmarks_endpoint_output.py +++ b/src/rapidata/api_client/models/query_managed_benchmarks_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_managed_benchmarks_endpoint_paged_result_of_output.py b/src/rapidata/api_client/models/query_managed_benchmarks_endpoint_paged_result_of_output.py index 1bce79d77..7ea5ff234 100644 --- a/src/rapidata/api_client/models/query_managed_benchmarks_endpoint_paged_result_of_output.py +++ b/src/rapidata/api_client/models/query_managed_benchmarks_endpoint_paged_result_of_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_matchups_by_benchmark_endpoint_output.py b/src/rapidata/api_client/models/query_matchups_by_benchmark_endpoint_output.py index 266fed144..5dfcfb203 100644 --- a/src/rapidata/api_client/models/query_matchups_by_benchmark_endpoint_output.py +++ b/src/rapidata/api_client/models/query_matchups_by_benchmark_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_matchups_by_benchmark_endpoint_output_corpus.py b/src/rapidata/api_client/models/query_matchups_by_benchmark_endpoint_output_corpus.py index 15c1b2e2d..3bca16651 100644 --- a/src/rapidata/api_client/models/query_matchups_by_benchmark_endpoint_output_corpus.py +++ b/src/rapidata/api_client/models/query_matchups_by_benchmark_endpoint_output_corpus.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_matchups_by_benchmark_endpoint_output_leaderboard.py b/src/rapidata/api_client/models/query_matchups_by_benchmark_endpoint_output_leaderboard.py index 59de17443..65f0e6e99 100644 --- a/src/rapidata/api_client/models/query_matchups_by_benchmark_endpoint_output_leaderboard.py +++ b/src/rapidata/api_client/models/query_matchups_by_benchmark_endpoint_output_leaderboard.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_matchups_by_benchmark_endpoint_output_matchup.py b/src/rapidata/api_client/models/query_matchups_by_benchmark_endpoint_output_matchup.py index feb296778..675568ca3 100644 --- a/src/rapidata/api_client/models/query_matchups_by_benchmark_endpoint_output_matchup.py +++ b/src/rapidata/api_client/models/query_matchups_by_benchmark_endpoint_output_matchup.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_matchups_by_benchmark_endpoint_output_prompt_details.py b/src/rapidata/api_client/models/query_matchups_by_benchmark_endpoint_output_prompt_details.py index 240fd461f..998839d4a 100644 --- a/src/rapidata/api_client/models/query_matchups_by_benchmark_endpoint_output_prompt_details.py +++ b/src/rapidata/api_client/models/query_matchups_by_benchmark_endpoint_output_prompt_details.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_matchups_by_benchmark_endpoint_output_side.py b/src/rapidata/api_client/models/query_matchups_by_benchmark_endpoint_output_side.py index 8fd0c2263..736994ad4 100644 --- a/src/rapidata/api_client/models/query_matchups_by_benchmark_endpoint_output_side.py +++ b/src/rapidata/api_client/models/query_matchups_by_benchmark_endpoint_output_side.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_matrix_by_benchmark_endpoint_output.py b/src/rapidata/api_client/models/query_matrix_by_benchmark_endpoint_output.py index cf4a8fbbe..6e53ff3e9 100644 --- a/src/rapidata/api_client/models/query_matrix_by_benchmark_endpoint_output.py +++ b/src/rapidata/api_client/models/query_matrix_by_benchmark_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_matrix_by_leaderboard_endpoint_output.py b/src/rapidata/api_client/models/query_matrix_by_leaderboard_endpoint_output.py index 436f1eaf8..dbf86eb23 100644 --- a/src/rapidata/api_client/models/query_matrix_by_leaderboard_endpoint_output.py +++ b/src/rapidata/api_client/models/query_matrix_by_leaderboard_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_orders_endpoint_output.py b/src/rapidata/api_client/models/query_orders_endpoint_output.py index 53908b60b..978d42878 100644 --- a/src/rapidata/api_client/models/query_orders_endpoint_output.py +++ b/src/rapidata/api_client/models/query_orders_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_orders_endpoint_paged_result_of_output.py b/src/rapidata/api_client/models/query_orders_endpoint_paged_result_of_output.py index 41aec15d1..b348b5bf4 100644 --- a/src/rapidata/api_client/models/query_orders_endpoint_paged_result_of_output.py +++ b/src/rapidata/api_client/models/query_orders_endpoint_paged_result_of_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_organizations_endpoint_output.py b/src/rapidata/api_client/models/query_organizations_endpoint_output.py index 935db4c22..c28db6756 100644 --- a/src/rapidata/api_client/models/query_organizations_endpoint_output.py +++ b/src/rapidata/api_client/models/query_organizations_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_organizations_endpoint_paged_result_of_output.py b/src/rapidata/api_client/models/query_organizations_endpoint_paged_result_of_output.py index 3ccb4539e..45dd62f30 100644 --- a/src/rapidata/api_client/models/query_organizations_endpoint_paged_result_of_output.py +++ b/src/rapidata/api_client/models/query_organizations_endpoint_paged_result_of_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_owner_tier_overrides_endpoint_output.py b/src/rapidata/api_client/models/query_owner_tier_overrides_endpoint_output.py index 298126fa1..28458a65a 100644 --- a/src/rapidata/api_client/models/query_owner_tier_overrides_endpoint_output.py +++ b/src/rapidata/api_client/models/query_owner_tier_overrides_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_participants_by_benchmark_endpoint_output.py b/src/rapidata/api_client/models/query_participants_by_benchmark_endpoint_output.py index 71b87cbc9..90aa61706 100644 --- a/src/rapidata/api_client/models/query_participants_by_benchmark_endpoint_output.py +++ b/src/rapidata/api_client/models/query_participants_by_benchmark_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_participants_by_benchmark_endpoint_paged_result_of_output.py b/src/rapidata/api_client/models/query_participants_by_benchmark_endpoint_paged_result_of_output.py index c362c7f17..c12e4ef60 100644 --- a/src/rapidata/api_client/models/query_participants_by_benchmark_endpoint_paged_result_of_output.py +++ b/src/rapidata/api_client/models/query_participants_by_benchmark_endpoint_paged_result_of_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_participants_obsolete_endpoint_output.py b/src/rapidata/api_client/models/query_participants_obsolete_endpoint_output.py index 09ffefb9c..7b9439ed7 100644 --- a/src/rapidata/api_client/models/query_participants_obsolete_endpoint_output.py +++ b/src/rapidata/api_client/models/query_participants_obsolete_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_participants_obsolete_endpoint_output_item.py b/src/rapidata/api_client/models/query_participants_obsolete_endpoint_output_item.py index 094fb616c..1081bac61 100644 --- a/src/rapidata/api_client/models/query_participants_obsolete_endpoint_output_item.py +++ b/src/rapidata/api_client/models/query_participants_obsolete_endpoint_output_item.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_prompt_ratings_by_benchmark_endpoint_output.py b/src/rapidata/api_client/models/query_prompt_ratings_by_benchmark_endpoint_output.py index 4e68f877e..9e501d5d6 100644 --- a/src/rapidata/api_client/models/query_prompt_ratings_by_benchmark_endpoint_output.py +++ b/src/rapidata/api_client/models/query_prompt_ratings_by_benchmark_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_prompt_ratings_by_benchmark_endpoint_output_corpus.py b/src/rapidata/api_client/models/query_prompt_ratings_by_benchmark_endpoint_output_corpus.py index 2d7af9019..c43875eb5 100644 --- a/src/rapidata/api_client/models/query_prompt_ratings_by_benchmark_endpoint_output_corpus.py +++ b/src/rapidata/api_client/models/query_prompt_ratings_by_benchmark_endpoint_output_corpus.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_prompt_ratings_by_benchmark_endpoint_output_entry.py b/src/rapidata/api_client/models/query_prompt_ratings_by_benchmark_endpoint_output_entry.py index 1be502676..2d28a0466 100644 --- a/src/rapidata/api_client/models/query_prompt_ratings_by_benchmark_endpoint_output_entry.py +++ b/src/rapidata/api_client/models/query_prompt_ratings_by_benchmark_endpoint_output_entry.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_prompt_ratings_by_benchmark_endpoint_output_entry_image.py b/src/rapidata/api_client/models/query_prompt_ratings_by_benchmark_endpoint_output_entry_image.py index f97e1d2e1..8fb4e67f9 100644 --- a/src/rapidata/api_client/models/query_prompt_ratings_by_benchmark_endpoint_output_entry_image.py +++ b/src/rapidata/api_client/models/query_prompt_ratings_by_benchmark_endpoint_output_entry_image.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_prompt_ratings_by_benchmark_endpoint_output_matrix.py b/src/rapidata/api_client/models/query_prompt_ratings_by_benchmark_endpoint_output_matrix.py index 508fda30d..4cce8e4ad 100644 --- a/src/rapidata/api_client/models/query_prompt_ratings_by_benchmark_endpoint_output_matrix.py +++ b/src/rapidata/api_client/models/query_prompt_ratings_by_benchmark_endpoint_output_matrix.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_prompt_ratings_by_benchmark_endpoint_output_prompt.py b/src/rapidata/api_client/models/query_prompt_ratings_by_benchmark_endpoint_output_prompt.py index b48d4ec94..5aa872743 100644 --- a/src/rapidata/api_client/models/query_prompt_ratings_by_benchmark_endpoint_output_prompt.py +++ b/src/rapidata/api_client/models/query_prompt_ratings_by_benchmark_endpoint_output_prompt.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_prompt_ratings_by_benchmark_endpoint_output_prompt_details.py b/src/rapidata/api_client/models/query_prompt_ratings_by_benchmark_endpoint_output_prompt_details.py index 3fa476758..0761a586c 100644 --- a/src/rapidata/api_client/models/query_prompt_ratings_by_benchmark_endpoint_output_prompt_details.py +++ b/src/rapidata/api_client/models/query_prompt_ratings_by_benchmark_endpoint_output_prompt_details.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_public_job_definitions_endpoint_output.py b/src/rapidata/api_client/models/query_public_job_definitions_endpoint_output.py index 0c2dba885..baeebc1ee 100644 --- a/src/rapidata/api_client/models/query_public_job_definitions_endpoint_output.py +++ b/src/rapidata/api_client/models/query_public_job_definitions_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_public_job_definitions_endpoint_paged_result_of_output.py b/src/rapidata/api_client/models/query_public_job_definitions_endpoint_paged_result_of_output.py index 30f21cdc8..aa253a40c 100644 --- a/src/rapidata/api_client/models/query_public_job_definitions_endpoint_paged_result_of_output.py +++ b/src/rapidata/api_client/models/query_public_job_definitions_endpoint_paged_result_of_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_published_benchmarks_endpoint_output.py b/src/rapidata/api_client/models/query_published_benchmarks_endpoint_output.py index 97870c114..6db3e7c02 100644 --- a/src/rapidata/api_client/models/query_published_benchmarks_endpoint_output.py +++ b/src/rapidata/api_client/models/query_published_benchmarks_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_published_benchmarks_endpoint_paged_result_of_output.py b/src/rapidata/api_client/models/query_published_benchmarks_endpoint_paged_result_of_output.py index 2c2a5444c..57d18d933 100644 --- a/src/rapidata/api_client/models/query_published_benchmarks_endpoint_paged_result_of_output.py +++ b/src/rapidata/api_client/models/query_published_benchmarks_endpoint_paged_result_of_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_sample_generations_by_benchmark_endpoint_output.py b/src/rapidata/api_client/models/query_sample_generations_by_benchmark_endpoint_output.py index 6a8052ff3..fde366136 100644 --- a/src/rapidata/api_client/models/query_sample_generations_by_benchmark_endpoint_output.py +++ b/src/rapidata/api_client/models/query_sample_generations_by_benchmark_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_sample_generations_by_benchmark_endpoint_paged_result_of_output.py b/src/rapidata/api_client/models/query_sample_generations_by_benchmark_endpoint_paged_result_of_output.py index e7a7b1699..0c61aaefd 100644 --- a/src/rapidata/api_client/models/query_sample_generations_by_benchmark_endpoint_paged_result_of_output.py +++ b/src/rapidata/api_client/models/query_sample_generations_by_benchmark_endpoint_paged_result_of_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_shared_jobs_endpoint_output.py b/src/rapidata/api_client/models/query_shared_jobs_endpoint_output.py new file mode 100644 index 000000000..1ef782385 --- /dev/null +++ b/src/rapidata/api_client/models/query_shared_jobs_endpoint_output.py @@ -0,0 +1,115 @@ +# coding: utf-8 + +""" + Rapidata Asset API + + The API for the Rapidata Asset service + + The version of the OpenAPI document: 2026.08.21.1305-2bf435d + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + +from __future__ import annotations +import pprint +import re # noqa: F401 +import json + +from datetime import datetime +from pydantic import BaseModel, ConfigDict, Field, StrictFloat, StrictInt, StrictStr +from typing import Any, ClassVar, Dict, List, Optional, Union +from rapidata.api_client.models.audience_job_state import AudienceJobState +from pydantic import ValidationError +from rapidata.api_client.lazy_model import LazyValidatedModel +from typing import Optional, Set +from typing_extensions import Self + +class QuerySharedJobsEndpointOutput(LazyValidatedModel): + """ + QuerySharedJobsEndpointOutput + """ # noqa: E501 + job_id: StrictStr = Field(description="The id of the job.", alias="jobId") + name: StrictStr = Field(description="The name of the job.") + job_definition_id: StrictStr = Field(description="The id of the job definition.", alias="jobDefinitionId") + audience_id: StrictStr = Field(description="The id of the audience associated with the job.", alias="audienceId") + revision_number: StrictInt = Field(description="The revision number of the job.", alias="revisionNumber") + pipeline_id: StrictStr = Field(description="The id of the pipeline executing the job.", alias="pipelineId") + state: AudienceJobState = Field(description="The current state of the job.") + owner_mail: StrictStr = Field(description="The email of the job's owner.", alias="ownerMail") + organization_id: StrictStr = Field(description="The id of the organization that owns the job.", alias="organizationId") + created_at: datetime = Field(description="The timestamp when the job was created.", alias="createdAt") + progress: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Labeling completion as a ratio in the range 0–1, or null when no progress has been reported yet (completion sets it to 1). Sortable via ?sort=progress.") + __properties: ClassVar[List[str]] = ["jobId", "name", "jobDefinitionId", "audienceId", "revisionNumber", "pipelineId", "state", "ownerMail", "organizationId", "createdAt", "progress"] + + # model_config is inherited from LazyValidatedModel + + + def to_str(self) -> str: + """Returns the string representation of the model using alias""" + return pprint.pformat(self.model_dump(by_alias=True)) + + def to_json(self) -> str: + """Returns the JSON representation of the model using alias""" + # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead + return json.dumps(self.to_dict()) + + @classmethod + def from_json(cls, json_str: str) -> Optional[Self]: + """Create an instance of QuerySharedJobsEndpointOutput from a JSON string""" + return cls.from_dict(json.loads(json_str)) + + def to_dict(self) -> Dict[str, Any]: + """Return the dictionary representation of the model using alias. + + This has the following differences from calling pydantic's + `self.model_dump(by_alias=True)`: + + * `None` is only added to the output dict for nullable fields that + were set at model initialization. Other fields with value `None` + are ignored. + """ + excluded_fields: Set[str] = set([ + ]) + + _dict = self.model_dump( + by_alias=True, + exclude=excluded_fields, + exclude_none=True, + ) + # set to None if progress (nullable) is None + # and model_fields_set contains the field + if self.progress is None and "progress" in self.model_fields_set: + _dict['progress'] = None + + return _dict + + @classmethod + def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: + """Create an instance of QuerySharedJobsEndpointOutput from a dict""" + if obj is None: + return None + + if not isinstance(obj, dict): + return cls.model_validate(obj) + + _data = { + "jobId": obj.get("jobId"), + "name": obj.get("name"), + "jobDefinitionId": obj.get("jobDefinitionId"), + "audienceId": obj.get("audienceId"), + "revisionNumber": obj.get("revisionNumber"), + "pipelineId": obj.get("pipelineId"), + "state": obj.get("state"), + "ownerMail": obj.get("ownerMail"), + "organizationId": obj.get("organizationId"), + "createdAt": obj.get("createdAt"), + "progress": obj.get("progress") + } + try: + _obj = cls.model_validate(_data) + except ValidationError as _val_error: + _obj = cls._lazy_construct(_data, _val_error) + return _obj + + diff --git a/src/rapidata/api_client/models/query_shared_jobs_endpoint_paged_result_of_output.py b/src/rapidata/api_client/models/query_shared_jobs_endpoint_paged_result_of_output.py new file mode 100644 index 000000000..35dcb28f8 --- /dev/null +++ b/src/rapidata/api_client/models/query_shared_jobs_endpoint_paged_result_of_output.py @@ -0,0 +1,104 @@ +# coding: utf-8 + +""" + Rapidata Asset API + + The API for the Rapidata Asset service + + The version of the OpenAPI document: 2026.08.21.1305-2bf435d + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + +from __future__ import annotations +import pprint +import re # noqa: F401 +import json + +from pydantic import BaseModel, ConfigDict, Field, StrictInt +from typing import Any, ClassVar, Dict, List, Optional +from rapidata.api_client.models.query_shared_jobs_endpoint_output import QuerySharedJobsEndpointOutput +from pydantic import ValidationError +from rapidata.api_client.lazy_model import LazyValidatedModel +from typing import Optional, Set +from typing_extensions import Self + +class QuerySharedJobsEndpointPagedResultOfOutput(LazyValidatedModel): + """ + QuerySharedJobsEndpointPagedResultOfOutput + """ # noqa: E501 + total: StrictInt + page: StrictInt + page_size: StrictInt = Field(alias="pageSize") + items: List[QuerySharedJobsEndpointOutput] + total_pages: Optional[StrictInt] = Field(default=None, alias="totalPages") + __properties: ClassVar[List[str]] = ["total", "page", "pageSize", "items", "totalPages"] + + # model_config is inherited from LazyValidatedModel + + + def to_str(self) -> str: + """Returns the string representation of the model using alias""" + return pprint.pformat(self.model_dump(by_alias=True)) + + def to_json(self) -> str: + """Returns the JSON representation of the model using alias""" + # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead + return json.dumps(self.to_dict()) + + @classmethod + def from_json(cls, json_str: str) -> Optional[Self]: + """Create an instance of QuerySharedJobsEndpointPagedResultOfOutput from a JSON string""" + return cls.from_dict(json.loads(json_str)) + + def to_dict(self) -> Dict[str, Any]: + """Return the dictionary representation of the model using alias. + + This has the following differences from calling pydantic's + `self.model_dump(by_alias=True)`: + + * `None` is only added to the output dict for nullable fields that + were set at model initialization. Other fields with value `None` + are ignored. + """ + excluded_fields: Set[str] = set([ + ]) + + _dict = self.model_dump( + by_alias=True, + exclude=excluded_fields, + exclude_none=True, + ) + # override the default output from pydantic by calling `to_dict()` of each item in items (list) + _items = [] + if self.items: + for _item_items in self.items: + if _item_items: + _items.append(_item_items.to_dict()) + _dict['items'] = _items + return _dict + + @classmethod + def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: + """Create an instance of QuerySharedJobsEndpointPagedResultOfOutput from a dict""" + if obj is None: + return None + + if not isinstance(obj, dict): + return cls.model_validate(obj) + + _data = { + "total": obj.get("total"), + "page": obj.get("page"), + "pageSize": obj.get("pageSize"), + "items": [QuerySharedJobsEndpointOutput.from_dict(_item) for _item in obj["items"]] if obj.get("items") is not None else None, + "totalPages": obj.get("totalPages") + } + try: + _obj = cls.model_validate(_data) + except ValidationError as _val_error: + _obj = cls._lazy_construct(_data, _val_error) + return _obj + + diff --git a/src/rapidata/api_client/models/query_signal_runs_endpoint_output.py b/src/rapidata/api_client/models/query_signal_runs_endpoint_output.py index d4fc04261..c5bfe982f 100644 --- a/src/rapidata/api_client/models/query_signal_runs_endpoint_output.py +++ b/src/rapidata/api_client/models/query_signal_runs_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_signal_runs_endpoint_paged_result_of_output.py b/src/rapidata/api_client/models/query_signal_runs_endpoint_paged_result_of_output.py index 0f1134c64..aa3b6945f 100644 --- a/src/rapidata/api_client/models/query_signal_runs_endpoint_paged_result_of_output.py +++ b/src/rapidata/api_client/models/query_signal_runs_endpoint_paged_result_of_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_signals_endpoint_output.py b/src/rapidata/api_client/models/query_signals_endpoint_output.py index 3bb9ebb91..1c8c70a08 100644 --- a/src/rapidata/api_client/models/query_signals_endpoint_output.py +++ b/src/rapidata/api_client/models/query_signals_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_signals_endpoint_paged_result_of_output.py b/src/rapidata/api_client/models/query_signals_endpoint_paged_result_of_output.py index eb6ec6436..4623811fc 100644 --- a/src/rapidata/api_client/models/query_signals_endpoint_paged_result_of_output.py +++ b/src/rapidata/api_client/models/query_signals_endpoint_paged_result_of_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_standings_by_benchmark_endpoint_output.py b/src/rapidata/api_client/models/query_standings_by_benchmark_endpoint_output.py index 4372c277f..7b014cbb9 100644 --- a/src/rapidata/api_client/models/query_standings_by_benchmark_endpoint_output.py +++ b/src/rapidata/api_client/models/query_standings_by_benchmark_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_standings_by_benchmark_endpoint_output_item.py b/src/rapidata/api_client/models/query_standings_by_benchmark_endpoint_output_item.py index 9881a4d97..8ee8340ef 100644 --- a/src/rapidata/api_client/models/query_standings_by_benchmark_endpoint_output_item.py +++ b/src/rapidata/api_client/models/query_standings_by_benchmark_endpoint_output_item.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_standings_by_leaderboard_endpoint_output.py b/src/rapidata/api_client/models/query_standings_by_leaderboard_endpoint_output.py index aacf509a7..33e831640 100644 --- a/src/rapidata/api_client/models/query_standings_by_leaderboard_endpoint_output.py +++ b/src/rapidata/api_client/models/query_standings_by_leaderboard_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_standings_by_leaderboard_endpoint_output_item.py b/src/rapidata/api_client/models/query_standings_by_leaderboard_endpoint_output_item.py index dbfdd42b9..f4f44c2ad 100644 --- a/src/rapidata/api_client/models/query_standings_by_leaderboard_endpoint_output_item.py +++ b/src/rapidata/api_client/models/query_standings_by_leaderboard_endpoint_output_item.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_standings_endpoint_output.py b/src/rapidata/api_client/models/query_standings_endpoint_output.py index dcb5f9d72..48dbdecff 100644 --- a/src/rapidata/api_client/models/query_standings_endpoint_output.py +++ b/src/rapidata/api_client/models/query_standings_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_standings_endpoint_paged_result_of_output.py b/src/rapidata/api_client/models/query_standings_endpoint_paged_result_of_output.py index cd09d640d..9723e08a6 100644 --- a/src/rapidata/api_client/models/query_standings_endpoint_paged_result_of_output.py +++ b/src/rapidata/api_client/models/query_standings_endpoint_paged_result_of_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_tags_by_benchmark_endpoint_output.py b/src/rapidata/api_client/models/query_tags_by_benchmark_endpoint_output.py index c8e9b7791..43059d6da 100644 --- a/src/rapidata/api_client/models/query_tags_by_benchmark_endpoint_output.py +++ b/src/rapidata/api_client/models/query_tags_by_benchmark_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_validation_feedbacks_endpoint_output.py b/src/rapidata/api_client/models/query_validation_feedbacks_endpoint_output.py index 3bf0a76e8..793b27cf3 100644 --- a/src/rapidata/api_client/models/query_validation_feedbacks_endpoint_output.py +++ b/src/rapidata/api_client/models/query_validation_feedbacks_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_validation_feedbacks_endpoint_paged_result_of_output.py b/src/rapidata/api_client/models/query_validation_feedbacks_endpoint_paged_result_of_output.py index c802a29a8..f055e79a0 100644 --- a/src/rapidata/api_client/models/query_validation_feedbacks_endpoint_paged_result_of_output.py +++ b/src/rapidata/api_client/models/query_validation_feedbacks_endpoint_paged_result_of_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_validation_rapid_eligibility_endpoint_output.py b/src/rapidata/api_client/models/query_validation_rapid_eligibility_endpoint_output.py index 5c86cc11c..edea07995 100644 --- a/src/rapidata/api_client/models/query_validation_rapid_eligibility_endpoint_output.py +++ b/src/rapidata/api_client/models/query_validation_rapid_eligibility_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_validation_rapid_eligibility_endpoint_paged_result_of_output.py b/src/rapidata/api_client/models/query_validation_rapid_eligibility_endpoint_paged_result_of_output.py index 2122c6428..89afba8a5 100644 --- a/src/rapidata/api_client/models/query_validation_rapid_eligibility_endpoint_paged_result_of_output.py +++ b/src/rapidata/api_client/models/query_validation_rapid_eligibility_endpoint_paged_result_of_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_validation_sets_endpoint_output.py b/src/rapidata/api_client/models/query_validation_sets_endpoint_output.py index e88ea7dcc..c7fdebcfb 100644 --- a/src/rapidata/api_client/models/query_validation_sets_endpoint_output.py +++ b/src/rapidata/api_client/models/query_validation_sets_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_validation_sets_endpoint_paged_result_of_output.py b/src/rapidata/api_client/models/query_validation_sets_endpoint_paged_result_of_output.py index 16c8cb27c..f539dd562 100644 --- a/src/rapidata/api_client/models/query_validation_sets_endpoint_paged_result_of_output.py +++ b/src/rapidata/api_client/models/query_validation_sets_endpoint_paged_result_of_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_vouchers_endpoint_output.py b/src/rapidata/api_client/models/query_vouchers_endpoint_output.py index bfb1b03c5..f09b1ec84 100644 --- a/src/rapidata/api_client/models/query_vouchers_endpoint_output.py +++ b/src/rapidata/api_client/models/query_vouchers_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_vouchers_endpoint_paged_result_of_output.py b/src/rapidata/api_client/models/query_vouchers_endpoint_paged_result_of_output.py index efc1fdc0e..13be14d30 100644 --- a/src/rapidata/api_client/models/query_vouchers_endpoint_paged_result_of_output.py +++ b/src/rapidata/api_client/models/query_vouchers_endpoint_paged_result_of_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/ranking_datapoint.py b/src/rapidata/api_client/models/ranking_datapoint.py index ba3294e4f..0f013806c 100644 --- a/src/rapidata/api_client/models/ranking_datapoint.py +++ b/src/rapidata/api_client/models/ranking_datapoint.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/rapid_issue.py b/src/rapidata/api_client/models/rapid_issue.py index 75b7b3660..2cf6e6940 100644 --- a/src/rapidata/api_client/models/rapid_issue.py +++ b/src/rapidata/api_client/models/rapid_issue.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/rapid_state.py b/src/rapidata/api_client/models/rapid_state.py index 44a796a76..8bf6e4f24 100644 --- a/src/rapidata/api_client/models/rapid_state.py +++ b/src/rapidata/api_client/models/rapid_state.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/rating_grouping.py b/src/rapidata/api_client/models/rating_grouping.py index 93991ec9f..bec9de3a7 100644 --- a/src/rapidata/api_client/models/rating_grouping.py +++ b/src/rapidata/api_client/models/rating_grouping.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/read_bridge_token_endpoint_keys_output.py b/src/rapidata/api_client/models/read_bridge_token_endpoint_keys_output.py index 7e446b827..f2fda6d0a 100644 --- a/src/rapidata/api_client/models/read_bridge_token_endpoint_keys_output.py +++ b/src/rapidata/api_client/models/read_bridge_token_endpoint_keys_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/read_bridge_token_endpoint_not_available_output.py b/src/rapidata/api_client/models/read_bridge_token_endpoint_not_available_output.py index 00a5fde2a..08655cdd7 100644 --- a/src/rapidata/api_client/models/read_bridge_token_endpoint_not_available_output.py +++ b/src/rapidata/api_client/models/read_bridge_token_endpoint_not_available_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/rebalance_leaderboard_endpoint_input.py b/src/rapidata/api_client/models/rebalance_leaderboard_endpoint_input.py index 0283e62c3..30d7239fe 100644 --- a/src/rapidata/api_client/models/rebalance_leaderboard_endpoint_input.py +++ b/src/rapidata/api_client/models/rebalance_leaderboard_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/reconciliation_job_state.py b/src/rapidata/api_client/models/reconciliation_job_state.py index c1fb69963..2d93789dc 100644 --- a/src/rapidata/api_client/models/reconciliation_job_state.py +++ b/src/rapidata/api_client/models/reconciliation_job_state.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/reconciliation_timestamp_mode.py b/src/rapidata/api_client/models/reconciliation_timestamp_mode.py index cf297d123..a00b3800d 100644 --- a/src/rapidata/api_client/models/reconciliation_timestamp_mode.py +++ b/src/rapidata/api_client/models/reconciliation_timestamp_mode.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/recreate_external_audiences_endpoint_input.py b/src/rapidata/api_client/models/recreate_external_audiences_endpoint_input.py index 2f17b5f2a..085d2f694 100644 --- a/src/rapidata/api_client/models/recreate_external_audiences_endpoint_input.py +++ b/src/rapidata/api_client/models/recreate_external_audiences_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/replicate_model_parameter_type.py b/src/rapidata/api_client/models/replicate_model_parameter_type.py index e8af50737..450eff907 100644 --- a/src/rapidata/api_client/models/replicate_model_parameter_type.py +++ b/src/rapidata/api_client/models/replicate_model_parameter_type.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/report_rapid_endpoint_input.py b/src/rapidata/api_client/models/report_rapid_endpoint_input.py index 96e494efb..02a53820f 100644 --- a/src/rapidata/api_client/models/report_rapid_endpoint_input.py +++ b/src/rapidata/api_client/models/report_rapid_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/resettle_billing_period_endpoint_input.py b/src/rapidata/api_client/models/resettle_billing_period_endpoint_input.py index 2a6e62e1c..9b77c58c1 100644 --- a/src/rapidata/api_client/models/resettle_billing_period_endpoint_input.py +++ b/src/rapidata/api_client/models/resettle_billing_period_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/resettle_billing_period_endpoint_output.py b/src/rapidata/api_client/models/resettle_billing_period_endpoint_output.py index b9367ba1e..b5bab0c89 100644 --- a/src/rapidata/api_client/models/resettle_billing_period_endpoint_output.py +++ b/src/rapidata/api_client/models/resettle_billing_period_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/response_tally.py b/src/rapidata/api_client/models/response_tally.py index 34d7e58e7..91907d0a4 100644 --- a/src/rapidata/api_client/models/response_tally.py +++ b/src/rapidata/api_client/models/response_tally.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/restart_rapids_endpoint_input.py b/src/rapidata/api_client/models/restart_rapids_endpoint_input.py index c02a4abc3..13b5a0251 100644 --- a/src/rapidata/api_client/models/restart_rapids_endpoint_input.py +++ b/src/rapidata/api_client/models/restart_rapids_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/retrieval_mode.py b/src/rapidata/api_client/models/retrieval_mode.py index d4bc02892..e5184145a 100644 --- a/src/rapidata/api_client/models/retrieval_mode.py +++ b/src/rapidata/api_client/models/retrieval_mode.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/retry_sample_generation_endpoint_input.py b/src/rapidata/api_client/models/retry_sample_generation_endpoint_input.py index bacc7db0a..8152760dd 100644 --- a/src/rapidata/api_client/models/retry_sample_generation_endpoint_input.py +++ b/src/rapidata/api_client/models/retry_sample_generation_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/retry_sample_generation_endpoint_output.py b/src/rapidata/api_client/models/retry_sample_generation_endpoint_output.py index 655401407..27577c215 100644 --- a/src/rapidata/api_client/models/retry_sample_generation_endpoint_output.py +++ b/src/rapidata/api_client/models/retry_sample_generation_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/review_reason.py b/src/rapidata/api_client/models/review_reason.py index 0fb4e36ac..e9f2c228b 100644 --- a/src/rapidata/api_client/models/review_reason.py +++ b/src/rapidata/api_client/models/review_reason.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/revoke_bidder_relation_endpoint_input.py b/src/rapidata/api_client/models/revoke_bidder_relation_endpoint_input.py index 8e3998d99..0a8a8c493 100644 --- a/src/rapidata/api_client/models/revoke_bidder_relation_endpoint_input.py +++ b/src/rapidata/api_client/models/revoke_bidder_relation_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/revoke_external_app_relation_endpoint_input.py b/src/rapidata/api_client/models/revoke_external_app_relation_endpoint_input.py index 55041b3e2..da29214ee 100644 --- a/src/rapidata/api_client/models/revoke_external_app_relation_endpoint_input.py +++ b/src/rapidata/api_client/models/revoke_external_app_relation_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/revoke_platform_relation_endpoint_input.py b/src/rapidata/api_client/models/revoke_platform_relation_endpoint_input.py index 7b0e0a17c..fee861c45 100644 --- a/src/rapidata/api_client/models/revoke_platform_relation_endpoint_input.py +++ b/src/rapidata/api_client/models/revoke_platform_relation_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/run_status.py b/src/rapidata/api_client/models/run_status.py index bd0fe1993..b6dc90f3d 100644 --- a/src/rapidata/api_client/models/run_status.py +++ b/src/rapidata/api_client/models/run_status.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/sample_generation_item_status.py b/src/rapidata/api_client/models/sample_generation_item_status.py index e4b9fd0ea..a8781061e 100644 --- a/src/rapidata/api_client/models/sample_generation_item_status.py +++ b/src/rapidata/api_client/models/sample_generation_item_status.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/sample_generation_status.py b/src/rapidata/api_client/models/sample_generation_status.py index 5b3516809..f738d8d7c 100644 --- a/src/rapidata/api_client/models/sample_generation_status.py +++ b/src/rapidata/api_client/models/sample_generation_status.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/scrub_truth_scrub_range.py b/src/rapidata/api_client/models/scrub_truth_scrub_range.py index a9fc7ecd1..2ed037f38 100644 --- a/src/rapidata/api_client/models/scrub_truth_scrub_range.py +++ b/src/rapidata/api_client/models/scrub_truth_scrub_range.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/search_replicate_models_endpoint_model.py b/src/rapidata/api_client/models/search_replicate_models_endpoint_model.py index c6c475f22..a41a82ad3 100644 --- a/src/rapidata/api_client/models/search_replicate_models_endpoint_model.py +++ b/src/rapidata/api_client/models/search_replicate_models_endpoint_model.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/search_replicate_models_endpoint_output.py b/src/rapidata/api_client/models/search_replicate_models_endpoint_output.py index 5bc586d24..47d6ff681 100644 --- a/src/rapidata/api_client/models/search_replicate_models_endpoint_output.py +++ b/src/rapidata/api_client/models/search_replicate_models_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/send_survey_endpoint_input.py b/src/rapidata/api_client/models/send_survey_endpoint_input.py index c1552932c..973a82750 100644 --- a/src/rapidata/api_client/models/send_survey_endpoint_input.py +++ b/src/rapidata/api_client/models/send_survey_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/set_fast_bid_multiplier_endpoint_input.py b/src/rapidata/api_client/models/set_fast_bid_multiplier_endpoint_input.py index 902ee8935..7dfe73eb3 100644 --- a/src/rapidata/api_client/models/set_fast_bid_multiplier_endpoint_input.py +++ b/src/rapidata/api_client/models/set_fast_bid_multiplier_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/set_fast_bid_multiplier_endpoint_output.py b/src/rapidata/api_client/models/set_fast_bid_multiplier_endpoint_output.py index 12329f9ae..f8f2ed547 100644 --- a/src/rapidata/api_client/models/set_fast_bid_multiplier_endpoint_output.py +++ b/src/rapidata/api_client/models/set_fast_bid_multiplier_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/set_manual_global_boost_level_endpoint_input.py b/src/rapidata/api_client/models/set_manual_global_boost_level_endpoint_input.py index 5cd5d6643..46531c7ce 100644 --- a/src/rapidata/api_client/models/set_manual_global_boost_level_endpoint_input.py +++ b/src/rapidata/api_client/models/set_manual_global_boost_level_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/set_minimum_spend_commitment_endpoint_input.py b/src/rapidata/api_client/models/set_minimum_spend_commitment_endpoint_input.py index ca37b4faa..59023930e 100644 --- a/src/rapidata/api_client/models/set_minimum_spend_commitment_endpoint_input.py +++ b/src/rapidata/api_client/models/set_minimum_spend_commitment_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/set_organization_credit_line_endpoint_input.py b/src/rapidata/api_client/models/set_organization_credit_line_endpoint_input.py index 73433c4ec..932d1f2cb 100644 --- a/src/rapidata/api_client/models/set_organization_credit_line_endpoint_input.py +++ b/src/rapidata/api_client/models/set_organization_credit_line_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/set_organization_support_slack_channel_endpoint_input.py b/src/rapidata/api_client/models/set_organization_support_slack_channel_endpoint_input.py index 125cdff36..b4b667220 100644 --- a/src/rapidata/api_client/models/set_organization_support_slack_channel_endpoint_input.py +++ b/src/rapidata/api_client/models/set_organization_support_slack_channel_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/set_platform_fee_endpoint_input.py b/src/rapidata/api_client/models/set_platform_fee_endpoint_input.py index 7db8fa109..a7cf3f3b7 100644 --- a/src/rapidata/api_client/models/set_platform_fee_endpoint_input.py +++ b/src/rapidata/api_client/models/set_platform_fee_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/shorten_context_endpoint_input.py b/src/rapidata/api_client/models/shorten_context_endpoint_input.py index af57c37ae..7fff38013 100644 --- a/src/rapidata/api_client/models/shorten_context_endpoint_input.py +++ b/src/rapidata/api_client/models/shorten_context_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/shorten_context_endpoint_input_item.py b/src/rapidata/api_client/models/shorten_context_endpoint_input_item.py index 4f7b97ba5..8e03bf0c7 100644 --- a/src/rapidata/api_client/models/shorten_context_endpoint_input_item.py +++ b/src/rapidata/api_client/models/shorten_context_endpoint_input_item.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/shorten_context_endpoint_output.py b/src/rapidata/api_client/models/shorten_context_endpoint_output.py index 146900c4e..d9dd452cc 100644 --- a/src/rapidata/api_client/models/shorten_context_endpoint_output.py +++ b/src/rapidata/api_client/models/shorten_context_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/shorten_context_endpoint_output_item.py b/src/rapidata/api_client/models/shorten_context_endpoint_output_item.py index 9bd2cd690..ae39fcc44 100644 --- a/src/rapidata/api_client/models/shorten_context_endpoint_output_item.py +++ b/src/rapidata/api_client/models/shorten_context_endpoint_output_item.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/signal_run_status.py b/src/rapidata/api_client/models/signal_run_status.py index cc73e6a52..fe5576248 100644 --- a/src/rapidata/api_client/models/signal_run_status.py +++ b/src/rapidata/api_client/models/signal_run_status.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/signal_run_trigger_source.py b/src/rapidata/api_client/models/signal_run_trigger_source.py index ccf68079e..67ddafc78 100644 --- a/src/rapidata/api_client/models/signal_run_trigger_source.py +++ b/src/rapidata/api_client/models/signal_run_trigger_source.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/simplified_audience_user_state.py b/src/rapidata/api_client/models/simplified_audience_user_state.py index e1353800a..59d694215 100644 --- a/src/rapidata/api_client/models/simplified_audience_user_state.py +++ b/src/rapidata/api_client/models/simplified_audience_user_state.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/skip_rapid_endpoint_input.py b/src/rapidata/api_client/models/skip_rapid_endpoint_input.py index e17dc2311..718f89c34 100644 --- a/src/rapidata/api_client/models/skip_rapid_endpoint_input.py +++ b/src/rapidata/api_client/models/skip_rapid_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/skip_rapid_endpoint_output.py b/src/rapidata/api_client/models/skip_rapid_endpoint_output.py index ba7ae4685..63b1d9ca3 100644 --- a/src/rapidata/api_client/models/skip_rapid_endpoint_output.py +++ b/src/rapidata/api_client/models/skip_rapid_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/sort_direction.py b/src/rapidata/api_client/models/sort_direction.py index b40f10a20..fff41ab6c 100644 --- a/src/rapidata/api_client/models/sort_direction.py +++ b/src/rapidata/api_client/models/sort_direction.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/standing_status.py b/src/rapidata/api_client/models/standing_status.py index dd1a88afb..3a1b0ee4f 100644 --- a/src/rapidata/api_client/models/standing_status.py +++ b/src/rapidata/api_client/models/standing_status.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/start_audience_inactivity_sync_endpoint_output.py b/src/rapidata/api_client/models/start_audience_inactivity_sync_endpoint_output.py index a7f42b15b..99602d6d0 100644 --- a/src/rapidata/api_client/models/start_audience_inactivity_sync_endpoint_output.py +++ b/src/rapidata/api_client/models/start_audience_inactivity_sync_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/start_audience_state_recalculation_endpoint_output.py b/src/rapidata/api_client/models/start_audience_state_recalculation_endpoint_output.py index 514bdbc08..99ee8d4d5 100644 --- a/src/rapidata/api_client/models/start_audience_state_recalculation_endpoint_output.py +++ b/src/rapidata/api_client/models/start_audience_state_recalculation_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/start_benchmark_hugging_face_sync_endpoint_input.py b/src/rapidata/api_client/models/start_benchmark_hugging_face_sync_endpoint_input.py index bc12acb6c..727f15df9 100644 --- a/src/rapidata/api_client/models/start_benchmark_hugging_face_sync_endpoint_input.py +++ b/src/rapidata/api_client/models/start_benchmark_hugging_face_sync_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/start_benchmark_hugging_face_sync_endpoint_output.py b/src/rapidata/api_client/models/start_benchmark_hugging_face_sync_endpoint_output.py index 0f9c7f5a5..9836d8532 100644 --- a/src/rapidata/api_client/models/start_benchmark_hugging_face_sync_endpoint_output.py +++ b/src/rapidata/api_client/models/start_benchmark_hugging_face_sync_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/start_bulk_reconciliation_endpoint_input.py b/src/rapidata/api_client/models/start_bulk_reconciliation_endpoint_input.py index 2ebe55360..6f9185680 100644 --- a/src/rapidata/api_client/models/start_bulk_reconciliation_endpoint_input.py +++ b/src/rapidata/api_client/models/start_bulk_reconciliation_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/start_bulk_reconciliation_endpoint_output.py b/src/rapidata/api_client/models/start_bulk_reconciliation_endpoint_output.py index 7f4b96203..155f06057 100644 --- a/src/rapidata/api_client/models/start_bulk_reconciliation_endpoint_output.py +++ b/src/rapidata/api_client/models/start_bulk_reconciliation_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/sticky_config.py b/src/rapidata/api_client/models/sticky_config.py index 30db8c97f..fea50ac4e 100644 --- a/src/rapidata/api_client/models/sticky_config.py +++ b/src/rapidata/api_client/models/sticky_config.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/sticky_state.py b/src/rapidata/api_client/models/sticky_state.py index 117894b1c..5d446760a 100644 --- a/src/rapidata/api_client/models/sticky_state.py +++ b/src/rapidata/api_client/models/sticky_state.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/submit_feedback_endpoint_input.py b/src/rapidata/api_client/models/submit_feedback_endpoint_input.py index 1a08dbc62..98361dce8 100644 --- a/src/rapidata/api_client/models/submit_feedback_endpoint_input.py +++ b/src/rapidata/api_client/models/submit_feedback_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/submit_order_endpoint_input.py b/src/rapidata/api_client/models/submit_order_endpoint_input.py index 7b88d81e0..5e0b1bfd6 100644 --- a/src/rapidata/api_client/models/submit_order_endpoint_input.py +++ b/src/rapidata/api_client/models/submit_order_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/submit_participant_by_benchmark_endpoint_output.py b/src/rapidata/api_client/models/submit_participant_by_benchmark_endpoint_output.py index 2b921128a..6d1f7a493 100644 --- a/src/rapidata/api_client/models/submit_participant_by_benchmark_endpoint_output.py +++ b/src/rapidata/api_client/models/submit_participant_by_benchmark_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/submit_participant_endpoint_output.py b/src/rapidata/api_client/models/submit_participant_endpoint_output.py index f0932e936..f998d6d2d 100644 --- a/src/rapidata/api_client/models/submit_participant_endpoint_output.py +++ b/src/rapidata/api_client/models/submit_participant_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/subscribe_to_newsletter_endpoint_input.py b/src/rapidata/api_client/models/subscribe_to_newsletter_endpoint_input.py index a68897f96..60a429aee 100644 --- a/src/rapidata/api_client/models/subscribe_to_newsletter_endpoint_input.py +++ b/src/rapidata/api_client/models/subscribe_to_newsletter_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/switch_active_organization_endpoint_input.py b/src/rapidata/api_client/models/switch_active_organization_endpoint_input.py index 5448b38bc..2ac4268c3 100644 --- a/src/rapidata/api_client/models/switch_active_organization_endpoint_input.py +++ b/src/rapidata/api_client/models/switch_active_organization_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/tag.py b/src/rapidata/api_client/models/tag.py index 78c4b2e89..a8ba9f44e 100644 --- a/src/rapidata/api_client/models/tag.py +++ b/src/rapidata/api_client/models/tag.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/tag_summary.py b/src/rapidata/api_client/models/tag_summary.py index 5a9c0f801..483f5027b 100644 --- a/src/rapidata/api_client/models/tag_summary.py +++ b/src/rapidata/api_client/models/tag_summary.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/time_grouping.py b/src/rapidata/api_client/models/time_grouping.py index fd5dc0dd4..c1cb632d2 100644 --- a/src/rapidata/api_client/models/time_grouping.py +++ b/src/rapidata/api_client/models/time_grouping.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/transcription_payload_transcription_word.py b/src/rapidata/api_client/models/transcription_payload_transcription_word.py index 848bd37ba..f8a4fbfff 100644 --- a/src/rapidata/api_client/models/transcription_payload_transcription_word.py +++ b/src/rapidata/api_client/models/transcription_payload_transcription_word.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/transcription_rapid_transcription_word.py b/src/rapidata/api_client/models/transcription_rapid_transcription_word.py index a0f7de004..8a881fc74 100644 --- a/src/rapidata/api_client/models/transcription_rapid_transcription_word.py +++ b/src/rapidata/api_client/models/transcription_rapid_transcription_word.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/transcription_result_transcription_word.py b/src/rapidata/api_client/models/transcription_result_transcription_word.py index 5a5c887ff..9b2d0244d 100644 --- a/src/rapidata/api_client/models/transcription_result_transcription_word.py +++ b/src/rapidata/api_client/models/transcription_result_transcription_word.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/transcription_truth_transcription_word.py b/src/rapidata/api_client/models/transcription_truth_transcription_word.py index 4949abb5e..74ba860f8 100644 --- a/src/rapidata/api_client/models/transcription_truth_transcription_word.py +++ b/src/rapidata/api_client/models/transcription_truth_transcription_word.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/translate_endpoint_input.py b/src/rapidata/api_client/models/translate_endpoint_input.py index 91501e66b..b34352a87 100644 --- a/src/rapidata/api_client/models/translate_endpoint_input.py +++ b/src/rapidata/api_client/models/translate_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/translate_endpoint_output.py b/src/rapidata/api_client/models/translate_endpoint_output.py index 5d56e289d..cefc66987 100644 --- a/src/rapidata/api_client/models/translate_endpoint_output.py +++ b/src/rapidata/api_client/models/translate_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/translated_string.py b/src/rapidata/api_client/models/translated_string.py index c71347997..332a42e1a 100644 --- a/src/rapidata/api_client/models/translated_string.py +++ b/src/rapidata/api_client/models/translated_string.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/translator_type.py b/src/rapidata/api_client/models/translator_type.py index 9ef0110ac..461da4164 100644 --- a/src/rapidata/api_client/models/translator_type.py +++ b/src/rapidata/api_client/models/translator_type.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/trigger_signal_endpoint_output.py b/src/rapidata/api_client/models/trigger_signal_endpoint_output.py index a10a60bc4..1151e00c3 100644 --- a/src/rapidata/api_client/models/trigger_signal_endpoint_output.py +++ b/src/rapidata/api_client/models/trigger_signal_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/unlock_order_endpoint_output.py b/src/rapidata/api_client/models/unlock_order_endpoint_output.py index d0c240207..0e6e30420 100644 --- a/src/rapidata/api_client/models/unlock_order_endpoint_output.py +++ b/src/rapidata/api_client/models/unlock_order_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/unsubscribe_from_newsletter_endpoint_input.py b/src/rapidata/api_client/models/unsubscribe_from_newsletter_endpoint_input.py index 8f8f89a5e..f90365fc0 100644 --- a/src/rapidata/api_client/models/unsubscribe_from_newsletter_endpoint_input.py +++ b/src/rapidata/api_client/models/unsubscribe_from_newsletter_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/update_audience_endpoint_input.py b/src/rapidata/api_client/models/update_audience_endpoint_input.py index ae3b3497d..1726df318 100644 --- a/src/rapidata/api_client/models/update_audience_endpoint_input.py +++ b/src/rapidata/api_client/models/update_audience_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/update_audience_endpoint_output.py b/src/rapidata/api_client/models/update_audience_endpoint_output.py index 774299757..151f05380 100644 --- a/src/rapidata/api_client/models/update_audience_endpoint_output.py +++ b/src/rapidata/api_client/models/update_audience_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/update_audience_example_endpoint_input.py b/src/rapidata/api_client/models/update_audience_example_endpoint_input.py index b4c8c2ee6..d1ecb6b56 100644 --- a/src/rapidata/api_client/models/update_audience_example_endpoint_input.py +++ b/src/rapidata/api_client/models/update_audience_example_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/update_benchmark_endpoint_input.py b/src/rapidata/api_client/models/update_benchmark_endpoint_input.py index a9a8d618a..592f67927 100644 --- a/src/rapidata/api_client/models/update_benchmark_endpoint_input.py +++ b/src/rapidata/api_client/models/update_benchmark_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/update_benchmark_name_endpoint_input.py b/src/rapidata/api_client/models/update_benchmark_name_endpoint_input.py index 1d814611b..108fa8f9a 100644 --- a/src/rapidata/api_client/models/update_benchmark_name_endpoint_input.py +++ b/src/rapidata/api_client/models/update_benchmark_name_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/update_boost_config_endpoint_input.py b/src/rapidata/api_client/models/update_boost_config_endpoint_input.py index 87adc50fc..1cf0fbc73 100644 --- a/src/rapidata/api_client/models/update_boost_config_endpoint_input.py +++ b/src/rapidata/api_client/models/update_boost_config_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/update_boost_config_endpoint_output.py b/src/rapidata/api_client/models/update_boost_config_endpoint_output.py index f110177be..279946df8 100644 --- a/src/rapidata/api_client/models/update_boost_config_endpoint_output.py +++ b/src/rapidata/api_client/models/update_boost_config_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/update_campaign_endpoint_input.py b/src/rapidata/api_client/models/update_campaign_endpoint_input.py index 3496e54b8..57c9602e3 100644 --- a/src/rapidata/api_client/models/update_campaign_endpoint_input.py +++ b/src/rapidata/api_client/models/update_campaign_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/update_config_endpoint_input.py b/src/rapidata/api_client/models/update_config_endpoint_input.py index 86ca46fdb..ccdfd9179 100644 --- a/src/rapidata/api_client/models/update_config_endpoint_input.py +++ b/src/rapidata/api_client/models/update_config_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/update_dataset_name_endpoint_input.py b/src/rapidata/api_client/models/update_dataset_name_endpoint_input.py index 6f4ffabe0..2c424554e 100644 --- a/src/rapidata/api_client/models/update_dataset_name_endpoint_input.py +++ b/src/rapidata/api_client/models/update_dataset_name_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/update_global_text_endpoint_input.py b/src/rapidata/api_client/models/update_global_text_endpoint_input.py index a34f1b39b..7bc4c4631 100644 --- a/src/rapidata/api_client/models/update_global_text_endpoint_input.py +++ b/src/rapidata/api_client/models/update_global_text_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/update_job_definition_endpoint_input.py b/src/rapidata/api_client/models/update_job_definition_endpoint_input.py index 3af75d74d..70c4f3a10 100644 --- a/src/rapidata/api_client/models/update_job_definition_endpoint_input.py +++ b/src/rapidata/api_client/models/update_job_definition_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/update_job_endpoint_input.py b/src/rapidata/api_client/models/update_job_endpoint_input.py index 654877b9f..8d9f03eab 100644 --- a/src/rapidata/api_client/models/update_job_endpoint_input.py +++ b/src/rapidata/api_client/models/update_job_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/update_leaderboard_endpoint_input.py b/src/rapidata/api_client/models/update_leaderboard_endpoint_input.py index d4f9b411a..529cfc495 100644 --- a/src/rapidata/api_client/models/update_leaderboard_endpoint_input.py +++ b/src/rapidata/api_client/models/update_leaderboard_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/update_leaderboard_name_endpoint_input.py b/src/rapidata/api_client/models/update_leaderboard_name_endpoint_input.py index a23f327f9..38550ecf8 100644 --- a/src/rapidata/api_client/models/update_leaderboard_name_endpoint_input.py +++ b/src/rapidata/api_client/models/update_leaderboard_name_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/update_leaderboard_response_config_endpoint_input.py b/src/rapidata/api_client/models/update_leaderboard_response_config_endpoint_input.py index e16bed6bf..d044e29d8 100644 --- a/src/rapidata/api_client/models/update_leaderboard_response_config_endpoint_input.py +++ b/src/rapidata/api_client/models/update_leaderboard_response_config_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/update_order_endpoint_input.py b/src/rapidata/api_client/models/update_order_endpoint_input.py index f98078360..c4842de52 100644 --- a/src/rapidata/api_client/models/update_order_endpoint_input.py +++ b/src/rapidata/api_client/models/update_order_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/update_organization_endpoint_input.py b/src/rapidata/api_client/models/update_organization_endpoint_input.py index 5f306cbc3..67461a6e2 100644 --- a/src/rapidata/api_client/models/update_organization_endpoint_input.py +++ b/src/rapidata/api_client/models/update_organization_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/update_owner_tier_override_endpoint_input.py b/src/rapidata/api_client/models/update_owner_tier_override_endpoint_input.py index e14d864b9..12857b3dc 100644 --- a/src/rapidata/api_client/models/update_owner_tier_override_endpoint_input.py +++ b/src/rapidata/api_client/models/update_owner_tier_override_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/update_participant_endpoint_input.py b/src/rapidata/api_client/models/update_participant_endpoint_input.py index 6aeb9855c..cd2de26c1 100644 --- a/src/rapidata/api_client/models/update_participant_endpoint_input.py +++ b/src/rapidata/api_client/models/update_participant_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/update_participant_name_endpoint_input.py b/src/rapidata/api_client/models/update_participant_name_endpoint_input.py index bcbc00f92..4c5f58021 100644 --- a/src/rapidata/api_client/models/update_participant_name_endpoint_input.py +++ b/src/rapidata/api_client/models/update_participant_name_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/update_prompt_tags_endpoint_input.py b/src/rapidata/api_client/models/update_prompt_tags_endpoint_input.py index aeeded85e..2a4d07bbe 100644 --- a/src/rapidata/api_client/models/update_prompt_tags_endpoint_input.py +++ b/src/rapidata/api_client/models/update_prompt_tags_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/update_signal_endpoint_input.py b/src/rapidata/api_client/models/update_signal_endpoint_input.py index 37ce1bf1b..2843641bb 100644 --- a/src/rapidata/api_client/models/update_signal_endpoint_input.py +++ b/src/rapidata/api_client/models/update_signal_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/update_stream_program_endpoint_input.py b/src/rapidata/api_client/models/update_stream_program_endpoint_input.py index 50208ab5a..225ab8bb7 100644 --- a/src/rapidata/api_client/models/update_stream_program_endpoint_input.py +++ b/src/rapidata/api_client/models/update_stream_program_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/update_validation_rapid_endpoint_input.py b/src/rapidata/api_client/models/update_validation_rapid_endpoint_input.py index 263d2d4cd..c43a60532 100644 --- a/src/rapidata/api_client/models/update_validation_rapid_endpoint_input.py +++ b/src/rapidata/api_client/models/update_validation_rapid_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/update_validation_set_dimensions_endpoint_input.py b/src/rapidata/api_client/models/update_validation_set_dimensions_endpoint_input.py index d756e5c43..1b68d90cd 100644 --- a/src/rapidata/api_client/models/update_validation_set_dimensions_endpoint_input.py +++ b/src/rapidata/api_client/models/update_validation_set_dimensions_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/update_validation_set_endpoint_input.py b/src/rapidata/api_client/models/update_validation_set_endpoint_input.py index 6924ca67a..597c40100 100644 --- a/src/rapidata/api_client/models/update_validation_set_endpoint_input.py +++ b/src/rapidata/api_client/models/update_validation_set_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/update_validation_set_should_alert_endpoint_input.py b/src/rapidata/api_client/models/update_validation_set_should_alert_endpoint_input.py index 04eb811fb..16aeb978b 100644 --- a/src/rapidata/api_client/models/update_validation_set_should_alert_endpoint_input.py +++ b/src/rapidata/api_client/models/update_validation_set_should_alert_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/upload_file_endpoint_output.py b/src/rapidata/api_client/models/upload_file_endpoint_output.py index e65e98f2d..12bcb3e0f 100644 --- a/src/rapidata/api_client/models/upload_file_endpoint_output.py +++ b/src/rapidata/api_client/models/upload_file_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/upload_file_from_url_endpoint_output.py b/src/rapidata/api_client/models/upload_file_from_url_endpoint_output.py index 0d8f12aee..480f3f77e 100644 --- a/src/rapidata/api_client/models/upload_file_from_url_endpoint_output.py +++ b/src/rapidata/api_client/models/upload_file_from_url_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/user_attribute.py b/src/rapidata/api_client/models/user_attribute.py index 7df65fe3e..8bddaa63a 100644 --- a/src/rapidata/api_client/models/user_attribute.py +++ b/src/rapidata/api_client/models/user_attribute.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/validation_chance.py b/src/rapidata/api_client/models/validation_chance.py index bbad3ae7b..03d91fbdd 100644 --- a/src/rapidata/api_client/models/validation_chance.py +++ b/src/rapidata/api_client/models/validation_chance.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/validation_problem_details.py b/src/rapidata/api_client/models/validation_problem_details.py index ae728961d..af997fb33 100644 --- a/src/rapidata/api_client/models/validation_problem_details.py +++ b/src/rapidata/api_client/models/validation_problem_details.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/vote_aggregation.py b/src/rapidata/api_client/models/vote_aggregation.py index 00120af38..462cbb7c8 100644 --- a/src/rapidata/api_client/models/vote_aggregation.py +++ b/src/rapidata/api_client/models/vote_aggregation.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/vote_matrix_result.py b/src/rapidata/api_client/models/vote_matrix_result.py index 50e505d46..d11b14149 100644 --- a/src/rapidata/api_client/models/vote_matrix_result.py +++ b/src/rapidata/api_client/models/vote_matrix_result.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/voucher_source.py b/src/rapidata/api_client/models/voucher_source.py index 881284397..a7de8a93f 100644 --- a/src/rapidata/api_client/models/voucher_source.py +++ b/src/rapidata/api_client/models/voucher_source.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/voucher_status.py b/src/rapidata/api_client/models/voucher_status.py index 88cd8270d..785ecfc12 100644 --- a/src/rapidata/api_client/models/voucher_status.py +++ b/src/rapidata/api_client/models/voucher_status.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/weighted_branch.py b/src/rapidata/api_client/models/weighted_branch.py index cbe43a576..e8d2a6cba 100644 --- a/src/rapidata/api_client/models/weighted_branch.py +++ b/src/rapidata/api_client/models/weighted_branch.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/rest.py b/src/rapidata/api_client/rest.py index d72b5d271..2d87a7e00 100644 --- a/src/rapidata/api_client/rest.py +++ b/src/rapidata/api_client/rest.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.21.0757-4bc4250 + The version of the OpenAPI document: 2026.08.21.1305-2bf435d Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client_README.md b/src/rapidata/api_client_README.md index 7e7d4c0b9..e26b564e8 100644 --- a/src/rapidata/api_client_README.md +++ b/src/rapidata/api_client_README.md @@ -3,7 +3,7 @@ The API for the Rapidata Asset service The `rapidata.api_client` package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: -- API version: 2026.08.21.0757-4bc4250 +- API version: 2026.08.21.1305-2bf435d - Package version: 1.0.0 - Generator version: 7.23.0 - Build package: org.openapitools.codegen.languages.PythonClientCodegen @@ -288,10 +288,14 @@ Class | Method | HTTP request | Description *JobApi* | [**job_job_id_results_rapid_id_navigation_get**](rapidata/api_client/docs/JobApi.md#job_job_id_results_rapid_id_navigation_get) | **GET** /job/{jobId}/results/{rapidId}/navigation | Gets the anchor rapid plus its neighbours within the job's filtered results. *JobApi* | [**job_job_id_resume_post**](rapidata/api_client/docs/JobApi.md#job_job_id_resume_post) | **POST** /job/{jobId}/resume | Resumes a job, restarting all of its campaigns. *JobApi* | [**job_job_id_retry_post**](rapidata/api_client/docs/JobApi.md#job_job_id_retry_post) | **POST** /job/{jobId}/retry | Retries processing of a failed job. -*JobApi* | [**job_job_id_share_patch**](rapidata/api_client/docs/JobApi.md#job_job_id_share_patch) | **PATCH** /job/{jobId}/share | Marks or unmarks a job as public so its results can be shared with other users. +*JobApi* | [**job_job_id_shares_customer_id_delete**](rapidata/api_client/docs/JobApi.md#job_job_id_shares_customer_id_delete) | **DELETE** /job/{jobId}/shares/{customerId} | Removes a customer's viewer and editor access to a job. +*JobApi* | [**job_job_id_shares_get**](rapidata/api_client/docs/JobApi.md#job_job_id_shares_get) | **GET** /job/{jobId}/shares | Returns each customer a job is shared with, together with their access level. +*JobApi* | [**job_job_id_shares_post**](rapidata/api_client/docs/JobApi.md#job_job_id_shares_post) | **POST** /job/{jobId}/shares | Grants a customer viewer or editor access to a job by their email. +*JobApi* | [**job_job_id_visibility_patch**](rapidata/api_client/docs/JobApi.md#job_job_id_visibility_patch) | **PATCH** /job/{jobId}/visibility | Marks or unmarks a job as public so its results are viewable via a link. *JobApi* | [**job_post**](rapidata/api_client/docs/JobApi.md#job_post) | **POST** /job | Creates a new job from a job definition and audience. *JobApi* | [**jobs_aggregated_overview_get**](rapidata/api_client/docs/JobApi.md#jobs_aggregated_overview_get) | **GET** /jobs/aggregated-overview | Retrieves jobs aggregated by customer with total counts and most recent job information. *JobApi* | [**jobs_get**](rapidata/api_client/docs/JobApi.md#jobs_get) | **GET** /jobs | Queries jobs visible to the caller. +*JobApi* | [**jobs_shared_get**](rapidata/api_client/docs/JobApi.md#jobs_shared_get) | **GET** /jobs/shared | Queries the jobs another organization has shared with the caller. *LeaderboardApi* | [**leaderboard_combined_matrix_query_get**](rapidata/api_client/docs/LeaderboardApi.md#leaderboard_combined_matrix_query_get) | **GET** /leaderboard/combined-matrix/query | Queries the combined win matrix of multiple leaderboards. *LeaderboardApi* | [**leaderboard_combined_standings_query_get**](rapidata/api_client/docs/LeaderboardApi.md#leaderboard_combined_standings_query_get) | **GET** /leaderboard/combined-standings/query | Queries the combined standings of multiple leaderboards. *LeaderboardApi* | [**leaderboard_leaderboard_id_boost_post**](rapidata/api_client/docs/LeaderboardApi.md#leaderboard_leaderboard_id_boost_post) | **POST** /leaderboard/{leaderboardId}/boost | Boosts a subset of participants within a leaderboard. @@ -548,6 +552,7 @@ Class | Method | HTTP request | Description - [CreateJobEndpointOutput](rapidata/api_client/docs/CreateJobEndpointOutput.md) - [CreateJobRevisionEndpointInput](rapidata/api_client/docs/CreateJobRevisionEndpointInput.md) - [CreateJobRevisionEndpointOutput](rapidata/api_client/docs/CreateJobRevisionEndpointOutput.md) + - [CreateJobShareEndpointInput](rapidata/api_client/docs/CreateJobShareEndpointInput.md) - [CreateLeaderboardEndpointInput](rapidata/api_client/docs/CreateLeaderboardEndpointInput.md) - [CreateLeaderboardEndpointOutput](rapidata/api_client/docs/CreateLeaderboardEndpointOutput.md) - [CreateLeaderboardParticipantEndpointInput](rapidata/api_client/docs/CreateLeaderboardParticipantEndpointInput.md) @@ -697,6 +702,7 @@ Class | Method | HTTP request | Description - [GetJobResponsesEndpointOutputResponse](rapidata/api_client/docs/GetJobResponsesEndpointOutputResponse.md) - [GetJobResultNavigationEndpointOutput](rapidata/api_client/docs/GetJobResultNavigationEndpointOutput.md) - [GetJobRevisionEndpointOutput](rapidata/api_client/docs/GetJobRevisionEndpointOutput.md) + - [GetJobSharesEndpointOutput](rapidata/api_client/docs/GetJobSharesEndpointOutput.md) - [GetLatestAudienceInactivitySyncEndpointOutput](rapidata/api_client/docs/GetLatestAudienceInactivitySyncEndpointOutput.md) - [GetLatestAudienceStateRecalculationEndpointOutput](rapidata/api_client/docs/GetLatestAudienceStateRecalculationEndpointOutput.md) - [GetLeaderboardByIdEndpointOutput](rapidata/api_client/docs/GetLeaderboardByIdEndpointOutput.md) @@ -1008,6 +1014,7 @@ Class | Method | HTTP request | Description - [JobNavigationItem](rapidata/api_client/docs/JobNavigationItem.md) - [JobRapidResult](rapidata/api_client/docs/JobRapidResult.md) - [JobResponse](rapidata/api_client/docs/JobResponse.md) + - [JobShareLevel](rapidata/api_client/docs/JobShareLevel.md) - [JsonWebKey](rapidata/api_client/docs/JsonWebKey.md) - [JsonWebKeySet](rapidata/api_client/docs/JsonWebKeySet.md) - [LabelingState](rapidata/api_client/docs/LabelingState.md) @@ -1128,6 +1135,8 @@ Class | Method | HTTP request | Description - [QueryPublishedBenchmarksEndpointPagedResultOfOutput](rapidata/api_client/docs/QueryPublishedBenchmarksEndpointPagedResultOfOutput.md) - [QuerySampleGenerationsByBenchmarkEndpointOutput](rapidata/api_client/docs/QuerySampleGenerationsByBenchmarkEndpointOutput.md) - [QuerySampleGenerationsByBenchmarkEndpointPagedResultOfOutput](rapidata/api_client/docs/QuerySampleGenerationsByBenchmarkEndpointPagedResultOfOutput.md) + - [QuerySharedJobsEndpointOutput](rapidata/api_client/docs/QuerySharedJobsEndpointOutput.md) + - [QuerySharedJobsEndpointPagedResultOfOutput](rapidata/api_client/docs/QuerySharedJobsEndpointPagedResultOfOutput.md) - [QuerySignalRunsEndpointOutput](rapidata/api_client/docs/QuerySignalRunsEndpointOutput.md) - [QuerySignalRunsEndpointPagedResultOfOutput](rapidata/api_client/docs/QuerySignalRunsEndpointPagedResultOfOutput.md) - [QuerySignalsEndpointOutput](rapidata/api_client/docs/QuerySignalsEndpointOutput.md)