diff --git a/openapi/schemas/asset.openapi.json b/openapi/schemas/asset.openapi.json index 3317165d5..af1a7fff6 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.11.1359-4548577" + "version": "2026.08.12.1010-860c8c8" }, "servers": [ { diff --git a/openapi/schemas/audience.openapi.json b/openapi/schemas/audience.openapi.json index 8eb793242..dc8f173cc 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.11.1359-4548577" + "version": "2026.08.12.1010-860c8c8" }, "servers": [ { diff --git a/openapi/schemas/campaign.openapi.json b/openapi/schemas/campaign.openapi.json index 243d6e49c..01afee507 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.11.1359-4548577" + "version": "2026.08.12.1010-860c8c8" }, "servers": [ { diff --git a/openapi/schemas/dataset.openapi.json b/openapi/schemas/dataset.openapi.json index c123c6764..9facf7963 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.11.1359-4548577" + "version": "2026.08.12.1010-860c8c8" }, "servers": [ { diff --git a/openapi/schemas/flow.openapi.json b/openapi/schemas/flow.openapi.json index 90e1c6b21..33746cb54 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.11.1359-4548577" + "version": "2026.08.12.1010-860c8c8" }, "servers": [ { diff --git a/openapi/schemas/identity.openapi.json b/openapi/schemas/identity.openapi.json index dd561ac3b..94745050a 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.11.1359-4548577" + "version": "2026.08.12.1010-860c8c8" }, "servers": [ { diff --git a/openapi/schemas/leaderboard.openapi.json b/openapi/schemas/leaderboard.openapi.json index 710ee4d87..2be1a0be9 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.11.1359-4548577" + "version": "2026.08.12.1010-860c8c8" }, "servers": [ { @@ -6519,6 +6519,652 @@ } } }, + "/benchmark/{benchmarkId}/images/query": { + "get": { + "tags": [ + "Benchmark" + ], + "summary": "Queries the per-image ratings of a benchmark — a page of prompts, each with its ranked images\n and the pairwise win matrix over them, in the same pandas-split shape as the standings matrix.", + "description": "Filters apply to the underlying votes and use the same field set as the standings query.\n Ordering (extremeness by default) selects which prompts a page fits; a rating is an image's\n standing against all images on its prompt, so a participant filter narrows the rows but does not\n refit. Matrix axes are the image labels — a participant's name, suffixed -{n} when it has\n several images on the prompt. A prompt with no matching votes yields no rows.", + "parameters": [ + { + "name": "benchmarkId", + "in": "path", + "description": "The id of the benchmark.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "useWeightedScoring", + "in": "query", + "description": "Whether to weight ratings by annotator reliability.", + "schema": { + "type": "boolean", + "default": false + } + }, + { + "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": [ + "extremeness", + "-extremeness", + "responses", + "-responses", + "voted_at", + "-voted_at" + ], + "type": "string" + } + }, + "x-parameter-group": "sort" + }, + { + "name": "country", + "in": "query", + "description": "Filter by country.", + "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": "language", + "in": "query", + "description": "Filter by language.", + "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": "gender", + "in": "query", + "description": "Filter by gender.", + "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": "age_bucket", + "in": "query", + "description": "Filter by age_bucket.", + "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": "occupation", + "in": "query", + "description": "Filter by occupation.", + "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": "tags", + "in": "query", + "description": "Filter by tags.", + "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": "participant_id", + "in": "query", + "description": "Filter by participant_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": "leaderboard_id", + "in": "query", + "description": "Filter by leaderboard_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": "run_id", + "in": "query", + "description": "Filter by run_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": "prompt_identifier", + "in": "query", + "description": "Filter by prompt_identifier.", + "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": "voted_at", + "in": "query", + "description": "Filter by voted_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", + "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/QueryImagesByBenchmarkEndpoint_Output" + } + } + } + }, + "400": { + "description": "Bad Request", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ValidationProblemDetails" + } + } + } + }, + "401": { + "description": "Unauthenticated" + }, + "403": { + "description": "Forbidden" + } + } + } + }, "/benchmark/{benchmarkId}/leaderboards": { "get": { "tags": [ @@ -13831,6 +14477,7 @@ "Sample" ], "summary": "Returns the paged samples of a benchmark filtered by an identifier.", + "description": "Identifiers are free-form text and must be percent-encoded into the path. Slashes have to\n be sent as %2F; they are decoded back to / before the identifier is matched.", "parameters": [ { "name": "benchmarkId", @@ -19099,6 +19746,179 @@ } } }, + "QueryImagesByBenchmarkEndpoint_Output": { + "required": [ + "items", + "totalResponses", + "distinctMatchups", + "totalPrompts", + "page", + "pageSize" + ], + "type": "object", + "properties": { + "items": { + "allOf": [ + { + "type": "array", + "items": { + "$ref": "#/components/schemas/QueryImagesByBenchmarkEndpoint_OutputPrompt" + } + } + ], + "description": "The prompts of this page, each with its ranked images." + }, + "totalResponses": { + "type": "integer", + "description": "Total raw human responses behind the corpus under the current filter.", + "format": "int64" + }, + "distinctMatchups": { + "type": "integer", + "description": "Distinct compared image pairs in the corpus under the current filter.", + "format": "int64" + }, + "totalPrompts": { + "type": "integer", + "description": "The number of prompts the filter leaves rankable — the paging total.", + "format": "int64" + }, + "page": { + "type": "integer", + "description": "The 1-based page index.", + "format": "int32" + }, + "pageSize": { + "type": "integer", + "description": "The page size in prompts.", + "format": "int32" + } + }, + "description": "The queried per-image ratings output." + }, + "QueryImagesByBenchmarkEndpoint_OutputImage": { + "required": [ + "sampleId", + "participantId", + "label", + "responseCount", + "rating", + "rank" + ], + "type": "object", + "properties": { + "sampleId": { + "type": "string" + }, + "participantId": { + "type": "string" + }, + "participantName": { + "type": "string", + "nullable": true + }, + "label": { + "type": "string" + }, + "asset": { + "type": "object", + "oneOf": [ + { + "$ref": "#/components/schemas/IAsset" + } + ], + "nullable": true + }, + "responseCount": { + "type": "integer", + "format": "int64" + }, + "rating": { + "type": "number", + "format": "double", + "nullable": true + }, + "rank": { + "type": "integer", + "format": "int32" + } + } + }, + "QueryImagesByBenchmarkEndpoint_OutputPrompt": { + "required": [ + "promptIdentifier", + "images", + "index", + "columns", + "data", + "votes" + ], + "type": "object", + "properties": { + "promptIdentifier": { + "type": "string" + }, + "promptId": { + "type": "string", + "nullable": true + }, + "englishPrompt": { + "type": "string", + "nullable": true + }, + "originalPrompt": { + "type": "string", + "nullable": true + }, + "promptAsset": { + "type": "object", + "oneOf": [ + { + "$ref": "#/components/schemas/IAsset" + } + ], + "nullable": true + }, + "images": { + "type": "array", + "items": { + "$ref": "#/components/schemas/QueryImagesByBenchmarkEndpoint_OutputImage" + } + }, + "index": { + "type": "array", + "items": { + "type": "string" + } + }, + "columns": { + "type": "array", + "items": { + "type": "string" + } + }, + "data": { + "type": "array", + "items": { + "type": "array", + "items": { + "type": "number", + "format": "double" + } + } + }, + "votes": { + "type": "array", + "items": { + "type": "array", + "items": { + "type": "number", + "format": "double" + } + } + } + } + }, "QueryLeaderboardRunsEndpoint_Output": { "required": [ "id", diff --git a/openapi/schemas/order.openapi.json b/openapi/schemas/order.openapi.json index 5c1d5f3bb..60c16234b 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.11.1359-4548577" + "version": "2026.08.12.1010-860c8c8" }, "servers": [ { diff --git a/openapi/schemas/payment.openapi.json b/openapi/schemas/payment.openapi.json index b4609bc01..a0cd263ce 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.11.1359-4548577" + "version": "2026.08.12.1010-860c8c8" }, "servers": [ { diff --git a/openapi/schemas/pipeline.openapi.json b/openapi/schemas/pipeline.openapi.json index d1ac53c31..2583bdfbd 100644 --- a/openapi/schemas/pipeline.openapi.json +++ b/openapi/schemas/pipeline.openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Rapidata Pipeline API", "description": "The API for the Rapidata Pipeline service", - "version": "2026.08.11.1359-4548577" + "version": "2026.08.12.1010-860c8c8" }, "servers": [ { diff --git a/openapi/schemas/rapid.openapi.json b/openapi/schemas/rapid.openapi.json index fcc41fc43..77da2f61c 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.11.1359-4548577" + "version": "2026.08.12.1010-860c8c8" }, "servers": [ { diff --git a/openapi/schemas/rapidata.filtered.openapi.json b/openapi/schemas/rapidata.filtered.openapi.json index 02178cb2e..efb6db112 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.11.1359-4548577" + "version": "2026.08.12.1010-860c8c8" }, "servers": [ { @@ -15660,22 +15660,32 @@ ] } }, - "/benchmark/{benchmarkId}/leaderboards": { + "/benchmark/{benchmarkId}/images/query": { "get": { "tags": [ "Benchmark" ], - "summary": "Queries all leaderboards for the given benchmark.", + "summary": "Queries the per-image ratings of a benchmark — a page of prompts, each with its ranked images\n and the pairwise win matrix over them, in the same pandas-split shape as the standings matrix.", + "description": "Filters apply to the underlying votes and use the same field set as the standings query.\n Ordering (extremeness by default) selects which prompts a page fits; a rating is an image's\n standing against all images on its prompt, so a participant filter narrows the rows but does not\n refit. Matrix axes are the image labels — a participant's name, suffixed -{n} when it has\n several images on the prompt. A prompt with no matching votes yields no rows.", "parameters": [ { "name": "benchmarkId", "in": "path", - "description": "The id of the benchmark whose leaderboards will be returned.", + "description": "The id of the benchmark.", "required": true, "schema": { "type": "string" } }, + { + "name": "useWeightedScoring", + "in": "query", + "description": "Whether to weight ratings by annotator reliability.", + "schema": { + "type": "boolean", + "default": false + } + }, { "name": "page", "in": "query", @@ -15702,10 +15712,12 @@ "type": "array", "items": { "enum": [ - "id", - "-id", - "name", - "-name" + "extremeness", + "-extremeness", + "responses", + "-responses", + "voted_at", + "-voted_at" ], "type": "string" } @@ -15713,9 +15725,9 @@ "x-parameter-group": "sort" }, { - "name": "id", + "name": "country", "in": "query", - "description": "Filter by id.", + "description": "Filter by country.", "style": "deepObject", "explode": true, "schema": { @@ -15762,9 +15774,9 @@ "x-parameter-group": "filters" }, { - "name": "name", + "name": "language", "in": "query", - "description": "Filter by name.", + "description": "Filter by language.", "style": "deepObject", "explode": true, "schema": { @@ -15811,107 +15823,58 @@ "x-parameter-group": "filters" }, { - "name": "logic", + "name": "gender", "in": "query", - "description": "How to combine the field filters: \"and\" (default) requires every filter to match, \"or\" requires any of them to match.", + "description": "Filter by gender.", + "style": "deepObject", + "explode": true, "schema": { - "enum": [ - "and", - "or" - ], - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/QueryLeaderboardsByBenchmarkEndpoint_PagedResultOfOutput" - } - } - } - }, - "400": { - "description": "Bad Request", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ValidationProblemDetails" + "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" } } - } - }, - "401": { - "description": "Unauthenticated" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "OpenIdConnect": [ - "openid", - "profile", - "email", - "offline_access" - ] - } - ] - } - }, - "/benchmarks/managed": { - "get": { - "tags": [ - "Benchmark" - ], - "summary": "Queries the curated benchmarks available to every customer.", - "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": [ - "id", - "-id", - "name", - "-name", - "created_at", - "-created_at" - ], - "type": "string" - } }, - "x-parameter-group": "sort" + "x-parameter-group": "filters" }, { - "name": "id", + "name": "age_bucket", "in": "query", - "description": "Filter by id.", + "description": "Filter by age_bucket.", "style": "deepObject", "explode": true, "schema": { @@ -15958,9 +15921,9 @@ "x-parameter-group": "filters" }, { - "name": "name", + "name": "occupation", "in": "query", - "description": "Filter by name.", + "description": "Filter by occupation.", "style": "deepObject", "explode": true, "schema": { @@ -16007,9 +15970,9 @@ "x-parameter-group": "filters" }, { - "name": "owner_mail", + "name": "tags", "in": "query", - "description": "Filter by owner_mail.", + "description": "Filter by tags.", "style": "deepObject", "explode": true, "schema": { @@ -16056,9 +16019,9 @@ "x-parameter-group": "filters" }, { - "name": "created_at", + "name": "participant_id", "in": "query", - "description": "Filter by created_at.", + "description": "Filter by participant_id.", "style": "deepObject", "explode": true, "schema": { @@ -16105,88 +16068,9 @@ "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/QueryManagedBenchmarksEndpoint_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" - ] - } - ] - } - }, - "/benchmark/{benchmarkId}/matrix/query": { - "get": { - "tags": [ - "Benchmark" - ], - "summary": "Queries the win matrix of a benchmark.", - "description": "Filters apply to the underlying votes. Benchmarks without granular vote storage evaluate\n only the filters their aggregated data can answer (tags, participants, leaderboards, runs,\n prompt identifiers); demographic and vote-time filters require granular vote storage.\n Alongside the matchup outcomes in data, each response also carries votes: the\n un-binarized human vote counts on the same axes, display-only and not reflected in scoring.", - "parameters": [ - { - "name": "benchmarkId", - "in": "path", - "description": "The id of the benchmark.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "useWeightedScoring", - "in": "query", - "description": "Whether to apply weighted scoring based on user scores.", - "schema": { - "type": "boolean", - "default": false - } - }, - { - "name": "country", + "name": "leaderboard_id", "in": "query", - "description": "Filter by country.", + "description": "Filter by leaderboard_id.", "style": "deepObject", "explode": true, "schema": { @@ -16233,9 +16117,9 @@ "x-parameter-group": "filters" }, { - "name": "language", + "name": "run_id", "in": "query", - "description": "Filter by language.", + "description": "Filter by run_id.", "style": "deepObject", "explode": true, "schema": { @@ -16282,9 +16166,9 @@ "x-parameter-group": "filters" }, { - "name": "gender", + "name": "prompt_identifier", "in": "query", - "description": "Filter by gender.", + "description": "Filter by prompt_identifier.", "style": "deepObject", "explode": true, "schema": { @@ -16331,9 +16215,9 @@ "x-parameter-group": "filters" }, { - "name": "age_bucket", + "name": "voted_at", "in": "query", - "description": "Filter by age_bucket.", + "description": "Filter by voted_at.", "style": "deepObject", "explode": true, "schema": { @@ -16380,254 +16264,114 @@ "x-parameter-group": "filters" }, { - "name": "occupation", + "name": "logic", "in": "query", - "description": "Filter by occupation.", - "style": "deepObject", - "explode": true, + "description": "How to combine the field filters: \"and\" (default) requires every filter to match, \"or\" requires any of them to match.", "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" + "enum": [ + "and", + "or" + ], + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/QueryImagesByBenchmarkEndpoint_Output" } } - }, - "x-parameter-group": "filters" + } }, - { - "name": "tags", - "in": "query", - "description": "Filter by tags.", - "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" + "400": { + "description": "Bad Request", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ValidationProblemDetails" } } - }, - "x-parameter-group": "filters" + } + }, + "401": { + "description": "Unauthenticated" }, + "403": { + "description": "Forbidden" + } + }, + "security": [ { - "name": "participant_id", + "OpenIdConnect": [ + "openid", + "profile", + "email", + "offline_access" + ] + } + ] + } + }, + "/benchmark/{benchmarkId}/leaderboards": { + "get": { + "tags": [ + "Benchmark" + ], + "summary": "Queries all leaderboards for the given benchmark.", + "parameters": [ + { + "name": "benchmarkId", + "in": "path", + "description": "The id of the benchmark whose leaderboards will be returned.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "page", "in": "query", - "description": "Filter by participant_id.", - "style": "deepObject", - "explode": true, + "description": "The 1-based page index.", "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" - } - } + "type": "integer" }, - "x-parameter-group": "filters" + "x-parameter-group": "page" }, { - "name": "leaderboard_id", + "name": "page_size", "in": "query", - "description": "Filter by leaderboard_id.", - "style": "deepObject", - "explode": true, + "description": "The number of items per page.", "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" - } - } + "type": "integer" }, - "x-parameter-group": "filters" + "x-parameter-group": "page" }, { - "name": "run_id", + "name": "sort", "in": "query", - "description": "Filter by run_id.", - "style": "deepObject", - "explode": true, + "description": "Sort fields. Prefix with - for descending order (e.g. -created_at).", "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" - } + "type": "array", + "items": { + "enum": [ + "id", + "-id", + "name", + "-name" + ], + "type": "string" } }, - "x-parameter-group": "filters" + "x-parameter-group": "sort" }, { - "name": "prompt_identifier", + "name": "id", "in": "query", - "description": "Filter by prompt_identifier.", + "description": "Filter by id.", "style": "deepObject", "explode": true, "schema": { @@ -16674,9 +16418,9 @@ "x-parameter-group": "filters" }, { - "name": "voted_at", + "name": "name", "in": "query", - "description": "Filter by voted_at.", + "description": "Filter by name.", "style": "deepObject", "explode": true, "schema": { @@ -16741,7 +16485,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/QueryMatrixByBenchmarkEndpoint_Output" + "$ref": "#/components/schemas/QueryLeaderboardsByBenchmarkEndpoint_PagedResultOfOutput" } } } @@ -16775,12 +16519,12 @@ ] } }, - "/benchmarks/published": { + "/benchmarks/managed": { "get": { "tags": [ "Benchmark" ], - "summary": "Queries the benchmarks surfaced in the public benchmark repository.", + "summary": "Queries the curated benchmarks available to every customer.", "parameters": [ { "name": "page", @@ -17035,7 +16779,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/QueryPublishedBenchmarksEndpoint_PagedResultOfOutput" + "$ref": "#/components/schemas/QueryManagedBenchmarksEndpoint_PagedResultOfOutput" } } } @@ -17069,13 +16813,925 @@ ] } }, - "/benchmark/{benchmarkId}/standings/query": { + "/benchmark/{benchmarkId}/matrix/query": { "get": { "tags": [ "Benchmark" ], - "summary": "Queries the standings of a benchmark.", - "description": "Filters apply to the underlying votes. Benchmarks without granular vote storage evaluate\n only the filters their aggregated data can answer (tags, participants, leaderboards, runs,\n prompt identifiers); demographic and vote-time filters require granular vote storage.", + "summary": "Queries the win matrix of a benchmark.", + "description": "Filters apply to the underlying votes. Benchmarks without granular vote storage evaluate\n only the filters their aggregated data can answer (tags, participants, leaderboards, runs,\n prompt identifiers); demographic and vote-time filters require granular vote storage.\n Alongside the matchup outcomes in data, each response also carries votes: the\n un-binarized human vote counts on the same axes, display-only and not reflected in scoring.", + "parameters": [ + { + "name": "benchmarkId", + "in": "path", + "description": "The id of the benchmark.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "useWeightedScoring", + "in": "query", + "description": "Whether to apply weighted scoring based on user scores.", + "schema": { + "type": "boolean", + "default": false + } + }, + { + "name": "country", + "in": "query", + "description": "Filter by country.", + "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": "language", + "in": "query", + "description": "Filter by language.", + "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": "gender", + "in": "query", + "description": "Filter by gender.", + "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": "age_bucket", + "in": "query", + "description": "Filter by age_bucket.", + "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": "occupation", + "in": "query", + "description": "Filter by occupation.", + "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": "tags", + "in": "query", + "description": "Filter by tags.", + "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": "participant_id", + "in": "query", + "description": "Filter by participant_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": "leaderboard_id", + "in": "query", + "description": "Filter by leaderboard_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": "run_id", + "in": "query", + "description": "Filter by run_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": "prompt_identifier", + "in": "query", + "description": "Filter by prompt_identifier.", + "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": "voted_at", + "in": "query", + "description": "Filter by voted_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", + "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/QueryMatrixByBenchmarkEndpoint_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" + ] + } + ] + } + }, + "/benchmarks/published": { + "get": { + "tags": [ + "Benchmark" + ], + "summary": "Queries the benchmarks surfaced in the public benchmark repository.", + "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": [ + "id", + "-id", + "name", + "-name", + "created_at", + "-created_at" + ], + "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": "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", + "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/QueryPublishedBenchmarksEndpoint_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" + ] + } + ] + } + }, + "/benchmark/{benchmarkId}/standings/query": { + "get": { + "tags": [ + "Benchmark" + ], + "summary": "Queries the standings of a benchmark.", + "description": "Filters apply to the underlying votes. Benchmarks without granular vote storage evaluate\n only the filters their aggregated data can answer (tags, participants, leaderboards, runs,\n prompt identifiers); demographic and vote-time filters require granular vote storage.", "parameters": [ { "name": "benchmarkId", @@ -22655,6 +23311,7 @@ "Sample" ], "summary": "Returns the paged samples of a benchmark filtered by an identifier.", + "description": "Identifiers are free-form text and must be percent-encoded into the path. Slashes have to\n be sent as %2F; they are decoded back to / before the identifier is matched.", "parameters": [ { "name": "benchmarkId", @@ -50307,6 +50964,179 @@ } } }, + "QueryImagesByBenchmarkEndpoint_Output": { + "required": [ + "items", + "totalResponses", + "distinctMatchups", + "totalPrompts", + "page", + "pageSize" + ], + "type": "object", + "properties": { + "items": { + "allOf": [ + { + "type": "array", + "items": { + "$ref": "#/components/schemas/QueryImagesByBenchmarkEndpoint_OutputPrompt" + } + } + ], + "description": "The prompts of this page, each with its ranked images." + }, + "totalResponses": { + "type": "integer", + "description": "Total raw human responses behind the corpus under the current filter.", + "format": "int64" + }, + "distinctMatchups": { + "type": "integer", + "description": "Distinct compared image pairs in the corpus under the current filter.", + "format": "int64" + }, + "totalPrompts": { + "type": "integer", + "description": "The number of prompts the filter leaves rankable — the paging total.", + "format": "int64" + }, + "page": { + "type": "integer", + "description": "The 1-based page index.", + "format": "int32" + }, + "pageSize": { + "type": "integer", + "description": "The page size in prompts.", + "format": "int32" + } + }, + "description": "The queried per-image ratings output." + }, + "QueryImagesByBenchmarkEndpoint_OutputImage": { + "required": [ + "sampleId", + "participantId", + "label", + "responseCount", + "rating", + "rank" + ], + "type": "object", + "properties": { + "sampleId": { + "type": "string" + }, + "participantId": { + "type": "string" + }, + "participantName": { + "type": "string", + "nullable": true + }, + "label": { + "type": "string" + }, + "asset": { + "type": "object", + "oneOf": [ + { + "$ref": "#/components/schemas/IAsset" + } + ], + "nullable": true + }, + "responseCount": { + "type": "integer", + "format": "int64" + }, + "rating": { + "type": "number", + "format": "double", + "nullable": true + }, + "rank": { + "type": "integer", + "format": "int32" + } + } + }, + "QueryImagesByBenchmarkEndpoint_OutputPrompt": { + "required": [ + "promptIdentifier", + "images", + "index", + "columns", + "data", + "votes" + ], + "type": "object", + "properties": { + "promptIdentifier": { + "type": "string" + }, + "promptId": { + "type": "string", + "nullable": true + }, + "englishPrompt": { + "type": "string", + "nullable": true + }, + "originalPrompt": { + "type": "string", + "nullable": true + }, + "promptAsset": { + "type": "object", + "oneOf": [ + { + "$ref": "#/components/schemas/IAsset" + } + ], + "nullable": true + }, + "images": { + "type": "array", + "items": { + "$ref": "#/components/schemas/QueryImagesByBenchmarkEndpoint_OutputImage" + } + }, + "index": { + "type": "array", + "items": { + "type": "string" + } + }, + "columns": { + "type": "array", + "items": { + "type": "string" + } + }, + "data": { + "type": "array", + "items": { + "type": "array", + "items": { + "type": "number", + "format": "double" + } + } + }, + "votes": { + "type": "array", + "items": { + "type": "array", + "items": { + "type": "number", + "format": "double" + } + } + } + } + }, "QueryLeaderboardRunsEndpoint_Output": { "required": [ "id", diff --git a/openapi/schemas/rapidata.openapi.json b/openapi/schemas/rapidata.openapi.json index 608bdb24c..ac656fbb1 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.11.1359-4548577" + "version": "2026.08.12.1010-860c8c8" }, "servers": [ { @@ -16561,22 +16561,32 @@ ] } }, - "/benchmark/{benchmarkId}/leaderboards": { + "/benchmark/{benchmarkId}/images/query": { "get": { "tags": [ "Benchmark" ], - "summary": "Queries all leaderboards for the given benchmark.", + "summary": "Queries the per-image ratings of a benchmark — a page of prompts, each with its ranked images\n and the pairwise win matrix over them, in the same pandas-split shape as the standings matrix.", + "description": "Filters apply to the underlying votes and use the same field set as the standings query.\n Ordering (extremeness by default) selects which prompts a page fits; a rating is an image's\n standing against all images on its prompt, so a participant filter narrows the rows but does not\n refit. Matrix axes are the image labels — a participant's name, suffixed -{n} when it has\n several images on the prompt. A prompt with no matching votes yields no rows.", "parameters": [ { "name": "benchmarkId", "in": "path", - "description": "The id of the benchmark whose leaderboards will be returned.", + "description": "The id of the benchmark.", "required": true, "schema": { "type": "string" } }, + { + "name": "useWeightedScoring", + "in": "query", + "description": "Whether to weight ratings by annotator reliability.", + "schema": { + "type": "boolean", + "default": false + } + }, { "name": "page", "in": "query", @@ -16603,10 +16613,12 @@ "type": "array", "items": { "enum": [ - "id", - "-id", - "name", - "-name" + "extremeness", + "-extremeness", + "responses", + "-responses", + "voted_at", + "-voted_at" ], "type": "string" } @@ -16614,9 +16626,9 @@ "x-parameter-group": "sort" }, { - "name": "id", + "name": "country", "in": "query", - "description": "Filter by id.", + "description": "Filter by country.", "style": "deepObject", "explode": true, "schema": { @@ -16663,9 +16675,9 @@ "x-parameter-group": "filters" }, { - "name": "name", + "name": "language", "in": "query", - "description": "Filter by name.", + "description": "Filter by language.", "style": "deepObject", "explode": true, "schema": { @@ -16712,107 +16724,58 @@ "x-parameter-group": "filters" }, { - "name": "logic", + "name": "gender", "in": "query", - "description": "How to combine the field filters: \"and\" (default) requires every filter to match, \"or\" requires any of them to match.", + "description": "Filter by gender.", + "style": "deepObject", + "explode": true, "schema": { - "enum": [ - "and", - "or" - ], - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/QueryLeaderboardsByBenchmarkEndpoint_PagedResultOfOutput" - } - } - } - }, - "400": { - "description": "Bad Request", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ValidationProblemDetails" + "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" } } - } - }, - "401": { - "description": "Unauthenticated" - }, - "403": { - "description": "Forbidden" - } - }, - "security": [ - { - "OpenIdConnect": [ - "openid", - "profile", - "email", - "offline_access" - ] - } - ] - } - }, - "/benchmarks/managed": { - "get": { - "tags": [ - "Benchmark" - ], - "summary": "Queries the curated benchmarks available to every customer.", - "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": [ - "id", - "-id", - "name", - "-name", - "created_at", - "-created_at" - ], - "type": "string" - } }, - "x-parameter-group": "sort" + "x-parameter-group": "filters" }, { - "name": "id", + "name": "age_bucket", "in": "query", - "description": "Filter by id.", + "description": "Filter by age_bucket.", "style": "deepObject", "explode": true, "schema": { @@ -16859,9 +16822,9 @@ "x-parameter-group": "filters" }, { - "name": "name", + "name": "occupation", "in": "query", - "description": "Filter by name.", + "description": "Filter by occupation.", "style": "deepObject", "explode": true, "schema": { @@ -16908,9 +16871,9 @@ "x-parameter-group": "filters" }, { - "name": "owner_mail", + "name": "tags", "in": "query", - "description": "Filter by owner_mail.", + "description": "Filter by tags.", "style": "deepObject", "explode": true, "schema": { @@ -16957,9 +16920,9 @@ "x-parameter-group": "filters" }, { - "name": "created_at", + "name": "participant_id", "in": "query", - "description": "Filter by created_at.", + "description": "Filter by participant_id.", "style": "deepObject", "explode": true, "schema": { @@ -17006,88 +16969,9 @@ "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/QueryManagedBenchmarksEndpoint_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" - ] - } - ] - } - }, - "/benchmark/{benchmarkId}/matrix/query": { - "get": { - "tags": [ - "Benchmark" - ], - "summary": "Queries the win matrix of a benchmark.", - "description": "Filters apply to the underlying votes. Benchmarks without granular vote storage evaluate\n only the filters their aggregated data can answer (tags, participants, leaderboards, runs,\n prompt identifiers); demographic and vote-time filters require granular vote storage.\n Alongside the matchup outcomes in data, each response also carries votes: the\n un-binarized human vote counts on the same axes, display-only and not reflected in scoring.", - "parameters": [ - { - "name": "benchmarkId", - "in": "path", - "description": "The id of the benchmark.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "useWeightedScoring", - "in": "query", - "description": "Whether to apply weighted scoring based on user scores.", - "schema": { - "type": "boolean", - "default": false - } - }, - { - "name": "country", + "name": "leaderboard_id", "in": "query", - "description": "Filter by country.", + "description": "Filter by leaderboard_id.", "style": "deepObject", "explode": true, "schema": { @@ -17134,9 +17018,9 @@ "x-parameter-group": "filters" }, { - "name": "language", + "name": "run_id", "in": "query", - "description": "Filter by language.", + "description": "Filter by run_id.", "style": "deepObject", "explode": true, "schema": { @@ -17183,9 +17067,9 @@ "x-parameter-group": "filters" }, { - "name": "gender", + "name": "prompt_identifier", "in": "query", - "description": "Filter by gender.", + "description": "Filter by prompt_identifier.", "style": "deepObject", "explode": true, "schema": { @@ -17232,9 +17116,9 @@ "x-parameter-group": "filters" }, { - "name": "age_bucket", + "name": "voted_at", "in": "query", - "description": "Filter by age_bucket.", + "description": "Filter by voted_at.", "style": "deepObject", "explode": true, "schema": { @@ -17281,254 +17165,114 @@ "x-parameter-group": "filters" }, { - "name": "occupation", + "name": "logic", "in": "query", - "description": "Filter by occupation.", - "style": "deepObject", - "explode": true, + "description": "How to combine the field filters: \"and\" (default) requires every filter to match, \"or\" requires any of them to match.", "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" + "enum": [ + "and", + "or" + ], + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/QueryImagesByBenchmarkEndpoint_Output" } } - }, - "x-parameter-group": "filters" + } }, - { - "name": "tags", - "in": "query", - "description": "Filter by tags.", - "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" + "400": { + "description": "Bad Request", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ValidationProblemDetails" } } - }, - "x-parameter-group": "filters" + } + }, + "401": { + "description": "Unauthenticated" }, + "403": { + "description": "Forbidden" + } + }, + "security": [ { - "name": "participant_id", + "OpenIdConnect": [ + "openid", + "profile", + "email", + "offline_access" + ] + } + ] + } + }, + "/benchmark/{benchmarkId}/leaderboards": { + "get": { + "tags": [ + "Benchmark" + ], + "summary": "Queries all leaderboards for the given benchmark.", + "parameters": [ + { + "name": "benchmarkId", + "in": "path", + "description": "The id of the benchmark whose leaderboards will be returned.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "page", "in": "query", - "description": "Filter by participant_id.", - "style": "deepObject", - "explode": true, + "description": "The 1-based page index.", "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" - } - } + "type": "integer" }, - "x-parameter-group": "filters" + "x-parameter-group": "page" }, { - "name": "leaderboard_id", + "name": "page_size", "in": "query", - "description": "Filter by leaderboard_id.", - "style": "deepObject", - "explode": true, + "description": "The number of items per page.", "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" - } - } + "type": "integer" }, - "x-parameter-group": "filters" + "x-parameter-group": "page" }, { - "name": "run_id", + "name": "sort", "in": "query", - "description": "Filter by run_id.", - "style": "deepObject", - "explode": true, + "description": "Sort fields. Prefix with - for descending order (e.g. -created_at).", "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" - } + "type": "array", + "items": { + "enum": [ + "id", + "-id", + "name", + "-name" + ], + "type": "string" } }, - "x-parameter-group": "filters" + "x-parameter-group": "sort" }, { - "name": "prompt_identifier", + "name": "id", "in": "query", - "description": "Filter by prompt_identifier.", + "description": "Filter by id.", "style": "deepObject", "explode": true, "schema": { @@ -17575,9 +17319,9 @@ "x-parameter-group": "filters" }, { - "name": "voted_at", + "name": "name", "in": "query", - "description": "Filter by voted_at.", + "description": "Filter by name.", "style": "deepObject", "explode": true, "schema": { @@ -17642,7 +17386,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/QueryMatrixByBenchmarkEndpoint_Output" + "$ref": "#/components/schemas/QueryLeaderboardsByBenchmarkEndpoint_PagedResultOfOutput" } } } @@ -17676,12 +17420,12 @@ ] } }, - "/benchmarks/published": { + "/benchmarks/managed": { "get": { "tags": [ "Benchmark" ], - "summary": "Queries the benchmarks surfaced in the public benchmark repository.", + "summary": "Queries the curated benchmarks available to every customer.", "parameters": [ { "name": "page", @@ -17936,7 +17680,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/QueryPublishedBenchmarksEndpoint_PagedResultOfOutput" + "$ref": "#/components/schemas/QueryManagedBenchmarksEndpoint_PagedResultOfOutput" } } } @@ -17970,13 +17714,925 @@ ] } }, - "/benchmark/{benchmarkId}/standings/query": { + "/benchmark/{benchmarkId}/matrix/query": { "get": { "tags": [ "Benchmark" ], - "summary": "Queries the standings of a benchmark.", - "description": "Filters apply to the underlying votes. Benchmarks without granular vote storage evaluate\n only the filters their aggregated data can answer (tags, participants, leaderboards, runs,\n prompt identifiers); demographic and vote-time filters require granular vote storage.", + "summary": "Queries the win matrix of a benchmark.", + "description": "Filters apply to the underlying votes. Benchmarks without granular vote storage evaluate\n only the filters their aggregated data can answer (tags, participants, leaderboards, runs,\n prompt identifiers); demographic and vote-time filters require granular vote storage.\n Alongside the matchup outcomes in data, each response also carries votes: the\n un-binarized human vote counts on the same axes, display-only and not reflected in scoring.", + "parameters": [ + { + "name": "benchmarkId", + "in": "path", + "description": "The id of the benchmark.", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "useWeightedScoring", + "in": "query", + "description": "Whether to apply weighted scoring based on user scores.", + "schema": { + "type": "boolean", + "default": false + } + }, + { + "name": "country", + "in": "query", + "description": "Filter by country.", + "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": "language", + "in": "query", + "description": "Filter by language.", + "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": "gender", + "in": "query", + "description": "Filter by gender.", + "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": "age_bucket", + "in": "query", + "description": "Filter by age_bucket.", + "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": "occupation", + "in": "query", + "description": "Filter by occupation.", + "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": "tags", + "in": "query", + "description": "Filter by tags.", + "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": "participant_id", + "in": "query", + "description": "Filter by participant_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": "leaderboard_id", + "in": "query", + "description": "Filter by leaderboard_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": "run_id", + "in": "query", + "description": "Filter by run_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": "prompt_identifier", + "in": "query", + "description": "Filter by prompt_identifier.", + "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": "voted_at", + "in": "query", + "description": "Filter by voted_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", + "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/QueryMatrixByBenchmarkEndpoint_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" + ] + } + ] + } + }, + "/benchmarks/published": { + "get": { + "tags": [ + "Benchmark" + ], + "summary": "Queries the benchmarks surfaced in the public benchmark repository.", + "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": [ + "id", + "-id", + "name", + "-name", + "created_at", + "-created_at" + ], + "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": "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", + "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/QueryPublishedBenchmarksEndpoint_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" + ] + } + ] + } + }, + "/benchmark/{benchmarkId}/standings/query": { + "get": { + "tags": [ + "Benchmark" + ], + "summary": "Queries the standings of a benchmark.", + "description": "Filters apply to the underlying votes. Benchmarks without granular vote storage evaluate\n only the filters their aggregated data can answer (tags, participants, leaderboards, runs,\n prompt identifiers); demographic and vote-time filters require granular vote storage.", "parameters": [ { "name": "benchmarkId", @@ -24363,6 +25019,7 @@ "Sample" ], "summary": "Returns the paged samples of a benchmark filtered by an identifier.", + "description": "Identifiers are free-form text and must be percent-encoded into the path. Slashes have to\n be sent as %2F; they are decoded back to / before the identifier is matched.", "parameters": [ { "name": "benchmarkId", @@ -52195,6 +52852,179 @@ } } }, + "QueryImagesByBenchmarkEndpoint_Output": { + "required": [ + "items", + "totalResponses", + "distinctMatchups", + "totalPrompts", + "page", + "pageSize" + ], + "type": "object", + "properties": { + "items": { + "allOf": [ + { + "type": "array", + "items": { + "$ref": "#/components/schemas/QueryImagesByBenchmarkEndpoint_OutputPrompt" + } + } + ], + "description": "The prompts of this page, each with its ranked images." + }, + "totalResponses": { + "type": "integer", + "description": "Total raw human responses behind the corpus under the current filter.", + "format": "int64" + }, + "distinctMatchups": { + "type": "integer", + "description": "Distinct compared image pairs in the corpus under the current filter.", + "format": "int64" + }, + "totalPrompts": { + "type": "integer", + "description": "The number of prompts the filter leaves rankable — the paging total.", + "format": "int64" + }, + "page": { + "type": "integer", + "description": "The 1-based page index.", + "format": "int32" + }, + "pageSize": { + "type": "integer", + "description": "The page size in prompts.", + "format": "int32" + } + }, + "description": "The queried per-image ratings output." + }, + "QueryImagesByBenchmarkEndpoint_OutputImage": { + "required": [ + "sampleId", + "participantId", + "label", + "responseCount", + "rating", + "rank" + ], + "type": "object", + "properties": { + "sampleId": { + "type": "string" + }, + "participantId": { + "type": "string" + }, + "participantName": { + "type": "string", + "nullable": true + }, + "label": { + "type": "string" + }, + "asset": { + "type": "object", + "oneOf": [ + { + "$ref": "#/components/schemas/IAsset" + } + ], + "nullable": true + }, + "responseCount": { + "type": "integer", + "format": "int64" + }, + "rating": { + "type": "number", + "format": "double", + "nullable": true + }, + "rank": { + "type": "integer", + "format": "int32" + } + } + }, + "QueryImagesByBenchmarkEndpoint_OutputPrompt": { + "required": [ + "promptIdentifier", + "images", + "index", + "columns", + "data", + "votes" + ], + "type": "object", + "properties": { + "promptIdentifier": { + "type": "string" + }, + "promptId": { + "type": "string", + "nullable": true + }, + "englishPrompt": { + "type": "string", + "nullable": true + }, + "originalPrompt": { + "type": "string", + "nullable": true + }, + "promptAsset": { + "type": "object", + "oneOf": [ + { + "$ref": "#/components/schemas/IAsset" + } + ], + "nullable": true + }, + "images": { + "type": "array", + "items": { + "$ref": "#/components/schemas/QueryImagesByBenchmarkEndpoint_OutputImage" + } + }, + "index": { + "type": "array", + "items": { + "type": "string" + } + }, + "columns": { + "type": "array", + "items": { + "type": "string" + } + }, + "data": { + "type": "array", + "items": { + "type": "array", + "items": { + "type": "number", + "format": "double" + } + } + }, + "votes": { + "type": "array", + "items": { + "type": "array", + "items": { + "type": "number", + "format": "double" + } + } + } + } + }, "QueryLeaderboardRunsEndpoint_Output": { "required": [ "id", diff --git a/openapi/schemas/signal.openapi.json b/openapi/schemas/signal.openapi.json index 0d4b12afe..050eccdfc 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.11.1359-4548577" + "version": "2026.08.12.1010-860c8c8" }, "servers": [ { diff --git a/openapi/schemas/translation.openapi.json b/openapi/schemas/translation.openapi.json index a6693aec4..e84643bd1 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.11.1359-4548577" + "version": "2026.08.12.1010-860c8c8" }, "servers": [ { diff --git a/openapi/schemas/validation.openapi.json b/openapi/schemas/validation.openapi.json index 4a507e713..4db354703 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.11.1359-4548577" + "version": "2026.08.12.1010-860c8c8" }, "servers": [ { diff --git a/openapi/schemas/workflow.openapi.json b/openapi/schemas/workflow.openapi.json index 2dd175e5d..e8a7b2a9e 100644 --- a/openapi/schemas/workflow.openapi.json +++ b/openapi/schemas/workflow.openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Rapidata Workflow API", "description": "The API for the Rapidata Workflow service", - "version": "2026.08.11.1359-4548577" + "version": "2026.08.12.1010-860c8c8" }, "servers": [ { diff --git a/src/rapidata/api_client/__init__.py b/src/rapidata/api_client/__init__.py index 101955b75..bd1b5df60 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 d101bfbce..b3fbfe223 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 0754f45d7..bbaaab3c2 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 f87e40fb8..14e69dcc9 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 f0ad17f62..a07d06a04 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. @@ -44,6 +44,7 @@ from rapidata.api_client.models.query_benchmarks_endpoint_paged_result_of_output import QueryBenchmarksEndpointPagedResultOfOutput from rapidata.api_client.models.query_combined_matrix_by_benchmarks_endpoint_output import QueryCombinedMatrixByBenchmarksEndpointOutput from rapidata.api_client.models.query_combined_standings_by_benchmarks_endpoint_output import QueryCombinedStandingsByBenchmarksEndpointOutput +from rapidata.api_client.models.query_images_by_benchmark_endpoint_output import QueryImagesByBenchmarkEndpointOutput from rapidata.api_client.models.query_leaderboards_by_benchmark_endpoint_paged_result_of_output import QueryLeaderboardsByBenchmarkEndpointPagedResultOfOutput from rapidata.api_client.models.query_managed_benchmarks_endpoint_paged_result_of_output import QueryManagedBenchmarksEndpointPagedResultOfOutput from rapidata.api_client.models.query_matrix_by_benchmark_endpoint_output import QueryMatrixByBenchmarkEndpointOutput @@ -2571,6 +2572,670 @@ def _benchmark_benchmark_id_huggingface_sync_post_serialize( + @validate_call + def benchmark_benchmark_id_images_query_get( + self, + benchmark_id: Annotated[StrictStr, Field(description="The id of the benchmark.")], + use_weighted_scoring: Annotated[Optional[StrictBool], Field(description="Whether to weight ratings by annotator reliability.")] = None, + 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, + country: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by country.")] = None, + language: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by language.")] = None, + gender: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by gender.")] = None, + age_bucket: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by age_bucket.")] = None, + occupation: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by occupation.")] = None, + tags: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by tags.")] = None, + participant_id: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by participant_id.")] = None, + leaderboard_id: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by leaderboard_id.")] = None, + run_id: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by run_id.")] = None, + prompt_identifier: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by prompt_identifier.")] = None, + voted_at: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by voted_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, + 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, + ) -> QueryImagesByBenchmarkEndpointOutput: + """Queries the per-image ratings of a benchmark — a page of prompts, each with its ranked images and the pairwise win matrix over them, in the same pandas-split shape as the standings matrix. + + Filters apply to the underlying votes and use the same field set as the standings query. Ordering (extremeness by default) selects which prompts a page fits; a rating is an image's standing against all images on its prompt, so a participant filter narrows the rows but does not refit. Matrix axes are the image labels — a participant's name, suffixed -{n} when it has several images on the prompt. A prompt with no matching votes yields no rows. + + :param benchmark_id: The id of the benchmark. (required) + :type benchmark_id: str + :param use_weighted_scoring: Whether to weight ratings by annotator reliability. + :type use_weighted_scoring: bool + :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 country: Filter by country. + :type country: AudienceAudienceIdJobsGetJobIdParameter + :param language: Filter by language. + :type language: AudienceAudienceIdJobsGetJobIdParameter + :param gender: Filter by gender. + :type gender: AudienceAudienceIdJobsGetJobIdParameter + :param age_bucket: Filter by age_bucket. + :type age_bucket: AudienceAudienceIdJobsGetJobIdParameter + :param occupation: Filter by occupation. + :type occupation: AudienceAudienceIdJobsGetJobIdParameter + :param tags: Filter by tags. + :type tags: AudienceAudienceIdJobsGetJobIdParameter + :param participant_id: Filter by participant_id. + :type participant_id: AudienceAudienceIdJobsGetJobIdParameter + :param leaderboard_id: Filter by leaderboard_id. + :type leaderboard_id: AudienceAudienceIdJobsGetJobIdParameter + :param run_id: Filter by run_id. + :type run_id: AudienceAudienceIdJobsGetJobIdParameter + :param prompt_identifier: Filter by prompt_identifier. + :type prompt_identifier: AudienceAudienceIdJobsGetJobIdParameter + :param voted_at: Filter by voted_at. + :type voted_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 + 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._benchmark_benchmark_id_images_query_get_serialize( + benchmark_id=benchmark_id, + use_weighted_scoring=use_weighted_scoring, + page=page, + page_size=page_size, + sort=sort, + country=country, + language=language, + gender=gender, + age_bucket=age_bucket, + occupation=occupation, + tags=tags, + participant_id=participant_id, + leaderboard_id=leaderboard_id, + run_id=run_id, + prompt_identifier=prompt_identifier, + voted_at=voted_at, + logic=logic, + _request_auth=_request_auth, + _content_type=_content_type, + _headers=_headers, + _host_index=_host_index + ) + + _response_types_map: Dict[str, Optional[str]] = { + '200': "QueryImagesByBenchmarkEndpointOutput", + '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 benchmark_benchmark_id_images_query_get_with_http_info( + self, + benchmark_id: Annotated[StrictStr, Field(description="The id of the benchmark.")], + use_weighted_scoring: Annotated[Optional[StrictBool], Field(description="Whether to weight ratings by annotator reliability.")] = None, + 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, + country: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by country.")] = None, + language: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by language.")] = None, + gender: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by gender.")] = None, + age_bucket: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by age_bucket.")] = None, + occupation: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by occupation.")] = None, + tags: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by tags.")] = None, + participant_id: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by participant_id.")] = None, + leaderboard_id: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by leaderboard_id.")] = None, + run_id: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by run_id.")] = None, + prompt_identifier: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by prompt_identifier.")] = None, + voted_at: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by voted_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, + 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[QueryImagesByBenchmarkEndpointOutput]: + """Queries the per-image ratings of a benchmark — a page of prompts, each with its ranked images and the pairwise win matrix over them, in the same pandas-split shape as the standings matrix. + + Filters apply to the underlying votes and use the same field set as the standings query. Ordering (extremeness by default) selects which prompts a page fits; a rating is an image's standing against all images on its prompt, so a participant filter narrows the rows but does not refit. Matrix axes are the image labels — a participant's name, suffixed -{n} when it has several images on the prompt. A prompt with no matching votes yields no rows. + + :param benchmark_id: The id of the benchmark. (required) + :type benchmark_id: str + :param use_weighted_scoring: Whether to weight ratings by annotator reliability. + :type use_weighted_scoring: bool + :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 country: Filter by country. + :type country: AudienceAudienceIdJobsGetJobIdParameter + :param language: Filter by language. + :type language: AudienceAudienceIdJobsGetJobIdParameter + :param gender: Filter by gender. + :type gender: AudienceAudienceIdJobsGetJobIdParameter + :param age_bucket: Filter by age_bucket. + :type age_bucket: AudienceAudienceIdJobsGetJobIdParameter + :param occupation: Filter by occupation. + :type occupation: AudienceAudienceIdJobsGetJobIdParameter + :param tags: Filter by tags. + :type tags: AudienceAudienceIdJobsGetJobIdParameter + :param participant_id: Filter by participant_id. + :type participant_id: AudienceAudienceIdJobsGetJobIdParameter + :param leaderboard_id: Filter by leaderboard_id. + :type leaderboard_id: AudienceAudienceIdJobsGetJobIdParameter + :param run_id: Filter by run_id. + :type run_id: AudienceAudienceIdJobsGetJobIdParameter + :param prompt_identifier: Filter by prompt_identifier. + :type prompt_identifier: AudienceAudienceIdJobsGetJobIdParameter + :param voted_at: Filter by voted_at. + :type voted_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 + 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._benchmark_benchmark_id_images_query_get_serialize( + benchmark_id=benchmark_id, + use_weighted_scoring=use_weighted_scoring, + page=page, + page_size=page_size, + sort=sort, + country=country, + language=language, + gender=gender, + age_bucket=age_bucket, + occupation=occupation, + tags=tags, + participant_id=participant_id, + leaderboard_id=leaderboard_id, + run_id=run_id, + prompt_identifier=prompt_identifier, + voted_at=voted_at, + logic=logic, + _request_auth=_request_auth, + _content_type=_content_type, + _headers=_headers, + _host_index=_host_index + ) + + _response_types_map: Dict[str, Optional[str]] = { + '200': "QueryImagesByBenchmarkEndpointOutput", + '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 benchmark_benchmark_id_images_query_get_without_preload_content( + self, + benchmark_id: Annotated[StrictStr, Field(description="The id of the benchmark.")], + use_weighted_scoring: Annotated[Optional[StrictBool], Field(description="Whether to weight ratings by annotator reliability.")] = None, + 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, + country: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by country.")] = None, + language: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by language.")] = None, + gender: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by gender.")] = None, + age_bucket: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by age_bucket.")] = None, + occupation: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by occupation.")] = None, + tags: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by tags.")] = None, + participant_id: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by participant_id.")] = None, + leaderboard_id: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by leaderboard_id.")] = None, + run_id: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by run_id.")] = None, + prompt_identifier: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by prompt_identifier.")] = None, + voted_at: Annotated[Optional[AudienceAudienceIdJobsGetJobIdParameter], Field(description="Filter by voted_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, + 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: + """Queries the per-image ratings of a benchmark — a page of prompts, each with its ranked images and the pairwise win matrix over them, in the same pandas-split shape as the standings matrix. + + Filters apply to the underlying votes and use the same field set as the standings query. Ordering (extremeness by default) selects which prompts a page fits; a rating is an image's standing against all images on its prompt, so a participant filter narrows the rows but does not refit. Matrix axes are the image labels — a participant's name, suffixed -{n} when it has several images on the prompt. A prompt with no matching votes yields no rows. + + :param benchmark_id: The id of the benchmark. (required) + :type benchmark_id: str + :param use_weighted_scoring: Whether to weight ratings by annotator reliability. + :type use_weighted_scoring: bool + :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 country: Filter by country. + :type country: AudienceAudienceIdJobsGetJobIdParameter + :param language: Filter by language. + :type language: AudienceAudienceIdJobsGetJobIdParameter + :param gender: Filter by gender. + :type gender: AudienceAudienceIdJobsGetJobIdParameter + :param age_bucket: Filter by age_bucket. + :type age_bucket: AudienceAudienceIdJobsGetJobIdParameter + :param occupation: Filter by occupation. + :type occupation: AudienceAudienceIdJobsGetJobIdParameter + :param tags: Filter by tags. + :type tags: AudienceAudienceIdJobsGetJobIdParameter + :param participant_id: Filter by participant_id. + :type participant_id: AudienceAudienceIdJobsGetJobIdParameter + :param leaderboard_id: Filter by leaderboard_id. + :type leaderboard_id: AudienceAudienceIdJobsGetJobIdParameter + :param run_id: Filter by run_id. + :type run_id: AudienceAudienceIdJobsGetJobIdParameter + :param prompt_identifier: Filter by prompt_identifier. + :type prompt_identifier: AudienceAudienceIdJobsGetJobIdParameter + :param voted_at: Filter by voted_at. + :type voted_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 + 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._benchmark_benchmark_id_images_query_get_serialize( + benchmark_id=benchmark_id, + use_weighted_scoring=use_weighted_scoring, + page=page, + page_size=page_size, + sort=sort, + country=country, + language=language, + gender=gender, + age_bucket=age_bucket, + occupation=occupation, + tags=tags, + participant_id=participant_id, + leaderboard_id=leaderboard_id, + run_id=run_id, + prompt_identifier=prompt_identifier, + voted_at=voted_at, + logic=logic, + _request_auth=_request_auth, + _content_type=_content_type, + _headers=_headers, + _host_index=_host_index + ) + + _response_types_map: Dict[str, Optional[str]] = { + '200': "QueryImagesByBenchmarkEndpointOutput", + '400': "ValidationProblemDetails", + '401': None, + '403': None, + } + response_data = self.api_client.call_api( + *_param, + _request_timeout=_request_timeout + ) + return response_data.response + + + def _benchmark_benchmark_id_images_query_get_serialize( + self, + benchmark_id, + use_weighted_scoring, + page, + page_size, + sort, + country, + language, + gender, + age_bucket, + occupation, + tags, + participant_id, + leaderboard_id, + run_id, + prompt_identifier, + voted_at, + 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 + if benchmark_id is not None: + _path_params['benchmarkId'] = benchmark_id + # process the query parameters + if use_weighted_scoring is not None: + + _query_params.append(('useWeightedScoring', use_weighted_scoring)) + + 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 country is not None: + _param_val = country + 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(('country[' + _k + ']', _item)) + else: + _query_params.append(('country[' + _k + ']', _v)) + if language is not None: + _param_val = language + 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(('language[' + _k + ']', _item)) + else: + _query_params.append(('language[' + _k + ']', _v)) + if gender is not None: + _param_val = gender + 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(('gender[' + _k + ']', _item)) + else: + _query_params.append(('gender[' + _k + ']', _v)) + if age_bucket is not None: + _param_val = age_bucket + 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(('age_bucket[' + _k + ']', _item)) + else: + _query_params.append(('age_bucket[' + _k + ']', _v)) + if occupation is not None: + _param_val = occupation + 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(('occupation[' + _k + ']', _item)) + else: + _query_params.append(('occupation[' + _k + ']', _v)) + if tags is not None: + _param_val = tags + 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(('tags[' + _k + ']', _item)) + else: + _query_params.append(('tags[' + _k + ']', _v)) + if participant_id is not None: + _param_val = participant_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(('participant_id[' + _k + ']', _item)) + else: + _query_params.append(('participant_id[' + _k + ']', _v)) + if leaderboard_id is not None: + _param_val = leaderboard_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(('leaderboard_id[' + _k + ']', _item)) + else: + _query_params.append(('leaderboard_id[' + _k + ']', _v)) + if run_id is not None: + _param_val = run_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(('run_id[' + _k + ']', _item)) + else: + _query_params.append(('run_id[' + _k + ']', _v)) + if prompt_identifier is not None: + _param_val = prompt_identifier + 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(('prompt_identifier[' + _k + ']', _item)) + else: + _query_params.append(('prompt_identifier[' + _k + ']', _v)) + if voted_at is not None: + _param_val = voted_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(('voted_at[' + _k + ']', _item)) + else: + _query_params.append(('voted_at[' + _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='/benchmark/{benchmarkId}/images/query', + 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 benchmark_benchmark_id_leaderboards_get( self, diff --git a/src/rapidata/api_client/api/bidder_api.py b/src/rapidata/api_client/api/bidder_api.py index 817026f92..8e82666f0 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 cea2ca6fd..b3a0e5fec 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 43ef813e6..0b55a462a 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 17dfb239c..61431ce35 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 b6964846e..210015840 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 369fe7d3a..9ee58eeca 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 b81ec61cd..b4d06f690 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 e65e12b28..01b9f6136 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 d05be2e4a..21fb6311f 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 f4c4a6aa0..6f8edfed8 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 f6df2ebfa..3253ed36a 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 ea44721a8..7228e26b0 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 27c0d3267..11494eab2 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/api/evaluation_api.py b/src/rapidata/api_client/api/evaluation_api.py index 418599dc9..90be9d2a6 100644 --- a/src/rapidata/api_client/api/evaluation_api.py +++ b/src/rapidata/api_client/api/evaluation_api.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 3d0432c8f..00fcffdeb 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 a5e26bb93..1706ccabd 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 f4ce26d86..25fb43508 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 86d125c1e..49bab66ef 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 2e021e4a0..54d863d20 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 202af7d63..ea1df3b0e 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 566189b1c..0e3edb797 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 5a5bcf70c..5d6dafad8 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/api/grouped_ranking_api.py b/src/rapidata/api_client/api/grouped_ranking_api.py index 995ef6c44..d4fbc2b71 100644 --- a/src/rapidata/api_client/api/grouped_ranking_api.py +++ b/src/rapidata/api_client/api/grouped_ranking_api.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 f3ef20901..8f5205ed2 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 90fa8b211..0eabc545c 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 90422eced..98391c8f1 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 064e6f736..faf204b69 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/api/leaderboard_api.py b/src/rapidata/api_client/api/leaderboard_api.py index 4499f5f8f..c1c9b7b15 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 6e33cbfc3..9e3db416c 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 377116334..476e28edd 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 0fabc6b12..ac67dccdd 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 18da41962..c45315e1a 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 172a54c3d..678086d4a 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 0945072b7..53cb3427a 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/api/pipeline_api.py b/src/rapidata/api_client/api/pipeline_api.py index e1074b195..a6283d0b1 100644 --- a/src/rapidata/api_client/api/pipeline_api.py +++ b/src/rapidata/api_client/api/pipeline_api.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 f7be37ecb..1832da87d 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 39204231a..b509015c3 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 f0b3a4601..319ea9e08 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/api/ranking_api.py b/src/rapidata/api_client/api/ranking_api.py index feb4dbc7e..e4739cdbb 100644 --- a/src/rapidata/api_client/api/ranking_api.py +++ b/src/rapidata/api_client/api/ranking_api.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 756902295..abbc3092c 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 a616e8ea2..abba61a35 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 29095aecc..4736b66aa 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 1137f8893..b62184a03 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 87d817db9..311220195 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 47ebbfaca..3b67480e8 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 6b0250f14..145e55368 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. @@ -69,6 +69,7 @@ def benchmark_benchmark_id_samples_identifier_get( ) -> GetSamplesByIdentifierEndpointPagedResultOfOutput: """Returns the paged samples of a benchmark filtered by an identifier. + Identifiers are free-form text and must be percent-encoded into the path. Slashes have to be sent as %2F; they are decoded back to / before the identifier is matched. :param benchmark_id: The id of the benchmark to query. (required) :type benchmark_id: str @@ -170,6 +171,7 @@ def benchmark_benchmark_id_samples_identifier_get_with_http_info( ) -> ApiResponse[GetSamplesByIdentifierEndpointPagedResultOfOutput]: """Returns the paged samples of a benchmark filtered by an identifier. + Identifiers are free-form text and must be percent-encoded into the path. Slashes have to be sent as %2F; they are decoded back to / before the identifier is matched. :param benchmark_id: The id of the benchmark to query. (required) :type benchmark_id: str @@ -271,6 +273,7 @@ def benchmark_benchmark_id_samples_identifier_get_without_preload_content( ) -> RESTResponseType: """Returns the paged samples of a benchmark filtered by an identifier. + Identifiers are free-form text and must be percent-encoded into the path. Slashes have to be sent as %2F; they are decoded back to / before the identifier is matched. :param benchmark_id: The id of the benchmark to query. (required) :type benchmark_id: str diff --git a/src/rapidata/api_client/api/sample_generation_api.py b/src/rapidata/api_client/api/sample_generation_api.py index 26b9fcacf..18f3ffe03 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 d98c9a86d..7f0a36c44 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 26b032568..9b387c084 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/api/simple_workflow_api.py b/src/rapidata/api_client/api/simple_workflow_api.py index 04a1efd2c..6d6893cc3 100644 --- a/src/rapidata/api_client/api/simple_workflow_api.py +++ b/src/rapidata/api_client/api/simple_workflow_api.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 b79feb51c..4ea934b3a 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 f6a413971..ae917e5f2 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 6477844f2..f042197ea 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 7d3492205..623bfc68a 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 0927e2465..3f3f1aca2 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 e544fbbfe..613212422 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/api/workflow_api.py b/src/rapidata/api_client/api/workflow_api.py index 5454d3790..fc2ce1cd2 100644 --- a/src/rapidata/api_client/api/workflow_api.py +++ b/src/rapidata/api_client/api/workflow_api.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 08f4e8ba6..2347eaa02 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 89b643b4f..9e743b2ab 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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.11.1359-4548577\n"\ + "Version of the API: 2026.08.12.1010-860c8c8\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 ad0044d22..3fbfc99a6 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 f3e91e9f6..622e6287d 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 3608909e7..f3bf33c11 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 f043383ec..adfaea3fb 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 a5357ce7c..e463de002 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 67edbb8e4..b4244bdf4 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 c227c2fb1..5f32c1dc9 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 a2c920da0..2c364a9e3 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 cce44d8a3..c4ae97450 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 e793ece8c..c8622e251 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 c5b3ad4cc..54fc9e5ce 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 d638539b7..74efcfc73 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 d76316edc..1a0a9488a 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/attach_category_workflow_rapid_blueprint_category.py b/src/rapidata/api_client/models/attach_category_workflow_rapid_blueprint_category.py index dfc28c82b..a0f3fca73 100644 --- a/src/rapidata/api_client/models/attach_category_workflow_rapid_blueprint_category.py +++ b/src/rapidata/api_client/models/attach_category_workflow_rapid_blueprint_category.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 d24155377..da97d2de5 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 5e8cbf13e..c864903c8 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 a22d79854..906dde55a 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 50587db82..5c26297e2 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 ef51e3fb7..b5f1a75ee 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 0adb216d2..c410f666a 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 d98642834..6c97a038b 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 996fbcda6..2bd3002ad 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 4489cdebf..bdd64288a 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 6e960653b..8412aad52 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 379fe982d..3a9787a0f 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 7b90a8c10..bc7b45e7f 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 00c25e365..3253811a2 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 2d263e6c8..4ddcdec63 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 2fbee01c6..5189313af 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 b8e63a2c3..8c46d38bb 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 7dedc4e2c..8415e6ebd 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 149e6582e..90d471cc9 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 99c899451..65f05d882 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 beb2454b9..e2752890b 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 716a5a566..3d1f3df2c 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 ba9b71070..712deef52 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 4e2051a2e..3b0905a1b 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 d4f8c2561..b2aeb774e 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 ab36f55f3..243c0ede2 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 a46eda7f4..efc3d28ea 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 54d81c03e..b1fceeb96 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 d4c2ad4f0..d69ce6d34 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 e96a8eb19..06b0d3211 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 7e9721537..db7eb6e66 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 29d83a477..2eacfeed1 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 dee7c71cf..938f9d811 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 677ed9c92..27987f1a5 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 2df1d6e66..33f874a8c 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 912a637a1..375e676e8 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 f43d0dabe..61faa7190 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 8d01c443e..33c7fc5c5 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 21d6903c9..db151a64d 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 868bda3b4..0afb9f0fe 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 72648e523..a49477ceb 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 defb2d885..115da57c9 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 a1402f92a..0988fb5da 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 2e6ef2626..50cb0e242 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 d33e6558f..b81fdfef7 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 6d3aca193..d9e62020b 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 4b1f15be5..a09c74697 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 57f80f8f4..069c81a6d 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 2796406f0..4ef7c6c28 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 9495d31bf..7d2749c79 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 05e801646..e35d26a29 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 a65bc7aad..c010deaa6 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 ea73f82a3..6db84d715 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 d176b3423..6d6e6cf76 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 a04207156..997a77e8a 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 68c5af9c0..16555bf8b 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 a9ce3c355..32d7b5f77 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/create_customer_billing_setting_endpoint_input.py b/src/rapidata/api_client/models/create_customer_billing_setting_endpoint_input.py index f8e461f0b..b2042053e 100644 --- a/src/rapidata/api_client/models/create_customer_billing_setting_endpoint_input.py +++ b/src/rapidata/api_client/models/create_customer_billing_setting_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 64deaef43..cacc3d65e 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 a01d14aa2..c30ffe59a 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 078046bbd..36ce03e28 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 7e74c5047..8f2555b97 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 6b9b0be0e..506560d00 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 019f598e8..80e035d62 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 3ed0fefe7..d0b7d5021 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 c67be5b47..5d8d96704 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 e5e7604f5..08803703e 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 2fd4df2d9..b2c8a951d 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 1f584e933..ae27f3fee 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 65ea0fed8..6f4f89391 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 617bf2ede..10e082063 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 6b76c7e79..50e0f7198 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 d7a0e2d7f..b61dc5dcc 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 be5e291e2..39b3856ad 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 c61952128..a21896418 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 f2ef70377..a03d6afbb 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 e601628e6..76259e17a 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 7ddddfdb9..6f149c709 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 d9bd2f3c1..485e11f4f 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 5830747fc..e4301a2f5 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 d030d1733..c2b6e6845 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 afe924cc6..aabdd6b81 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 b102cac5b..b12a8b62c 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 dd63d30ee..ef45c9106 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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_input.py b/src/rapidata/api_client/models/create_leaderboard_endpoint_input.py index 4641e43db..af98c2782 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 54d575b99..a8bfaf169 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 4cd316f81..bc6bc0381 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 f1e0f67cd..208b1b0dd 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 0edf77b91..e8e1b2729 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 629f74333..f5baf3fee 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 65da0129d..e695b277b 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 04f2f4b3c..bbd57d6e8 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 d619ee24e..c653f25d1 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 a854f03b2..4c904766c 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 c5eb71039..d30c6a957 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 f800eb9e8..bcd128d09 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 f24d9c4a6..b71f1d124 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 eae09c39f..585db8304 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 77efcc162..e88a1eee3 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 dc2926b5b..0d00eeab9 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 023ae8f9a..b39738fec 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 f4e9e663a..5dcce4948 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 a20ddadf8..528fa36f1 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 5bdb0c2aa..e48993ba0 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 08beb7d38..789ff76ff 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 0064494ce..38ecdaa07 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 c94023058..1dfea9903 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 9497b336a..b5d13314c 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 122793b38..bcac3a12d 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 e1bc43ca6..d5affaffe 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 6ef0e43d2..14c29ae23 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 5e19a70c3..3a072240d 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 138354afa..20875501f 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 bf61bcab1..f98f2e4e5 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 1f6a62743..f943ebc85 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 be4f6d8c8..092f266f3 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 1efae6805..1a2d9c4db 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 a2fda1c8b..ae24354d8 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 256a9d01a..be21a88c8 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 a69180f17..05500c793 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 25286c215..e4f5d3533 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 ec5941a65..112220400 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 07ec3520a..cbc500ba0 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 237f4d026..a32c244b3 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 3613377ef..10358ea6d 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 1accb20ad..049ce39a6 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 8cd909778..13e6ffb5f 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 3da66286e..c0b9d3e15 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 8a9fac36e..d576d3e94 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 e87fc0137..3a21336c0 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 b87ded8ae..3bafe63fe 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 b14e1ac18..17bf5b48c 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 639387a9a..25097bc9f 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 6e9363471..68988649b 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 568b2c60d..6ae3ea9c7 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 f1b06115e..9e0e37c22 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 ede696374..87170efbd 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 5ad6168d1..534c32e4d 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 34662dcb8..fe45f9493 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 2138e5532..1c84adcb0 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 1905162b4..e5612ca7b 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 b668b3b45..2a48a361c 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 aa784a78c..14049d47f 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 5793b1cb4..e0846100c 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 f518172ab..79bd13edc 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 2fcfd37d9..46934dbd6 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 f028e2a12..9264ba4ad 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 361f8f668..289a4f542 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 c69e606fa..123894fc7 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 3e34caab0..1bddfd938 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 51889b081..b40b29b37 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 4eac12e4d..6ddd090e1 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 d48a2ca61..6b0a22f43 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 552da1c31..5fbbb31fd 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 71eb0745e..b977dd9eb 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 9ef0dfe3c..00c0867f3 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 dccddc28f..68b0de1cb 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 a95ba07d0..4b4a32299 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 7b892f7f2..d34798e80 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 9102ea6b0..5904b090b 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 2ee8663b1..0b28d485c 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 7b15633d2..0a87fe31c 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 7501ec3bc..f2e19005b 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 201002a33..137483128 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 a54949441..77a27ff49 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 9ebcb5692..c15c52e0e 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 0705e1332..17def50ee 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 bc597d3ba..a78bfa586 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 55536e54b..41cb66834 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 131ae6175..809ed6e1c 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 37ca8289e..ace63b3ec 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 da16cca0e..9a0c71431 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 c7914a227..a912b08ab 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 e9fcd52ca..b9f74d151 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 a8ba533b1..008ceafae 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 a33e0f9e8..3663f8e74 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 7a790ddd0..7419cef1a 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 5e94438aa..42a44471f 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 1b190d26a..a6139fb5b 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 6f7b774f9..3922f9551 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 8f03d0716..18cc2071f 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 5a3db5b0f..2dcaaff0a 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 b98b0eee2..fc342be2a 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 1831549ef..0f7e8125e 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 3afdf5cb8..4f89e3c05 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 daf30ee39..bd1736783 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 8fad0b320..fb8f4cbdc 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 b634af7be..08fc4e824 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 13344ac9d..ca9e3f548 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 8c7d4ec4b..d0342bba8 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 6d1a38b75..b394c6dae 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 2f257ded4..645ab50dc 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 13da3dfaf..36d9eb9f7 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 b63008f30..87f602f93 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 4b2450623..02d521f40 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 28a638e2c..82d77c984 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_compare_ab_summary_endpoint_output.py b/src/rapidata/api_client/models/get_compare_ab_summary_endpoint_output.py index 6ca5f95b8..146ab678b 100644 --- a/src/rapidata/api_client/models/get_compare_ab_summary_endpoint_output.py +++ b/src/rapidata/api_client/models/get_compare_ab_summary_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 d3a5ca5e6..fef73d9cb 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 f5ee0976c..73c4ecc64 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 62209da9b..33bf14e55 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 f40f9d1e3..346ca60e4 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 ba1cc2046..a6068ff39 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 a6b6b9c06..6c3a56ee7 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 a13d08ff0..bbf2bc1b2 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 40d73307a..c119221e3 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 7e0f445e5..10c11ff4d 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 3787933b9..6e3c69edf 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 4c64453dd..777ec2364 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 a921facc2..f76f332ac 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 01d6d4338..ed2a68066 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 9e3561792..51ca2ad0e 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 638980a30..add95ee5c 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 52f428e76..d8533166b 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 384e93f91..d04dceb13 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 07eabd8de..f637a0e2a 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_grouped_ranking_workflow_results_endpoint_output.py b/src/rapidata/api_client/models/get_grouped_ranking_workflow_results_endpoint_output.py index 73b2b558c..789af532e 100644 --- a/src/rapidata/api_client/models/get_grouped_ranking_workflow_results_endpoint_output.py +++ b/src/rapidata/api_client/models/get_grouped_ranking_workflow_results_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_grouped_ranking_workflow_results_endpoint_paged_result_of_output.py b/src/rapidata/api_client/models/get_grouped_ranking_workflow_results_endpoint_paged_result_of_output.py index efc787ac2..2d8f7b43d 100644 --- a/src/rapidata/api_client/models/get_grouped_ranking_workflow_results_endpoint_paged_result_of_output.py +++ b/src/rapidata/api_client/models/get_grouped_ranking_workflow_results_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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 d71ccb423..8f7f8719c 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 80b92e2dd..f1cf0d57f 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 dda036ffa..d0456e3a7 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 41e57d1e0..4ca050ce4 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 02d829c01..d65af2b52 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 0fcbcf3e4..0353d59d2 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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_inactivity_sync_endpoint_output.py b/src/rapidata/api_client/models/get_latest_audience_inactivity_sync_endpoint_output.py index 27cba1acc..9e90b9135 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 06d575bbe..18c5be943 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 e438aa861..5f287b6ef 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 d9e8727c2..45f6ec25a 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 460511c69..bbd2fe7fd 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 cd7b3c5a8..ddce8fd57 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 682babc2a..de4bdf380 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_pipeline_by_id_endpoint_output.py b/src/rapidata/api_client/models/get_pipeline_by_id_endpoint_output.py index d6e5ae998..d998e28bb 100644 --- a/src/rapidata/api_client/models/get_pipeline_by_id_endpoint_output.py +++ b/src/rapidata/api_client/models/get_pipeline_by_id_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 43f66be73..cf7f6e6d0 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 283e6d5ed..9077338dd 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 a341fb768..2e1abcacc 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 d8e1615fd..b4ef059cb 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 173d09096..2d96ae8a9 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 c2a69e7c7..94cbfa701 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 653f49eaa..2c41785a9 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 935938146..b42739047 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 69ecc59d9..e551c9754 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 4ce08a9a5..402f57bae 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 b5ba9bd69..096774ca1 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 2766c4af4..0f1389f81 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_ranking_workflow_results_endpoint_datapoint.py b/src/rapidata/api_client/models/get_ranking_workflow_results_endpoint_datapoint.py index 4357b48be..78ef756e7 100644 --- a/src/rapidata/api_client/models/get_ranking_workflow_results_endpoint_datapoint.py +++ b/src/rapidata/api_client/models/get_ranking_workflow_results_endpoint_datapoint.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_ranking_workflow_results_endpoint_output.py b/src/rapidata/api_client/models/get_ranking_workflow_results_endpoint_output.py index 6af5a5079..17d0ff83d 100644 --- a/src/rapidata/api_client/models/get_ranking_workflow_results_endpoint_output.py +++ b/src/rapidata/api_client/models/get_ranking_workflow_results_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 9bfd45a1d..064ce5b31 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 9b55db77d..d2940e18b 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 204c73769..976960853 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 a31e6a07c..647907c79 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 1046e027f..c62f5a33a 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 bfffe68e3..19d0eac9c 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 e30baae9e..9ae525958 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 b82d4cdb6..18e9b5a25 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 a15b361d7..b60532e5e 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 6efdc1ef1..322e1ceaf 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 774db4ffc..cb378497e 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 12b3d8529..09faf71cf 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 4fe74695e..9223b7354 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 896922696..7b6b830ed 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 4089f5658..8bdd971ac 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 e296307e7..2fbb5fe9c 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 d498b7b4f..b613d0058 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 72d259d9e..1081e03e3 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 20a34305c..db666be0a 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 895b2f39d..ae64383ef 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 22fbe9183..3fe4c0461 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 094be1c00..1351d54d3 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 9bc9426cf..76af3ddb1 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 d5f99f6a9..7b34c4cd0 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 93cf94688..6b283b578 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 549915b1a..7ed89918f 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 c3540f012..ae2753ecc 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 8e02df0e4..d4b66f4a7 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 25cabeee5..c92cf0120 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 bca8c120d..d4ec05e01 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_simple_workflow_results_endpoint_output.py b/src/rapidata/api_client/models/get_simple_workflow_results_endpoint_output.py index 4edce7f73..a8211ad61 100644 --- a/src/rapidata/api_client/models/get_simple_workflow_results_endpoint_output.py +++ b/src/rapidata/api_client/models/get_simple_workflow_results_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_simple_workflow_results_endpoint_paged_result_of_output.py b/src/rapidata/api_client/models/get_simple_workflow_results_endpoint_paged_result_of_output.py index 5c8f49ac2..db7cba9b3 100644 --- a/src/rapidata/api_client/models/get_simple_workflow_results_endpoint_paged_result_of_output.py +++ b/src/rapidata/api_client/models/get_simple_workflow_results_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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_simple_workflow_results_endpoint_response_output.py b/src/rapidata/api_client/models/get_simple_workflow_results_endpoint_response_output.py index 0c44948c1..dd155d7d7 100644 --- a/src/rapidata/api_client/models/get_simple_workflow_results_endpoint_response_output.py +++ b/src/rapidata/api_client/models/get_simple_workflow_results_endpoint_response_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 99c3765dd..1861081d0 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 fefa7010c..1595d738d 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 0f0694c98..aeeeb453e 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 dac1e025b..d7d842111 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 c5564ec23..9114fd23e 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 8345ef417..d8110a815 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_workflow_by_id_endpoint_output.py b/src/rapidata/api_client/models/get_workflow_by_id_endpoint_output.py index d03d2d784..43730714e 100644 --- a/src/rapidata/api_client/models/get_workflow_by_id_endpoint_output.py +++ b/src/rapidata/api_client/models/get_workflow_by_id_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_workflow_progress_endpoint_output.py b/src/rapidata/api_client/models/get_workflow_progress_endpoint_output.py index c5863b144..c426bc37e 100644 --- a/src/rapidata/api_client/models/get_workflow_progress_endpoint_output.py +++ b/src/rapidata/api_client/models/get_workflow_progress_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_workflow_responses_endpoint_output.py b/src/rapidata/api_client/models/get_workflow_responses_endpoint_output.py index f19e199b6..51a84483a 100644 --- a/src/rapidata/api_client/models/get_workflow_responses_endpoint_output.py +++ b/src/rapidata/api_client/models/get_workflow_responses_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_workflow_responses_endpoint_response.py b/src/rapidata/api_client/models/get_workflow_responses_endpoint_response.py index 3a811a6ae..7dfb4eb8e 100644 --- a/src/rapidata/api_client/models/get_workflow_responses_endpoint_response.py +++ b/src/rapidata/api_client/models/get_workflow_responses_endpoint_response.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_workflow_results_endpoint_output.py b/src/rapidata/api_client/models/get_workflow_results_endpoint_output.py index 84220232b..f3a87d415 100644 --- a/src/rapidata/api_client/models/get_workflow_results_endpoint_output.py +++ b/src/rapidata/api_client/models/get_workflow_results_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_workflow_results_endpoint_paged_result_of_output.py b/src/rapidata/api_client/models/get_workflow_results_endpoint_paged_result_of_output.py index a5cfff770..1efb77c6f 100644 --- a/src/rapidata/api_client/models/get_workflow_results_endpoint_paged_result_of_output.py +++ b/src/rapidata/api_client/models/get_workflow_results_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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/get_workflow_results_endpoint_response_output.py b/src/rapidata/api_client/models/get_workflow_results_endpoint_response_output.py index 53862cfc5..423b40535 100644 --- a/src/rapidata/api_client/models/get_workflow_results_endpoint_response_output.py +++ b/src/rapidata/api_client/models/get_workflow_results_endpoint_response_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 7242e5169..37e3ea1b4 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 b89f858b7..fb9c23cce 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 520f93c57..198326e4b 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 378115324..0b07f1af0 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 2118141e4..8ac50225a 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 74895a05e..917ad7d4a 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 1f8af947a..72789f45f 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 b8531b642..9f967e1f5 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_artifact.py b/src/rapidata/api_client/models/i_artifact.py index f2c6fb0ba..ab89bd917 100644 --- a/src/rapidata/api_client/models/i_artifact.py +++ b/src/rapidata/api_client/models/i_artifact.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_artifact_campaign_artifact.py b/src/rapidata/api_client/models/i_artifact_campaign_artifact.py index a336c7c75..4530a3245 100644 --- a/src/rapidata/api_client/models/i_artifact_campaign_artifact.py +++ b/src/rapidata/api_client/models/i_artifact_campaign_artifact.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_artifact_dataset_artifact.py b/src/rapidata/api_client/models/i_artifact_dataset_artifact.py index c79152390..007168bb1 100644 --- a/src/rapidata/api_client/models/i_artifact_dataset_artifact.py +++ b/src/rapidata/api_client/models/i_artifact_dataset_artifact.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_artifact_file_artifact.py b/src/rapidata/api_client/models/i_artifact_file_artifact.py index 039828fc3..e6baa7a3b 100644 --- a/src/rapidata/api_client/models/i_artifact_file_artifact.py +++ b/src/rapidata/api_client/models/i_artifact_file_artifact.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_artifact_workflow_artifact.py b/src/rapidata/api_client/models/i_artifact_workflow_artifact.py index 7eb6cd56e..01b3fa7e4 100644 --- a/src/rapidata/api_client/models/i_artifact_workflow_artifact.py +++ b/src/rapidata/api_client/models/i_artifact_workflow_artifact.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_artifact_workflow_config_artifact.py b/src/rapidata/api_client/models/i_artifact_workflow_config_artifact.py index cc6f4ed3f..065e985d4 100644 --- a/src/rapidata/api_client/models/i_artifact_workflow_config_artifact.py +++ b/src/rapidata/api_client/models/i_artifact_workflow_config_artifact.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 ae551c812..da2c85061 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 56b5abbf4..1cc272e20 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 6413f43e7..5b2ee9d5e 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 49a2abd8a..ac9ab6266 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 21530ae80..96cf7f642 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 1e9ac22c1..18907c1af 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 1feb1519a..275b3a319 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 b4017bcce..e2fd25ae0 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 9e6256e6a..302a74b96 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 cb5ef90b7..841d7480d 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 70c7b4507..a88911762 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 7d423f1df..9d584d4e4 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 d2d04163f..6b0104383 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 74fee894d..1d6f42eba 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 17a3cd236..206541c83 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 2c8fce6c8..ec89cd725 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 f381ad481..3028502cb 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 d08c476c1..75bc5f033 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 d257a5cf4..78dae0379 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 0998510e8..1a36f4413 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 8e65ca949..03946704a 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 b5a93863c..ea761de12 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 cd962cc96..8404776d3 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 be5fcfe5b..d90f26798 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 152fcca2a..c39f61fbf 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 f98987a60..3badaf7cf 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 b8d999e66..e04b979dc 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 435bdb9dd..820a81a69 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 35e94a50c..0a8b76645 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 c75ee2979..611f3cc06 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 9daf55598..47ef5da1a 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 d754ae05b..66f2cccff 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 f33ff06ae..3efb2bb7b 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 be5189887..096de4e4b 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 a78a76edf..6d643d0de 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 ecbafadbc..bb16e3c58 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 a2885188f..cea5a1f68 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 3eca98b4f..a9847d02b 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 6828146af..0e93a6c96 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 4ed85f66d..379fed4ba 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 1a975a721..ae4860aa2 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 3b9be4196..b60161a4f 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 5401b1dfd..a53560d65 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 2572c4dae..b09198690 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 9b45b11cc..cb285b299 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 caf907570..d83a36558 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 1a2b987e6..642033ee2 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 966f5e1fe..4935c6167 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 f2ab8392c..5f5704aa4 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 c0ef419c1..d9fc1eae2 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 398276e2d..281b24287 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 8d85b87d0..7840fa6cb 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 a71954c09..ffc88c132 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 ea987ee64..8d294e5ff 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 bb78b0ad5..ef6432e3c 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 312a48a27..d44edb459 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 74b9cc942..e749f9417 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 c7bb50438..ae3affaf3 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 1525ffe40..65fd88fa6 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 e0f47218c..035e70bce 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 55bcaa38a..feed09d4c 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 04d2613b7..1969d476b 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 0e3bc00ef..499ca2a3c 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 7b2db39d7..f54a0990e 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 02491e955..3df508439 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 c6241fbe4..acc06769d 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 22ae9d9b1..98714fc35 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 9e575e05f..029f099dc 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 345dcf948..cb6a6f9a6 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 16b7a84ea..75521dc85 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 1621b227e..a1e3832e9 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 7d69b28a1..581e6e84d 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 a6f5dfb01..d506f9d7a 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 5ed0d41bf..9b4c03895 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 76162663e..af07e309f 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 543e73399..2c3cd9ebe 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 2c34b47fc..6c790e371 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 b520be9e8..d65c84006 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 4257785e3..d62ac861c 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 758725a5d..097fce8b3 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 e5bc456a4..e74503d3c 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 f431ff29c..fbded09c2 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 41925c608..a6b3086d1 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 cdd20e9c4..cc915c94c 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 dacab86ac..fdf4c9e49 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 c3e0eabd4..104d3af9c 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 eb68816e7..a101d2361 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 06e40a616..7ee973fea 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 9f5776906..0a22516e5 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 c14906d61..04a75e259 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 f1c934b45..9033ffa39 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 0232d4e96..b6980b29f 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 372ebb3c8..b868f2581 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 cf4bf0300..d1c423521 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 e113121b1..ea1326b74 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 6d00b625d..c5f372aa5 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 7cd624294..18cf9ad30 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 e7275355c..0fd3f52dc 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 8d6aac105..136388c59 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 29375411a..054953ef8 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 11d9f2151..a93c7b0d9 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 1a85e793a..19f383e6a 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 c64469970..3e59426d5 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 67c266f98..6d4064845 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 6a014b402..fc2a84dee 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 ef33704a6..454a26a66 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 c983a2654..1aa66c54f 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 e38a30c8f..c4a05d108 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 8c4154b17..27ce0483c 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 0685f56b5..3ff3d1dfd 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 fd02e2fe0..8ff951a59 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_pipeline_asset.py b/src/rapidata/api_client/models/i_pipeline_asset.py index 9a225ca47..91e6944ca 100644 --- a/src/rapidata/api_client/models/i_pipeline_asset.py +++ b/src/rapidata/api_client/models/i_pipeline_asset.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_pipeline_asset_pipeline_file_asset.py b/src/rapidata/api_client/models/i_pipeline_asset_pipeline_file_asset.py index e49aca23a..7b9698b19 100644 --- a/src/rapidata/api_client/models/i_pipeline_asset_pipeline_file_asset.py +++ b/src/rapidata/api_client/models/i_pipeline_asset_pipeline_file_asset.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_pipeline_asset_pipeline_multi_asset.py b/src/rapidata/api_client/models/i_pipeline_asset_pipeline_multi_asset.py index 08b862484..d2a87bd10 100644 --- a/src/rapidata/api_client/models/i_pipeline_asset_pipeline_multi_asset.py +++ b/src/rapidata/api_client/models/i_pipeline_asset_pipeline_multi_asset.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_pipeline_asset_pipeline_null_asset.py b/src/rapidata/api_client/models/i_pipeline_asset_pipeline_null_asset.py index 7420653dc..54a784612 100644 --- a/src/rapidata/api_client/models/i_pipeline_asset_pipeline_null_asset.py +++ b/src/rapidata/api_client/models/i_pipeline_asset_pipeline_null_asset.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_pipeline_asset_pipeline_text_asset.py b/src/rapidata/api_client/models/i_pipeline_asset_pipeline_text_asset.py index 27131b459..7126fecfb 100644 --- a/src/rapidata/api_client/models/i_pipeline_asset_pipeline_text_asset.py +++ b/src/rapidata/api_client/models/i_pipeline_asset_pipeline_text_asset.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 db3b6db73..0a67bb5ea 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_pipeline_metadata.py b/src/rapidata/api_client/models/i_pipeline_metadata.py index 08fea349c..c4c4770a7 100644 --- a/src/rapidata/api_client/models/i_pipeline_metadata.py +++ b/src/rapidata/api_client/models/i_pipeline_metadata.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_pipeline_metadata_pipeline_classification_metadata.py b/src/rapidata/api_client/models/i_pipeline_metadata_pipeline_classification_metadata.py index 979001b30..4d282c2fe 100644 --- a/src/rapidata/api_client/models/i_pipeline_metadata_pipeline_classification_metadata.py +++ b/src/rapidata/api_client/models/i_pipeline_metadata_pipeline_classification_metadata.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_pipeline_metadata_pipeline_count_metadata.py b/src/rapidata/api_client/models/i_pipeline_metadata_pipeline_count_metadata.py index cc4263450..4c1c8292d 100644 --- a/src/rapidata/api_client/models/i_pipeline_metadata_pipeline_count_metadata.py +++ b/src/rapidata/api_client/models/i_pipeline_metadata_pipeline_count_metadata.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_pipeline_metadata_pipeline_duration_metadata.py b/src/rapidata/api_client/models/i_pipeline_metadata_pipeline_duration_metadata.py index 8eb51d3c3..37bf41129 100644 --- a/src/rapidata/api_client/models/i_pipeline_metadata_pipeline_duration_metadata.py +++ b/src/rapidata/api_client/models/i_pipeline_metadata_pipeline_duration_metadata.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_pipeline_metadata_pipeline_file_type_metadata.py b/src/rapidata/api_client/models/i_pipeline_metadata_pipeline_file_type_metadata.py index 014fbf35a..51c293e18 100644 --- a/src/rapidata/api_client/models/i_pipeline_metadata_pipeline_file_type_metadata.py +++ b/src/rapidata/api_client/models/i_pipeline_metadata_pipeline_file_type_metadata.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_pipeline_metadata_pipeline_image_dimension_metadata.py b/src/rapidata/api_client/models/i_pipeline_metadata_pipeline_image_dimension_metadata.py index a5a410631..05a86bde5 100644 --- a/src/rapidata/api_client/models/i_pipeline_metadata_pipeline_image_dimension_metadata.py +++ b/src/rapidata/api_client/models/i_pipeline_metadata_pipeline_image_dimension_metadata.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_pipeline_metadata_pipeline_location_metadata.py b/src/rapidata/api_client/models/i_pipeline_metadata_pipeline_location_metadata.py index c04e37a09..6b9624788 100644 --- a/src/rapidata/api_client/models/i_pipeline_metadata_pipeline_location_metadata.py +++ b/src/rapidata/api_client/models/i_pipeline_metadata_pipeline_location_metadata.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_pipeline_metadata_pipeline_original_filename_metadata.py b/src/rapidata/api_client/models/i_pipeline_metadata_pipeline_original_filename_metadata.py index f862276ed..8d2b4d7fe 100644 --- a/src/rapidata/api_client/models/i_pipeline_metadata_pipeline_original_filename_metadata.py +++ b/src/rapidata/api_client/models/i_pipeline_metadata_pipeline_original_filename_metadata.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_pipeline_metadata_pipeline_source_url_metadata.py b/src/rapidata/api_client/models/i_pipeline_metadata_pipeline_source_url_metadata.py index db838587a..b8cd0101a 100644 --- a/src/rapidata/api_client/models/i_pipeline_metadata_pipeline_source_url_metadata.py +++ b/src/rapidata/api_client/models/i_pipeline_metadata_pipeline_source_url_metadata.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_pipeline_metadata_pipeline_streams_metadata.py b/src/rapidata/api_client/models/i_pipeline_metadata_pipeline_streams_metadata.py index 44fe3bff7..c4da9e73a 100644 --- a/src/rapidata/api_client/models/i_pipeline_metadata_pipeline_streams_metadata.py +++ b/src/rapidata/api_client/models/i_pipeline_metadata_pipeline_streams_metadata.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_pipeline_metadata_pipeline_text_metadata.py b/src/rapidata/api_client/models/i_pipeline_metadata_pipeline_text_metadata.py index 62842f964..7732cf140 100644 --- a/src/rapidata/api_client/models/i_pipeline_metadata_pipeline_text_metadata.py +++ b/src/rapidata/api_client/models/i_pipeline_metadata_pipeline_text_metadata.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_pipeline_pair_maker_config.py b/src/rapidata/api_client/models/i_pipeline_pair_maker_config.py index b0c0a315b..ed40344cd 100644 --- a/src/rapidata/api_client/models/i_pipeline_pair_maker_config.py +++ b/src/rapidata/api_client/models/i_pipeline_pair_maker_config.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_pipeline_pair_maker_config_pipeline_full_permutation_pair_maker_config.py b/src/rapidata/api_client/models/i_pipeline_pair_maker_config_pipeline_full_permutation_pair_maker_config.py index 47b705c1b..ecaadddbd 100644 --- a/src/rapidata/api_client/models/i_pipeline_pair_maker_config_pipeline_full_permutation_pair_maker_config.py +++ b/src/rapidata/api_client/models/i_pipeline_pair_maker_config_pipeline_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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_pipeline_pair_maker_config_pipeline_online_pair_maker_config.py b/src/rapidata/api_client/models/i_pipeline_pair_maker_config_pipeline_online_pair_maker_config.py index d100f4e25..1e34e8296 100644 --- a/src/rapidata/api_client/models/i_pipeline_pair_maker_config_pipeline_online_pair_maker_config.py +++ b/src/rapidata/api_client/models/i_pipeline_pair_maker_config_pipeline_online_pair_maker_config.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_pipeline_ranking_config.py b/src/rapidata/api_client/models/i_pipeline_ranking_config.py index bcfe17cb6..b61018d59 100644 --- a/src/rapidata/api_client/models/i_pipeline_ranking_config.py +++ b/src/rapidata/api_client/models/i_pipeline_ranking_config.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_pipeline_ranking_config_pipeline_bradley_terry_ranking_config.py b/src/rapidata/api_client/models/i_pipeline_ranking_config_pipeline_bradley_terry_ranking_config.py index c7c9bbf3a..c72a22bed 100644 --- a/src/rapidata/api_client/models/i_pipeline_ranking_config_pipeline_bradley_terry_ranking_config.py +++ b/src/rapidata/api_client/models/i_pipeline_ranking_config_pipeline_bradley_terry_ranking_config.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_pipeline_ranking_config_pipeline_elo_ranking_config.py b/src/rapidata/api_client/models/i_pipeline_ranking_config_pipeline_elo_ranking_config.py index 353f3b435..dcbe2da45 100644 --- a/src/rapidata/api_client/models/i_pipeline_ranking_config_pipeline_elo_ranking_config.py +++ b/src/rapidata/api_client/models/i_pipeline_ranking_config_pipeline_elo_ranking_config.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 de1a270b9..42ebc92a7 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 80efe1837..6f8b480ef 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 4ad0c5b6b..d6cfc9451 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 a8d970d27..ae759bd89 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 f9f340d81..8c1a6a22e 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 b5dbe73bd..1c88108cf 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 357e72964..417271bf3 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 3e6165945..787f96df4 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 699c937f4..029e57d49 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 d16b72914..69c1b4495 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 9776a178b..9b32cc3a1 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 327bb3124..5973f4c13 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 3462e4490..4c673682e 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 3ea86c0c7..33612ca33 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 2539590ab..2507bd619 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 24bfa7410..f37fe30a6 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 ca25b23e3..0595fdb23 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 ba30ec6fc..ea109e976 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 17a8f9ea2..8c7f5b781 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 3a6bac6c6..586f42b68 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 3ed66e6f9..6467cb320 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 6ac56e7db..331c6c75f 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 f131e00bd..0f65eb33b 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 f2a3f1746..6024248ad 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 b7e840bfe..0582ddf54 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 c90a77a22..ce196ffb6 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 f37878e1b..15e3b3b63 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 e8abcf140..e9249a762 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 f603ce528..c17a7ca9f 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 0e134c9c9..0ccb965f0 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 5c2593f36..75e71f95d 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 7cbf94e12..326a02fb4 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 e3d9819f3..2131d8a50 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 80a74fb95..0254e2b2d 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 a64bb4638..17d86b11a 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 d7c2297d5..0b8060fbd 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 da37b325f..ec9efb4df 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 8bfbf7201..ee0b3b328 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 a4f3e82da..b21dcf846 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 e6c56d222..f3ed0b02f 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 f2d875fcd..a4d2385c2 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 adaf15f2f..a8a4cae95 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 80f78cef1..216eb8890 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 ad410075b..576c9f3fa 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 52b6aabce..1c054b884 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 62af1568b..593089ed1 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 7e1004eed..a3fe8cd49 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 a43bf2fcc..629003fdf 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 eb7b9aaca..b29cd66b0 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 adcb5679a..9b7a8f898 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 b4efcb23a..34b8c0c9a 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 605b3b0d7..eb9f02312 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 31a4aa5f5..21a4ca37d 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 7b4bbea4d..13dd5499d 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 5271f2bbb..d247a8ba0 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 1d3af7628..2708442d3 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 81aade633..791e177e6 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 c5deca890..1d98cb32b 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 d81d128ed..d4e38c97d 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 0a566eafe..585750fa5 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 290b951d3..82f568c44 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 7a585f69a..f7cde5576 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 883655028..5ae755746 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 e4fb5ac77..a6f993ce0 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 4ff7138a6..dbda211ae 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 4aec05b4b..cd573a46c 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 a749f52fb..3e48b56ec 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 b7882ae9e..e4ecc881e 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 a62d9dd43..e2a0579e3 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 2012bfd39..8498839fc 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 c8ca2788c..f038ad91f 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_referee_config.py b/src/rapidata/api_client/models/i_referee_config.py index ba247d304..6e347f651 100644 --- a/src/rapidata/api_client/models/i_referee_config.py +++ b/src/rapidata/api_client/models/i_referee_config.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_referee_config_budget_referee_config.py b/src/rapidata/api_client/models/i_referee_config_budget_referee_config.py index 7d05ca2b4..984ce7aae 100644 --- a/src/rapidata/api_client/models/i_referee_config_budget_referee_config.py +++ b/src/rapidata/api_client/models/i_referee_config_budget_referee_config.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_referee_config_naive_referee_config.py b/src/rapidata/api_client/models/i_referee_config_naive_referee_config.py index a63251dc4..d55743182 100644 --- a/src/rapidata/api_client/models/i_referee_config_naive_referee_config.py +++ b/src/rapidata/api_client/models/i_referee_config_naive_referee_config.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_referee_config_never_ending_referee_config.py b/src/rapidata/api_client/models/i_referee_config_never_ending_referee_config.py index ade4b8f60..d51cab0bc 100644 --- a/src/rapidata/api_client/models/i_referee_config_never_ending_referee_config.py +++ b/src/rapidata/api_client/models/i_referee_config_never_ending_referee_config.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_referee_config_probabilistic_attach_category_referee_config.py b/src/rapidata/api_client/models/i_referee_config_probabilistic_attach_category_referee_config.py index 8af4ef8e6..70ad27564 100644 --- a/src/rapidata/api_client/models/i_referee_config_probabilistic_attach_category_referee_config.py +++ b/src/rapidata/api_client/models/i_referee_config_probabilistic_attach_category_referee_config.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_referee_config_quorum_referee_config.py b/src/rapidata/api_client/models/i_referee_config_quorum_referee_config.py index 78b71428e..81360a37a 100644 --- a/src/rapidata/api_client/models/i_referee_config_quorum_referee_config.py +++ b/src/rapidata/api_client/models/i_referee_config_quorum_referee_config.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 64d57df10..4c53a3d42 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 fdcf565d2..da3c35b00 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 b080219f1..211c6db87 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 7effa4cba..a620bac4e 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 cb62178c9..eb94d7dac 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 8d9a03617..4f21cc767 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 e346947b5..98de698f5 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 9ebf61c94..e53884fc6 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 281b7198e..c73cb3dc4 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 8f3af7d35..d37f4bfee 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 28b5f0f86..addeee398 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 88eba5db4..a984786ee 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 3bcfd76f9..9f53d9238 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 d679cf54a..0f8e3d8b3 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 5a3ef2b25..32566c1e7 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 138253a16..efe44cce9 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 df7534a8a..03c618fe2 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 5ac79d3e6..678acf4a3 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 263942db0..a77f5a203 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 b3d9801db..2c9b326e4 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 22013e463..6a4f51c87 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 e782b9a4b..05797a5d2 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 bef38328d..55faa922c 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 62b18cf19..c6d3c4f51 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 1ee658461..3e211dae1 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 de12962a4..12d83d222 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 a6d962e1f..4116d5b92 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 0eed094b8..da159ad90 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 88bd92013..f8729db0c 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 704a04733..dd024d442 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 b6c5eb776..13ac5d12d 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 25843c29c..442bdf79a 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 003b794db..593e52ffa 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 58736ceb5..27daf2ec1 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 ced7cc159..a27e88316 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 22d36946a..076e6f10d 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 4ba087e62..9e056653c 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 4982b1611..1ae9e4065 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 03a507086..a1356922d 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 cd75c8495..968035f42 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 26e181117..c1fc8f324 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 d5fb561df..9bd3f271f 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 41189ec98..b698b6a6b 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 e70266863..aeb1e0ad8 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 f896317c6..751bfdf8a 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 5abd32736..e9287b5c7 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 48834e512..7cea49ba3 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 2f21cd076..1a9b0bf39 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 e16c12045..34036c685 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_workflow.py b/src/rapidata/api_client/models/i_workflow.py index 4641720c1..5ee0dc64e 100644 --- a/src/rapidata/api_client/models/i_workflow.py +++ b/src/rapidata/api_client/models/i_workflow.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_workflow_config.py b/src/rapidata/api_client/models/i_workflow_config.py index 8d0b48641..8d59527fc 100644 --- a/src/rapidata/api_client/models/i_workflow_config.py +++ b/src/rapidata/api_client/models/i_workflow_config.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_workflow_config_evaluation_workflow_config.py b/src/rapidata/api_client/models/i_workflow_config_evaluation_workflow_config.py index bd61e4199..9332b1fce 100644 --- a/src/rapidata/api_client/models/i_workflow_config_evaluation_workflow_config.py +++ b/src/rapidata/api_client/models/i_workflow_config_evaluation_workflow_config.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_workflow_config_grouped_ranking_workflow_config.py b/src/rapidata/api_client/models/i_workflow_config_grouped_ranking_workflow_config.py index 6244a7108..720c42ddd 100644 --- a/src/rapidata/api_client/models/i_workflow_config_grouped_ranking_workflow_config.py +++ b/src/rapidata/api_client/models/i_workflow_config_grouped_ranking_workflow_config.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_workflow_config_ranking_workflow_config.py b/src/rapidata/api_client/models/i_workflow_config_ranking_workflow_config.py index b1dc98881..57838c817 100644 --- a/src/rapidata/api_client/models/i_workflow_config_ranking_workflow_config.py +++ b/src/rapidata/api_client/models/i_workflow_config_ranking_workflow_config.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_workflow_config_simple_workflow_config.py b/src/rapidata/api_client/models/i_workflow_config_simple_workflow_config.py index 0cf1922af..93b2cd301 100644 --- a/src/rapidata/api_client/models/i_workflow_config_simple_workflow_config.py +++ b/src/rapidata/api_client/models/i_workflow_config_simple_workflow_config.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_workflow_evaluation_workflow.py b/src/rapidata/api_client/models/i_workflow_evaluation_workflow.py index de72be3ea..ab9a65855 100644 --- a/src/rapidata/api_client/models/i_workflow_evaluation_workflow.py +++ b/src/rapidata/api_client/models/i_workflow_evaluation_workflow.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_workflow_grouped_ranking_workflow.py b/src/rapidata/api_client/models/i_workflow_grouped_ranking_workflow.py index ee5d201cf..3c7395bb9 100644 --- a/src/rapidata/api_client/models/i_workflow_grouped_ranking_workflow.py +++ b/src/rapidata/api_client/models/i_workflow_grouped_ranking_workflow.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_workflow_ranking_workflow.py b/src/rapidata/api_client/models/i_workflow_ranking_workflow.py index bec4f0dbd..f42d8bc3b 100644 --- a/src/rapidata/api_client/models/i_workflow_ranking_workflow.py +++ b/src/rapidata/api_client/models/i_workflow_ranking_workflow.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_workflow_rapid_blueprint.py b/src/rapidata/api_client/models/i_workflow_rapid_blueprint.py index fe54ecdf5..aa88d93f2 100644 --- a/src/rapidata/api_client/models/i_workflow_rapid_blueprint.py +++ b/src/rapidata/api_client/models/i_workflow_rapid_blueprint.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_workflow_rapid_blueprint_attach_category_workflow_rapid_blueprint.py b/src/rapidata/api_client/models/i_workflow_rapid_blueprint_attach_category_workflow_rapid_blueprint.py index f70b7a28c..cdb018f69 100644 --- a/src/rapidata/api_client/models/i_workflow_rapid_blueprint_attach_category_workflow_rapid_blueprint.py +++ b/src/rapidata/api_client/models/i_workflow_rapid_blueprint_attach_category_workflow_rapid_blueprint.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_workflow_rapid_blueprint_bounding_box_workflow_rapid_blueprint.py b/src/rapidata/api_client/models/i_workflow_rapid_blueprint_bounding_box_workflow_rapid_blueprint.py index 8957af9d9..3dcbc123d 100644 --- a/src/rapidata/api_client/models/i_workflow_rapid_blueprint_bounding_box_workflow_rapid_blueprint.py +++ b/src/rapidata/api_client/models/i_workflow_rapid_blueprint_bounding_box_workflow_rapid_blueprint.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_workflow_rapid_blueprint_compare_workflow_rapid_blueprint.py b/src/rapidata/api_client/models/i_workflow_rapid_blueprint_compare_workflow_rapid_blueprint.py index 60b817882..53e831637 100644 --- a/src/rapidata/api_client/models/i_workflow_rapid_blueprint_compare_workflow_rapid_blueprint.py +++ b/src/rapidata/api_client/models/i_workflow_rapid_blueprint_compare_workflow_rapid_blueprint.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_workflow_rapid_blueprint_free_text_workflow_rapid_blueprint.py b/src/rapidata/api_client/models/i_workflow_rapid_blueprint_free_text_workflow_rapid_blueprint.py index 6f1fb2212..b79781441 100644 --- a/src/rapidata/api_client/models/i_workflow_rapid_blueprint_free_text_workflow_rapid_blueprint.py +++ b/src/rapidata/api_client/models/i_workflow_rapid_blueprint_free_text_workflow_rapid_blueprint.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_workflow_rapid_blueprint_line_workflow_rapid_blueprint.py b/src/rapidata/api_client/models/i_workflow_rapid_blueprint_line_workflow_rapid_blueprint.py index 58d35e501..0eed0a893 100644 --- a/src/rapidata/api_client/models/i_workflow_rapid_blueprint_line_workflow_rapid_blueprint.py +++ b/src/rapidata/api_client/models/i_workflow_rapid_blueprint_line_workflow_rapid_blueprint.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_workflow_rapid_blueprint_locate_workflow_rapid_blueprint.py b/src/rapidata/api_client/models/i_workflow_rapid_blueprint_locate_workflow_rapid_blueprint.py index a0c10a391..9372361ad 100644 --- a/src/rapidata/api_client/models/i_workflow_rapid_blueprint_locate_workflow_rapid_blueprint.py +++ b/src/rapidata/api_client/models/i_workflow_rapid_blueprint_locate_workflow_rapid_blueprint.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_workflow_rapid_blueprint_named_entity_workflow_rapid_blueprint.py b/src/rapidata/api_client/models/i_workflow_rapid_blueprint_named_entity_workflow_rapid_blueprint.py index ad76def1f..95f991d80 100644 --- a/src/rapidata/api_client/models/i_workflow_rapid_blueprint_named_entity_workflow_rapid_blueprint.py +++ b/src/rapidata/api_client/models/i_workflow_rapid_blueprint_named_entity_workflow_rapid_blueprint.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_workflow_rapid_blueprint_polygon_workflow_rapid_blueprint.py b/src/rapidata/api_client/models/i_workflow_rapid_blueprint_polygon_workflow_rapid_blueprint.py index 213279328..2dedb5ff6 100644 --- a/src/rapidata/api_client/models/i_workflow_rapid_blueprint_polygon_workflow_rapid_blueprint.py +++ b/src/rapidata/api_client/models/i_workflow_rapid_blueprint_polygon_workflow_rapid_blueprint.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_workflow_rapid_blueprint_scrub_workflow_rapid_blueprint.py b/src/rapidata/api_client/models/i_workflow_rapid_blueprint_scrub_workflow_rapid_blueprint.py index 4df423b16..d49c59e00 100644 --- a/src/rapidata/api_client/models/i_workflow_rapid_blueprint_scrub_workflow_rapid_blueprint.py +++ b/src/rapidata/api_client/models/i_workflow_rapid_blueprint_scrub_workflow_rapid_blueprint.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_workflow_rapid_blueprint_transcription_workflow_rapid_blueprint.py b/src/rapidata/api_client/models/i_workflow_rapid_blueprint_transcription_workflow_rapid_blueprint.py index 5de6b2b7d..3c3f08a12 100644 --- a/src/rapidata/api_client/models/i_workflow_rapid_blueprint_transcription_workflow_rapid_blueprint.py +++ b/src/rapidata/api_client/models/i_workflow_rapid_blueprint_transcription_workflow_rapid_blueprint.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/i_workflow_simple_workflow.py b/src/rapidata/api_client/models/i_workflow_simple_workflow.py index 183a497a9..a33f03557 100644 --- a/src/rapidata/api_client/models/i_workflow_simple_workflow.py +++ b/src/rapidata/api_client/models/i_workflow_simple_workflow.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 dc4ef8daf..4f363c4a1 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 8ff749a1c..abc06cf3e 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 13d7f8097..39cf72c7e 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 85e8d739b..8bb69da70 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 da914ff3f..944ab2e3a 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 6ac0ea298..c9611b397 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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.py b/src/rapidata/api_client/models/json_web_key.py index 25272bcc4..f85d0920c 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 8321926d0..b65e9fc06 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 759db535b..d5444a4f9 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 f48d287b4..2697338c1 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 d6902352c..fef2d7bb3 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 be7a8cb2b..1def28085 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 55ea242bd..ec55f6959 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 18df42fcf..8690efda8 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 9c243c2cd..a4831f658 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 d4c779ee7..09ed59c3b 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 6085e4110..f005d4afc 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 60bfde50d..4938b3df0 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 87b1a3156..57d895af8 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 c776dea91..949571f13 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 28e6fc710..b9cd964f9 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 b1da2beb7..dab8d2fed 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 c91366ec0..8bc9bc4d4 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 502a3f051..7d2893cae 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 294798e73..97c3ec440 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 6f7eadb9c..3255b6d80 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 2779d1020..2b776590b 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 bc928395a..63cde0956 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/pipeline_elo_ranking_config.py b/src/rapidata/api_client/models/pipeline_elo_ranking_config.py index db55262f5..5a7a9674b 100644 --- a/src/rapidata/api_client/models/pipeline_elo_ranking_config.py +++ b/src/rapidata/api_client/models/pipeline_elo_ranking_config.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 258baf5f2..2f37f1c1d 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 94ce9ed1a..750d621d4 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 466d07de6..7d84f748c 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 c9c0572c8..a41e4ac5a 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 6d0a3ef20..4bf93dcbc 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 8ef7332b3..82430c48a 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 1f469e4ea..c5455b254 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 7d112acd8..98e23a7c3 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 47f25adc9..0f84903b2 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 f54849585..456dff672 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 641894e3a..caf282cfb 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 31d88652a..897d6dfbd 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 1b1a5b7d0..78996233a 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 1452e6edf..9c63aef51 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 db26611a3..10a30cfe1 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 a1d939f60..4cc5c89ba 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 963ebcbaf..3db1d92e8 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 d5c57aa14..979480e50 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 bf8233c5a..963e01882 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 2a9c4d003..72f138c58 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 3a94c80cc..82988bf55 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 832d39e6b..85b8d3541 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 e7b798e38..1d6f44510 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 a89af13e1..42f9eac15 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 f3abe9165..1101e2fee 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 db78767e7..e0ed3da17 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 69671fee9..9d52d416e 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 ca62599c2..8b1511cd8 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 ee85c0770..26027dc25 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 0b3cec210..c2cc8771a 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 65f8809fc..e1a905359 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 998a528db..59b901df6 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 f9d4c0f20..33dabb782 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 f968fce83..4e7ecb0b7 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 013dd834e..df61932ca 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 9e0c46530..8dd6bce39 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 7cecb0f64..f818587e3 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 3e5d81716..783bdd0e2 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 bd704faf8..1b8182f29 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 5d772d349..475f65cbb 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 8b469ee8d..ab692db96 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 63a9fd103..64b544e36 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 647f8d573..d9c0390fc 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 ff40ecc7c..4dbf8f6b8 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 62f9e0cb4..2ea6b65ea 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 ee7fc9665..2f4287306 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 abd99db23..0193fcd23 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 888a4840b..d252bc8a4 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 3fb6aaa88..ed1bca147 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 c957d4d84..3797348cf 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 755f20ba5..66ebbfad7 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_images_by_benchmark_endpoint_output.py b/src/rapidata/api_client/models/query_images_by_benchmark_endpoint_output.py new file mode 100644 index 000000000..5767da7ee --- /dev/null +++ b/src/rapidata/api_client/models/query_images_by_benchmark_endpoint_output.py @@ -0,0 +1,106 @@ +# coding: utf-8 + +""" + Rapidata Asset API + + The API for the Rapidata Asset service + + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 + 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 +from rapidata.api_client.models.query_images_by_benchmark_endpoint_output_prompt import QueryImagesByBenchmarkEndpointOutputPrompt +from pydantic import ValidationError +from rapidata.api_client.lazy_model import LazyValidatedModel +from typing import Optional, Set +from typing_extensions import Self + +class QueryImagesByBenchmarkEndpointOutput(LazyValidatedModel): + """ + The queried per-image ratings output. + """ # noqa: E501 + items: List[QueryImagesByBenchmarkEndpointOutputPrompt] + total_responses: StrictInt = Field(description="Total raw human responses behind the corpus under the current filter.", alias="totalResponses") + distinct_matchups: StrictInt = Field(description="Distinct compared image pairs in the corpus under the current filter.", alias="distinctMatchups") + total_prompts: StrictInt = Field(description="The number of prompts the filter leaves rankable — the paging total.", alias="totalPrompts") + page: StrictInt = Field(description="The 1-based page index.") + page_size: StrictInt = Field(description="The page size in prompts.", alias="pageSize") + __properties: ClassVar[List[str]] = ["items", "totalResponses", "distinctMatchups", "totalPrompts", "page", "pageSize"] + + # 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 QueryImagesByBenchmarkEndpointOutput 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 QueryImagesByBenchmarkEndpointOutput from a dict""" + if obj is None: + return None + + if not isinstance(obj, dict): + return cls.model_validate(obj) + + _data = { + "items": [QueryImagesByBenchmarkEndpointOutputPrompt.from_dict(_item) for _item in obj["items"]] if obj.get("items") is not None else None, + "totalResponses": obj.get("totalResponses"), + "distinctMatchups": obj.get("distinctMatchups"), + "totalPrompts": obj.get("totalPrompts"), + "page": obj.get("page"), + "pageSize": obj.get("pageSize") + } + 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_images_by_benchmark_endpoint_output_image.py b/src/rapidata/api_client/models/query_images_by_benchmark_endpoint_output_image.py new file mode 100644 index 000000000..a4660e2fa --- /dev/null +++ b/src/rapidata/api_client/models/query_images_by_benchmark_endpoint_output_image.py @@ -0,0 +1,121 @@ +# coding: utf-8 + +""" + Rapidata Asset API + + The API for the Rapidata Asset service + + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 + 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, StrictFloat, StrictInt, StrictStr +from typing import Any, ClassVar, Dict, List, Optional, Union +from rapidata.api_client.models.i_asset import IAsset +from pydantic import ValidationError +from rapidata.api_client.lazy_model import LazyValidatedModel +from typing import Optional, Set +from typing_extensions import Self + +class QueryImagesByBenchmarkEndpointOutputImage(LazyValidatedModel): + """ + QueryImagesByBenchmarkEndpointOutputImage + """ # noqa: E501 + sample_id: StrictStr = Field(alias="sampleId") + participant_id: StrictStr = Field(alias="participantId") + participant_name: Optional[StrictStr] = Field(default=None, alias="participantName") + label: StrictStr + asset: Optional[IAsset] = None + response_count: StrictInt = Field(alias="responseCount") + rating: Optional[Union[StrictFloat, StrictInt]] + rank: StrictInt + __properties: ClassVar[List[str]] = ["sampleId", "participantId", "participantName", "label", "asset", "responseCount", "rating", "rank"] + + # 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 QueryImagesByBenchmarkEndpointOutputImage 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 asset + if self.asset: + _dict['asset'] = self.asset.to_dict() + # set to None if participant_name (nullable) is None + # and model_fields_set contains the field + if self.participant_name is None and "participant_name" in self.model_fields_set: + _dict['participantName'] = None + + # set to None if asset (nullable) is None + # and model_fields_set contains the field + if self.asset is None and "asset" in self.model_fields_set: + _dict['asset'] = None + + # set to None if rating (nullable) is None + # and model_fields_set contains the field + if self.rating is None and "rating" in self.model_fields_set: + _dict['rating'] = None + + return _dict + + @classmethod + def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: + """Create an instance of QueryImagesByBenchmarkEndpointOutputImage from a dict""" + if obj is None: + return None + + if not isinstance(obj, dict): + return cls.model_validate(obj) + + _data = { + "sampleId": obj.get("sampleId"), + "participantId": obj.get("participantId"), + "participantName": obj.get("participantName"), + "label": obj.get("label"), + "asset": IAsset.from_dict(obj["asset"]) if obj.get("asset") is not None else None, + "responseCount": obj.get("responseCount"), + "rating": obj.get("rating"), + "rank": obj.get("rank") + } + 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_images_by_benchmark_endpoint_output_prompt.py b/src/rapidata/api_client/models/query_images_by_benchmark_endpoint_output_prompt.py new file mode 100644 index 000000000..3b0ac428b --- /dev/null +++ b/src/rapidata/api_client/models/query_images_by_benchmark_endpoint_output_prompt.py @@ -0,0 +1,138 @@ +# coding: utf-8 + +""" + Rapidata Asset API + + The API for the Rapidata Asset service + + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 + 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, StrictFloat, StrictInt, StrictStr +from typing import Any, ClassVar, Dict, List, Optional, Union +from rapidata.api_client.models.i_asset import IAsset +from rapidata.api_client.models.query_images_by_benchmark_endpoint_output_image import QueryImagesByBenchmarkEndpointOutputImage +from pydantic import ValidationError +from rapidata.api_client.lazy_model import LazyValidatedModel +from typing import Optional, Set +from typing_extensions import Self + +class QueryImagesByBenchmarkEndpointOutputPrompt(LazyValidatedModel): + """ + QueryImagesByBenchmarkEndpointOutputPrompt + """ # noqa: E501 + prompt_identifier: StrictStr = Field(alias="promptIdentifier") + prompt_id: Optional[StrictStr] = Field(default=None, alias="promptId") + english_prompt: Optional[StrictStr] = Field(default=None, alias="englishPrompt") + original_prompt: Optional[StrictStr] = Field(default=None, alias="originalPrompt") + prompt_asset: Optional[IAsset] = Field(default=None, alias="promptAsset") + images: List[QueryImagesByBenchmarkEndpointOutputImage] + index: List[StrictStr] + columns: List[StrictStr] + data: List[List[Union[StrictFloat, StrictInt]]] + votes: List[List[Union[StrictFloat, StrictInt]]] + __properties: ClassVar[List[str]] = ["promptIdentifier", "promptId", "englishPrompt", "originalPrompt", "promptAsset", "images", "index", "columns", "data", "votes"] + + # 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 QueryImagesByBenchmarkEndpointOutputPrompt 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 prompt_asset + if self.prompt_asset: + _dict['promptAsset'] = self.prompt_asset.to_dict() + # override the default output from pydantic by calling `to_dict()` of each item in images (list) + _items = [] + if self.images: + for _item_images in self.images: + if _item_images: + _items.append(_item_images.to_dict()) + _dict['images'] = _items + # set to None if prompt_id (nullable) is None + # and model_fields_set contains the field + if self.prompt_id is None and "prompt_id" in self.model_fields_set: + _dict['promptId'] = None + + # set to None if english_prompt (nullable) is None + # and model_fields_set contains the field + if self.english_prompt is None and "english_prompt" in self.model_fields_set: + _dict['englishPrompt'] = None + + # set to None if original_prompt (nullable) is None + # and model_fields_set contains the field + if self.original_prompt is None and "original_prompt" in self.model_fields_set: + _dict['originalPrompt'] = None + + # set to None if prompt_asset (nullable) is None + # and model_fields_set contains the field + if self.prompt_asset is None and "prompt_asset" in self.model_fields_set: + _dict['promptAsset'] = None + + return _dict + + @classmethod + def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: + """Create an instance of QueryImagesByBenchmarkEndpointOutputPrompt from a dict""" + if obj is None: + return None + + if not isinstance(obj, dict): + return cls.model_validate(obj) + + _data = { + "promptIdentifier": obj.get("promptIdentifier"), + "promptId": obj.get("promptId"), + "englishPrompt": obj.get("englishPrompt"), + "originalPrompt": obj.get("originalPrompt"), + "promptAsset": IAsset.from_dict(obj["promptAsset"]) if obj.get("promptAsset") is not None else None, + "images": [QueryImagesByBenchmarkEndpointOutputImage.from_dict(_item) for _item in obj["images"]] if obj.get("images") is not None else None, + "index": obj.get("index"), + "columns": obj.get("columns"), + "data": obj.get("data"), + "votes": obj.get("votes") + } + 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_invoices_endpoint_output.py b/src/rapidata/api_client/models/query_invoices_endpoint_output.py index e021f2530..90e7f9f6d 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 ee355b3d4..8973c804e 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 9978ab7e4..2047ae3c2 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 82e5cbc4b..183ddb5e4 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 876e27ec6..3c1901840 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 584629040..b12b1dc24 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 9f68727fb..803e4de45 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 aa4ccdb05..0ab8bf3d1 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 bbffee1af..dcdb8ec4f 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 0a58099e2..fb649053e 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 4327bf819..16f2766d0 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 066d67192..0675224d0 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 41ec19edc..dd91070b2 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 5e449af99..4d6cdebc6 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 a12c35166..ea3a7ffef 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 112281241..0e510b23d 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 66414dac0..6ff967e9c 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 5bbcdbb42..9484de38e 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 91a2c6058..fdaef5540 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 f184f8ffa..818954590 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 3aaaa925e..070d873b7 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 b636be888..ff7abf6d6 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 22ea6fd3e..43fca85a1 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 7ab3d3e9d..37a3e8683 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 610c3a971..486cf433b 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 883ceb8ec..d20eb42d5 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 a777709f8..5f91a5b5d 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 56b5a19fe..64bab0178 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 551d6379c..9ba4f79c0 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 fc47e2bf1..73387dbb1 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 4ed360d5d..3be2dc92e 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 a1bbe3192..bc09d1dc0 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 703ff68b3..f961e73fb 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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_output.py b/src/rapidata/api_client/models/query_signal_runs_endpoint_output.py index 1c7f4bfb4..e68715133 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 34ba54d01..431ec62b2 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 669443afb..ce82f3395 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 01afecfde..b9e1c44ac 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 9525119df..c0c39e762 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 7b02933f6..f06382b49 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 4b0bb3640..9246a3f20 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 6366e0c17..c833183a7 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 6c36f4051..7af27f944 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 e888184ee..920b768ca 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 a83ed5e0b..7e33f61ca 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 8a7f77fbe..f0d239543 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 e637b1529..a6fab0f66 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 1a6700a3b..dfcd6cd2c 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 13304ec8d..dfde01368 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 5d6598fab..127ff5a17 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 3f92eee95..cb255430c 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 22b98930d..76a831620 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 7820cf101..a8d83c44d 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_workflows_endpoint_output.py b/src/rapidata/api_client/models/query_workflows_endpoint_output.py index 659e6da56..e5e10bb99 100644 --- a/src/rapidata/api_client/models/query_workflows_endpoint_output.py +++ b/src/rapidata/api_client/models/query_workflows_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/query_workflows_endpoint_paged_result_of_output.py b/src/rapidata/api_client/models/query_workflows_endpoint_paged_result_of_output.py index e8ebc4dcf..0fd8362c0 100644 --- a/src/rapidata/api_client/models/query_workflows_endpoint_paged_result_of_output.py +++ b/src/rapidata/api_client/models/query_workflows_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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 9a9fdc50d..5b4e48885 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 d05a85a54..2034cafd3 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 2b9c89496..817d4265c 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 b33217225..4179cfae8 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 b339c67d3..2d71c4c2f 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 31a7fca01..38f6ba0b4 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 139b10cfe..a909cbb17 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 64c42ed31..041352646 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 96985f81d..ef25b68aa 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 4014dc08c..eaf570701 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 7d33bdf14..f57c1357e 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 cee32c7b2..dd1a2d041 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 8d59267c8..b81a9c598 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 35f786702..9a194bc40 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 4b7477811..0577c59ab 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 4d1f08d73..0312921a8 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 b0a3b261a..9b08bbdab 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 0ade97727..9123c49b6 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 e25a5e96c..37a9e2c08 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 94b868134..214715a6a 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 f87fe9733..d3a00879d 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 2e512cd35..f4cb5131b 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 e145bf3c8..e6ca10876 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 63a9b63cb..41573fe31 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 c0d0e2f44..a3fc1f045 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 42a7a6ae3..99b90f6e4 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 b0bf89d63..7f46c851f 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 9b122f6b1..15d02c2a1 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 bf8b98322..31c89648e 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 2a55198f3..88796f770 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 2a7b83620..5eab50e71 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 8fdbd42c3..1408c5935 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 01a1df6d5..1b716ef8d 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 efefee8b4..6fc38809e 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 c4268599a..20fca5caa 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 99fc9e87e..03ab89a86 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 a1dac31c1..373651578 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 d96db0ecb..7528d3beb 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 bf2bc7e9c..98649afe5 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 98732883d..703de5a04 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 9dc603ada..e9fae704c 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 51206186c..3592770e7 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 52c4ba43f..9a0744ac6 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 5fb215fbd..6a90664da 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 651326a3a..187ce0d68 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 1913f4479..af0418361 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 01112f2d5..371e32c5d 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 1c016ece8..bb6d9c610 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 07b072271..a61e77b09 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/start_preliminary_download_endpoint_input.py b/src/rapidata/api_client/models/start_preliminary_download_endpoint_input.py index a7ce2da9a..20ec4bc14 100644 --- a/src/rapidata/api_client/models/start_preliminary_download_endpoint_input.py +++ b/src/rapidata/api_client/models/start_preliminary_download_endpoint_input.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/start_preliminary_download_endpoint_output.py b/src/rapidata/api_client/models/start_preliminary_download_endpoint_output.py index dd671682c..24e762334 100644 --- a/src/rapidata/api_client/models/start_preliminary_download_endpoint_output.py +++ b/src/rapidata/api_client/models/start_preliminary_download_endpoint_output.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 682b37e7a..fcd356a39 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 fefa6b2f1..f97494add 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 54e369ad7..c79d26775 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 c6582bd5d..55df79237 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 51d124720..9d30dbc70 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 13ffef454..cb2a394fe 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 7f97ac592..a096b9a12 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 73e90d352..ac29de1da 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 eb26c457b..5a58fb75f 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 58356ae7d..cd34f0e6a 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 8012f98ef..ab73f48b8 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 e0e0277b4..e575081cf 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 371036a68..a8e16e28d 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 a97503fb6..52aedb663 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 07ef271b8..7afe6b795 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 29ff4e1bf..877b619e6 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 9e2d19a7e..41b9cb348 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 db06b0ac6..575482e5a 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 5af5843f2..cf71ae013 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 88023f001..574cd0a28 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 d0481f42f..047e939a4 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 6ae4b47c5..9d77cc089 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 f2f67a9cd..40afe1e6d 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 e577ca8d3..b186f5311 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 d7b467cf7..c77555e3a 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 52d836e25..b37295bd5 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 d700736ec..9d8120141 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 0e91c209a..272bedcba 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 95624d40b..6632d7674 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 5e12625b1..a9b126d7f 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 89beb1f6f..e9823d77c 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 1a364f045..3d004f9f1 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 f746a0be6..8dc3612a3 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 bdbad3058..a5e05f883 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 40ab56f70..7726aed5e 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 115854c34..6a685d00e 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 c06b2d413..7808d8ae0 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 58230cec4..1edab1ece 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 4cf38b432..95c4730e9 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 99b8b39ae..955277e54 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 26e536b50..7302b6836 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 388bb841e..a83512b62 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 5d24b8511..ccd50d760 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 697e23cc2..c7940b1c3 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 6d9e05438..ca9d0acc7 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 78d4f919b..96c6c1e4d 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 3a1f814ab..e02b0fe52 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 9445b8e90..3ee875a75 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 199a14f12..444f04160 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 87011bc85..8995f119a 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 98a133473..a659ae126 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 34bd4ac54..2ed24fc01 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 28591a8bd..69a326462 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 e569dace8..b77ab85f0 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 3385996b8..10ad31044 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 cc44af1f7..befa51677 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 9a37167c9..b7b188589 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 114737313..04e58a134 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 7f3d5e6e4..dddf8c760 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 2ca9ae355..3a9691be4 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/rapidata/api_client/models/workflow_state.py b/src/rapidata/api_client/models/workflow_state.py index d59291bb6..b4bb5bf98 100644 --- a/src/rapidata/api_client/models/workflow_state.py +++ b/src/rapidata/api_client/models/workflow_state.py @@ -5,7 +5,7 @@ The API for the Rapidata Asset service - The version of the OpenAPI document: 2026.08.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 740c85abb..e4dd9bc4e 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.11.1359-4548577 + The version of the OpenAPI document: 2026.08.12.1010-860c8c8 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 23c97d56b..5e496bab8 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.11.1359-4548577 +- API version: 2026.08.12.1010-860c8c8 - Package version: 1.0.0 - Generator version: 7.23.0 - Build package: org.openapitools.codegen.languages.PythonClientCodegen @@ -106,6 +106,7 @@ Class | Method | HTTP request | Description *BenchmarkApi* | [**benchmark_benchmark_id_huggingface_sync_attempts_get**](rapidata/api_client/docs/BenchmarkApi.md#benchmark_benchmark_id_huggingface_sync_attempts_get) | **GET** /benchmark/{benchmarkId}/huggingface-sync/attempts | Queries the benchmark's HuggingFace sync attempts (empty when it has never been synced). *BenchmarkApi* | [**benchmark_benchmark_id_huggingface_sync_get**](rapidata/api_client/docs/BenchmarkApi.md#benchmark_benchmark_id_huggingface_sync_get) | **GET** /benchmark/{benchmarkId}/huggingface-sync | Returns the HuggingFace sync status of the benchmark. *BenchmarkApi* | [**benchmark_benchmark_id_huggingface_sync_post**](rapidata/api_client/docs/BenchmarkApi.md#benchmark_benchmark_id_huggingface_sync_post) | **POST** /benchmark/{benchmarkId}/huggingface-sync | Starts a HuggingFace sync of the benchmark and returns its current sync status. +*BenchmarkApi* | [**benchmark_benchmark_id_images_query_get**](rapidata/api_client/docs/BenchmarkApi.md#benchmark_benchmark_id_images_query_get) | **GET** /benchmark/{benchmarkId}/images/query | Queries the per-image ratings of a benchmark — a page of prompts, each with its ranked images and the pairwise win matrix over them, in the same pandas-split shape as the standings matrix. *BenchmarkApi* | [**benchmark_benchmark_id_leaderboards_get**](rapidata/api_client/docs/BenchmarkApi.md#benchmark_benchmark_id_leaderboards_get) | **GET** /benchmark/{benchmarkId}/leaderboards | Queries all leaderboards for the given benchmark. *BenchmarkApi* | [**benchmark_benchmark_id_matchup_breakdown_get**](rapidata/api_client/docs/BenchmarkApi.md#benchmark_benchmark_id_matchup_breakdown_get) | **GET** /benchmark/{benchmarkId}/matchup-breakdown | Returns a page of the requested confidence zone of an A-vs-B matchup — the prompts A clearly wins, the coin flips, or the prompts B clearly wins. *BenchmarkApi* | [**benchmark_benchmark_id_matrix_query_get**](rapidata/api_client/docs/BenchmarkApi.md#benchmark_benchmark_id_matrix_query_get) | **GET** /benchmark/{benchmarkId}/matrix/query | Queries the win matrix of a benchmark. @@ -1125,6 +1126,9 @@ Class | Method | HTTP request | Description - [QueryFlowItemsEndpointPagedResultOfOutput](rapidata/api_client/docs/QueryFlowItemsEndpointPagedResultOfOutput.md) - [QueryFlowsEndpointOutput](rapidata/api_client/docs/QueryFlowsEndpointOutput.md) - [QueryFlowsEndpointPagedResultOfOutput](rapidata/api_client/docs/QueryFlowsEndpointPagedResultOfOutput.md) + - [QueryImagesByBenchmarkEndpointOutput](rapidata/api_client/docs/QueryImagesByBenchmarkEndpointOutput.md) + - [QueryImagesByBenchmarkEndpointOutputImage](rapidata/api_client/docs/QueryImagesByBenchmarkEndpointOutputImage.md) + - [QueryImagesByBenchmarkEndpointOutputPrompt](rapidata/api_client/docs/QueryImagesByBenchmarkEndpointOutputPrompt.md) - [QueryInvoicesEndpointOutput](rapidata/api_client/docs/QueryInvoicesEndpointOutput.md) - [QueryInvoicesEndpointPagedResultOfOutput](rapidata/api_client/docs/QueryInvoicesEndpointPagedResultOfOutput.md) - [QueryJobDefinitionsEndpointOutput](rapidata/api_client/docs/QueryJobDefinitionsEndpointOutput.md)