diff --git a/openapi/schemas/asset.openapi.json b/openapi/schemas/asset.openapi.json
index 5ef0b5430..3f98ed3c2 100644
--- a/openapi/schemas/asset.openapi.json
+++ b/openapi/schemas/asset.openapi.json
@@ -19,14 +19,6 @@
"summary": "Compresses an uploaded image and returns the WebP result.",
"description": "Compression metrics are returned in response headers: X-Original-Size, X-Compressed-Size,\n X-Processing-Time-Ms, X-Original-Dimensions, X-Output-Dimensions.",
"parameters": [
- {
- "name": "library",
- "in": "query",
- "description": "The compression library to use.",
- "schema": {
- "$ref": "#/components/schemas/CompressionLibrary"
- }
- },
{
"name": "quality",
"in": "query",
@@ -104,6 +96,34 @@
"Asset"
],
"summary": "Uploads a file to our system and returns the new file name used internally.",
+ "parameters": [
+ {
+ "name": "compress",
+ "in": "query",
+ "description": "When set, forces image compression on or off for this upload, overriding the configured default.",
+ "schema": {
+ "type": "boolean"
+ }
+ },
+ {
+ "name": "quality",
+ "in": "query",
+ "description": "WebP quality (1..100) to use when compression runs. Falls back to the configured default when null.",
+ "schema": {
+ "type": "integer",
+ "format": "int32"
+ }
+ },
+ {
+ "name": "maxdim",
+ "in": "query",
+ "description": "Maximum width or height in pixels when compression runs. Falls back to the configured default when null.",
+ "schema": {
+ "type": "integer",
+ "format": "int32"
+ }
+ }
+ ],
"requestBody": {
"description": "The file to upload",
"content": {
@@ -169,6 +189,32 @@
"type": "string",
"format": "uri"
}
+ },
+ {
+ "name": "compress",
+ "in": "query",
+ "description": "When set, forces image compression on or off for this upload, overriding the configured default.",
+ "schema": {
+ "type": "boolean"
+ }
+ },
+ {
+ "name": "quality",
+ "in": "query",
+ "description": "WebP quality (1..100) to use when compression runs. Falls back to the configured default when null.",
+ "schema": {
+ "type": "integer",
+ "format": "int32"
+ }
+ },
+ {
+ "name": "maxdim",
+ "in": "query",
+ "description": "Maximum width or height in pixels when compression runs. Falls back to the configured default when null.",
+ "schema": {
+ "type": "integer",
+ "format": "int32"
+ }
}
],
"responses": {
@@ -411,11 +457,24 @@
"Failed"
]
},
- "CompressionLibrary": {
- "enum": [
- "ImageSharp",
- "NetVips"
- ]
+ "CompressionOverride": {
+ "type": "object",
+ "properties": {
+ "enabled": {
+ "type": "boolean",
+ "nullable": true
+ },
+ "quality": {
+ "type": "integer",
+ "format": "int32",
+ "nullable": true
+ },
+ "maxDimension": {
+ "type": "integer",
+ "format": "int32",
+ "nullable": true
+ }
+ }
},
"CreateBatchUploadEndpoint_Input": {
"required": [
@@ -439,6 +498,14 @@
"type": "string",
"description": "Optional client-supplied identifier to group related batch uploads.",
"nullable": true
+ },
+ "compression": {
+ "allOf": [
+ {
+ "$ref": "#/components/schemas/CompressionOverride"
+ }
+ ],
+ "description": "Optional per-call override for image compression applied to every URL in the batch.\n Null means use the configured defaults."
}
}
},
@@ -697,47 +764,19 @@
}
},
"securitySchemes": {
- "Bearer": {
- "type": "http",
- "description": "JWT Authorization header using the Bearer scheme",
- "scheme": "bearer",
- "bearerFormat": "Json Web Token"
- },
"OpenIdConnect": {
"type": "openIdConnect",
- "description": "OpenId Connect connection flow",
+ "description": "OpenID Connect connection flow",
"openIdConnectUrl": "https://auth.rabbitdata.ch/.well-known/openid-configuration"
- },
- "OAuth2": {
- "type": "oauth2",
- "description": "OAuth2 authorization header using the Bearer scheme",
- "flows": {
- "authorizationCode": {
- "authorizationUrl": "https://auth.rabbitdata.ch/connect/authorize",
- "tokenUrl": "https://auth.rabbitdata.ch/connect/token",
- "refreshUrl": "https://auth.rabbitdata.ch/connect/token",
- "scopes": {
- "openid": "OpenID",
- "profile": "Profile",
- "email": "Email"
- }
- }
- }
}
}
},
"security": [
{
- "Bearer": [ ],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
diff --git a/openapi/schemas/audience.openapi.json b/openapi/schemas/audience.openapi.json
index 4a07aa247..7a1c34a7c 100644
--- a/openapi/schemas/audience.openapi.json
+++ b/openapi/schemas/audience.openapi.json
@@ -4718,47 +4718,19 @@
}
},
"securitySchemes": {
- "Bearer": {
- "type": "http",
- "description": "JWT Authorization header using the Bearer scheme",
- "scheme": "bearer",
- "bearerFormat": "Json Web Token"
- },
"OpenIdConnect": {
"type": "openIdConnect",
- "description": "OpenId Connect connection flow",
+ "description": "OpenID Connect connection flow",
"openIdConnectUrl": "https://auth.rabbitdata.ch/.well-known/openid-configuration"
- },
- "OAuth2": {
- "type": "oauth2",
- "description": "OAuth2 authorization header using the Bearer scheme",
- "flows": {
- "authorizationCode": {
- "authorizationUrl": "https://auth.rabbitdata.ch/connect/authorize",
- "tokenUrl": "https://auth.rabbitdata.ch/connect/token",
- "refreshUrl": "https://auth.rabbitdata.ch/connect/token",
- "scopes": {
- "openid": "OpenID",
- "profile": "Profile",
- "email": "Email"
- }
- }
- }
}
}
},
"security": [
{
- "Bearer": [ ],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
diff --git a/openapi/schemas/campaign.openapi.json b/openapi/schemas/campaign.openapi.json
index a031ec07a..a52031e18 100644
--- a/openapi/schemas/campaign.openapi.json
+++ b/openapi/schemas/campaign.openapi.json
@@ -2908,47 +2908,19 @@
}
},
"securitySchemes": {
- "Bearer": {
- "type": "http",
- "description": "JWT Authorization header using the Bearer scheme",
- "scheme": "bearer",
- "bearerFormat": "Json Web Token"
- },
"OpenIdConnect": {
"type": "openIdConnect",
- "description": "OpenId Connect connection flow",
+ "description": "OpenID Connect connection flow",
"openIdConnectUrl": "https://auth.rabbitdata.ch/.well-known/openid-configuration"
- },
- "OAuth2": {
- "type": "oauth2",
- "description": "OAuth2 authorization header using the Bearer scheme",
- "flows": {
- "authorizationCode": {
- "authorizationUrl": "https://auth.rabbitdata.ch/connect/authorize",
- "tokenUrl": "https://auth.rabbitdata.ch/connect/token",
- "refreshUrl": "https://auth.rabbitdata.ch/connect/token",
- "scopes": {
- "openid": "OpenID",
- "profile": "Profile",
- "email": "Email"
- }
- }
- }
}
}
},
"security": [
{
- "Bearer": [ ],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
diff --git a/openapi/schemas/dataset.openapi.json b/openapi/schemas/dataset.openapi.json
index 2d926590c..474e43922 100644
--- a/openapi/schemas/dataset.openapi.json
+++ b/openapi/schemas/dataset.openapi.json
@@ -1564,47 +1564,19 @@
}
},
"securitySchemes": {
- "Bearer": {
- "type": "http",
- "description": "JWT Authorization header using the Bearer scheme",
- "scheme": "bearer",
- "bearerFormat": "Json Web Token"
- },
"OpenIdConnect": {
"type": "openIdConnect",
- "description": "OpenId Connect connection flow",
+ "description": "OpenID Connect connection flow",
"openIdConnectUrl": "https://auth.rabbitdata.ch/.well-known/openid-configuration"
- },
- "OAuth2": {
- "type": "oauth2",
- "description": "OAuth2 authorization header using the Bearer scheme",
- "flows": {
- "authorizationCode": {
- "authorizationUrl": "https://auth.rabbitdata.ch/connect/authorize",
- "tokenUrl": "https://auth.rabbitdata.ch/connect/token",
- "refreshUrl": "https://auth.rabbitdata.ch/connect/token",
- "scopes": {
- "openid": "OpenID",
- "profile": "Profile",
- "email": "Email"
- }
- }
- }
}
}
},
"security": [
{
- "Bearer": [ ],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
diff --git a/openapi/schemas/flow.openapi.json b/openapi/schemas/flow.openapi.json
index e1fcbdb37..03e37d467 100644
--- a/openapi/schemas/flow.openapi.json
+++ b/openapi/schemas/flow.openapi.json
@@ -2623,47 +2623,19 @@
}
},
"securitySchemes": {
- "Bearer": {
- "type": "http",
- "description": "JWT Authorization header using the Bearer scheme",
- "scheme": "bearer",
- "bearerFormat": "Json Web Token"
- },
"OpenIdConnect": {
"type": "openIdConnect",
- "description": "OpenId Connect connection flow",
+ "description": "OpenID Connect connection flow",
"openIdConnectUrl": "https://auth.rabbitdata.ch/.well-known/openid-configuration"
- },
- "OAuth2": {
- "type": "oauth2",
- "description": "OAuth2 authorization header using the Bearer scheme",
- "flows": {
- "authorizationCode": {
- "authorizationUrl": "https://auth.rabbitdata.ch/connect/authorize",
- "tokenUrl": "https://auth.rabbitdata.ch/connect/token",
- "refreshUrl": "https://auth.rabbitdata.ch/connect/token",
- "scopes": {
- "openid": "OpenID",
- "profile": "Profile",
- "email": "Email"
- }
- }
- }
}
}
},
"security": [
{
- "Bearer": [ ],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
diff --git a/openapi/schemas/identity.openapi.json b/openapi/schemas/identity.openapi.json
index fbe181531..7c3707b8d 100644
--- a/openapi/schemas/identity.openapi.json
+++ b/openapi/schemas/identity.openapi.json
@@ -1873,47 +1873,19 @@
}
},
"securitySchemes": {
- "Bearer": {
- "type": "http",
- "description": "JWT Authorization header using the Bearer scheme",
- "scheme": "bearer",
- "bearerFormat": "Json Web Token"
- },
"OpenIdConnect": {
"type": "openIdConnect",
- "description": "OpenId Connect connection flow",
+ "description": "OpenID Connect connection flow",
"openIdConnectUrl": "https://auth.rabbitdata.ch/.well-known/openid-configuration"
- },
- "OAuth2": {
- "type": "oauth2",
- "description": "OAuth2 authorization header using the Bearer scheme",
- "flows": {
- "authorizationCode": {
- "authorizationUrl": "https://auth.rabbitdata.ch/connect/authorize",
- "tokenUrl": "https://auth.rabbitdata.ch/connect/token",
- "refreshUrl": "https://auth.rabbitdata.ch/connect/token",
- "scopes": {
- "openid": "OpenID",
- "profile": "Profile",
- "email": "Email"
- }
- }
- }
}
}
},
"security": [
{
- "Bearer": [ ],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
],
diff --git a/openapi/schemas/leaderboard.openapi.json b/openapi/schemas/leaderboard.openapi.json
index 9900bdeaf..f3581ec96 100644
--- a/openapi/schemas/leaderboard.openapi.json
+++ b/openapi/schemas/leaderboard.openapi.json
@@ -4359,6 +4359,11 @@
"description": "Optional audience id; defaults to the global audience when unset.",
"nullable": true
},
+ "priority": {
+ "type": "integer",
+ "description": "Optional priority override applied to every run's job. Admin-only.\n When unset, runs use the default leaderboard priority.",
+ "format": "int32"
+ },
"featureFlags": {
"allOf": [
{
@@ -4939,6 +4944,12 @@
"description": "The id of the associated job definition, if any.",
"nullable": true
},
+ "priority": {
+ "type": "integer",
+ "description": "Priority override applied to every run's job. Null when no override is set; runs then\n fall back to the default leaderboard priority.",
+ "format": "int32",
+ "nullable": true
+ },
"featureFlags": {
"allOf": [
{
@@ -6972,6 +6983,12 @@
"type": "integer",
"description": "The minimum responses collected per matchup.",
"format": "int32"
+ },
+ "priority": {
+ "type": "integer",
+ "description": "Priority override applied to every run's job. Admin-only. Pass null to clear\n the override and fall back to the default leaderboard priority.",
+ "format": "int32",
+ "nullable": true
}
}
},
@@ -7115,47 +7132,19 @@
}
},
"securitySchemes": {
- "Bearer": {
- "type": "http",
- "description": "JWT Authorization header using the Bearer scheme",
- "scheme": "bearer",
- "bearerFormat": "Json Web Token"
- },
"OpenIdConnect": {
"type": "openIdConnect",
- "description": "OpenId Connect connection flow",
+ "description": "OpenID Connect connection flow",
"openIdConnectUrl": "https://auth.rabbitdata.ch/.well-known/openid-configuration"
- },
- "OAuth2": {
- "type": "oauth2",
- "description": "OAuth2 authorization header using the Bearer scheme",
- "flows": {
- "authorizationCode": {
- "authorizationUrl": "https://auth.rabbitdata.ch/connect/authorize",
- "tokenUrl": "https://auth.rabbitdata.ch/connect/token",
- "refreshUrl": "https://auth.rabbitdata.ch/connect/token",
- "scopes": {
- "openid": "OpenID",
- "profile": "Profile",
- "email": "Email"
- }
- }
- }
}
}
},
"security": [
{
- "Bearer": [ ],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
diff --git a/openapi/schemas/order.openapi.json b/openapi/schemas/order.openapi.json
index 00985e043..e5ab9977e 100644
--- a/openapi/schemas/order.openapi.json
+++ b/openapi/schemas/order.openapi.json
@@ -6230,47 +6230,19 @@
}
},
"securitySchemes": {
- "Bearer": {
- "type": "http",
- "description": "JWT Authorization header using the Bearer scheme",
- "scheme": "bearer",
- "bearerFormat": "Json Web Token"
- },
"OpenIdConnect": {
"type": "openIdConnect",
- "description": "OpenId Connect connection flow",
+ "description": "OpenID Connect connection flow",
"openIdConnectUrl": "https://auth.rabbitdata.ch/.well-known/openid-configuration"
- },
- "OAuth2": {
- "type": "oauth2",
- "description": "OAuth2 authorization header using the Bearer scheme",
- "flows": {
- "authorizationCode": {
- "authorizationUrl": "https://auth.rabbitdata.ch/connect/authorize",
- "tokenUrl": "https://auth.rabbitdata.ch/connect/token",
- "refreshUrl": "https://auth.rabbitdata.ch/connect/token",
- "scopes": {
- "openid": "OpenID",
- "profile": "Profile",
- "email": "Email"
- }
- }
- }
}
}
},
"security": [
{
- "Bearer": [ ],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
diff --git a/openapi/schemas/pipeline.openapi.json b/openapi/schemas/pipeline.openapi.json
index 10e090098..1643d7786 100644
--- a/openapi/schemas/pipeline.openapi.json
+++ b/openapi/schemas/pipeline.openapi.json
@@ -1632,47 +1632,19 @@
}
},
"securitySchemes": {
- "Bearer": {
- "type": "http",
- "description": "JWT Authorization header using the Bearer scheme",
- "scheme": "bearer",
- "bearerFormat": "Json Web Token"
- },
"OpenIdConnect": {
"type": "openIdConnect",
- "description": "OpenId Connect connection flow",
+ "description": "OpenID Connect connection flow",
"openIdConnectUrl": "https://auth.rabbitdata.ch/.well-known/openid-configuration"
- },
- "OAuth2": {
- "type": "oauth2",
- "description": "OAuth2 authorization header using the Bearer scheme",
- "flows": {
- "authorizationCode": {
- "authorizationUrl": "https://auth.rabbitdata.ch/connect/authorize",
- "tokenUrl": "https://auth.rabbitdata.ch/connect/token",
- "refreshUrl": "https://auth.rabbitdata.ch/connect/token",
- "scopes": {
- "openid": "OpenID",
- "profile": "Profile",
- "email": "Email"
- }
- }
- }
}
}
},
"security": [
{
- "Bearer": [ ],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
diff --git a/openapi/schemas/rapid.openapi.json b/openapi/schemas/rapid.openapi.json
index 15093a0af..2eb2861d4 100644
--- a/openapi/schemas/rapid.openapi.json
+++ b/openapi/schemas/rapid.openapi.json
@@ -3987,47 +3987,19 @@
}
},
"securitySchemes": {
- "Bearer": {
- "type": "http",
- "description": "JWT Authorization header using the Bearer scheme",
- "scheme": "bearer",
- "bearerFormat": "Json Web Token"
- },
"OpenIdConnect": {
"type": "openIdConnect",
- "description": "OpenId Connect connection flow",
+ "description": "OpenID Connect connection flow",
"openIdConnectUrl": "https://auth.rabbitdata.ch/.well-known/openid-configuration"
- },
- "OAuth2": {
- "type": "oauth2",
- "description": "OAuth2 authorization header using the Bearer scheme",
- "flows": {
- "authorizationCode": {
- "authorizationUrl": "https://auth.rabbitdata.ch/connect/authorize",
- "tokenUrl": "https://auth.rabbitdata.ch/connect/token",
- "refreshUrl": "https://auth.rabbitdata.ch/connect/token",
- "scopes": {
- "openid": "OpenID",
- "profile": "Profile",
- "email": "Email"
- }
- }
- }
}
}
},
"security": [
{
- "Bearer": [ ],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
diff --git a/openapi/schemas/rapidata.filtered.openapi.json b/openapi/schemas/rapidata.filtered.openapi.json
index c8ec5134c..a121b42f7 100644
--- a/openapi/schemas/rapidata.filtered.openapi.json
+++ b/openapi/schemas/rapidata.filtered.openapi.json
@@ -185,14 +185,6 @@
"summary": "Compresses an uploaded image and returns the WebP result.",
"description": "Compression metrics are returned in response headers: X-Original-Size, X-Compressed-Size,\n X-Processing-Time-Ms, X-Original-Dimensions, X-Output-Dimensions.",
"parameters": [
- {
- "name": "library",
- "in": "query",
- "description": "The compression library to use.",
- "schema": {
- "$ref": "#/components/schemas/CompressionLibrary"
- }
- },
{
"name": "quality",
"in": "query",
@@ -264,16 +256,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -285,6 +271,34 @@
"Asset"
],
"summary": "Uploads a file to our system and returns the new file name used internally.",
+ "parameters": [
+ {
+ "name": "compress",
+ "in": "query",
+ "description": "When set, forces image compression on or off for this upload, overriding the configured default.",
+ "schema": {
+ "type": "boolean"
+ }
+ },
+ {
+ "name": "quality",
+ "in": "query",
+ "description": "WebP quality (1..100) to use when compression runs. Falls back to the configured default when null.",
+ "schema": {
+ "type": "integer",
+ "format": "int32"
+ }
+ },
+ {
+ "name": "maxdim",
+ "in": "query",
+ "description": "Maximum width or height in pixels when compression runs. Falls back to the configured default when null.",
+ "schema": {
+ "type": "integer",
+ "format": "int32"
+ }
+ }
+ ],
"requestBody": {
"description": "The file to upload",
"content": {
@@ -334,16 +348,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -365,6 +373,32 @@
"type": "string",
"format": "uri"
}
+ },
+ {
+ "name": "compress",
+ "in": "query",
+ "description": "When set, forces image compression on or off for this upload, overriding the configured default.",
+ "schema": {
+ "type": "boolean"
+ }
+ },
+ {
+ "name": "quality",
+ "in": "query",
+ "description": "WebP quality (1..100) to use when compression runs. Falls back to the configured default when null.",
+ "schema": {
+ "type": "integer",
+ "format": "int32"
+ }
+ },
+ {
+ "name": "maxdim",
+ "in": "query",
+ "description": "Maximum width or height in pixels when compression runs. Falls back to the configured default when null.",
+ "schema": {
+ "type": "integer",
+ "format": "int32"
+ }
}
],
"responses": {
@@ -397,16 +431,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -453,16 +481,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -516,16 +538,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -578,16 +594,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -650,16 +660,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -716,16 +720,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -778,16 +776,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -851,16 +843,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -906,16 +892,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -966,16 +946,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -1037,16 +1011,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -1099,16 +1067,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -1161,16 +1123,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -1223,16 +1179,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -1285,16 +1235,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -1346,16 +1290,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -1408,16 +1346,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -1469,16 +1401,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -1543,16 +1469,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -1598,16 +1518,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -1928,16 +1842,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -2297,16 +2205,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -2353,16 +2255,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -2419,16 +2315,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -2474,16 +2364,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -2529,16 +2413,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -2602,16 +2480,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -2675,16 +2547,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -2737,16 +2603,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -2925,16 +2785,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -3000,16 +2854,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -3051,16 +2899,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -3102,16 +2944,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -3154,16 +2990,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -3205,16 +3035,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -3267,16 +3091,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -3331,16 +3149,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -3395,16 +3207,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -3468,16 +3274,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -3506,16 +3306,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -3561,16 +3355,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -3605,16 +3393,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -3974,16 +3756,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -4029,16 +3805,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -4084,16 +3854,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -4313,16 +4077,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -4357,16 +4115,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -4430,16 +4182,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -4485,16 +4231,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -4545,16 +4285,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -4608,16 +4342,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -4798,16 +4526,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -4860,16 +4582,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -4922,16 +4638,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -4984,16 +4694,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -5050,16 +4754,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -5116,16 +4814,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -5171,16 +4863,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -5231,16 +4917,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -5320,16 +5000,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -5409,16 +5083,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -5498,16 +5166,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -5587,16 +5249,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -5768,16 +5424,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -5823,16 +5473,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -5885,16 +5529,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -5951,16 +5589,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -6024,16 +5656,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -6212,16 +5838,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -6274,16 +5894,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -6347,16 +5961,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -6420,16 +6028,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -6447,16 +6049,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -6509,16 +6105,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -6564,16 +6154,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -6625,16 +6209,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -6853,16 +6431,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -6893,16 +6465,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -7167,16 +6733,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -7230,16 +6790,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -7295,16 +6849,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -7358,16 +6906,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -7397,16 +6939,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -7452,16 +6988,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -7507,16 +7037,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -7734,16 +7258,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -7789,16 +7307,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -7851,16 +7363,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -7924,16 +7430,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -8160,16 +7660,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -8233,16 +7727,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -8288,16 +7776,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -8348,16 +7830,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -8412,16 +7888,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -8476,16 +7946,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -8538,16 +8002,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -8643,16 +8101,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -8717,16 +8169,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -8800,16 +8246,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -8990,16 +8430,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -9103,16 +8537,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -9378,16 +8806,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -9568,16 +8990,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -9630,16 +9046,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -9701,16 +9111,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -9767,16 +9171,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -9833,16 +9231,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -9895,16 +9287,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -9968,16 +9354,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -10028,16 +9408,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -10101,16 +9475,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -10156,16 +9524,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -10216,16 +9578,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -10280,16 +9636,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -10354,16 +9704,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -10437,16 +9781,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -10520,16 +9858,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -10591,16 +9923,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -10662,16 +9988,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -10992,16 +10312,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -11267,16 +10581,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -11358,16 +10666,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -11429,16 +10731,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -11495,16 +10791,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -11561,16 +10851,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -11634,16 +10918,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -11707,16 +10985,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -11762,16 +11034,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -11822,16 +11088,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -11886,16 +11146,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -11941,16 +11195,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -11996,16 +11244,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -12058,16 +11300,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -12124,16 +11360,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -12190,16 +11420,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -12252,16 +11476,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -12314,16 +11532,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -12559,16 +11771,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -12758,16 +11964,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -12813,16 +12013,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -12876,16 +12070,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -12939,16 +12127,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -13013,16 +12195,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -13073,16 +12249,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -13128,16 +12298,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -13188,16 +12352,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -13252,16 +12410,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -13307,16 +12459,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -13367,16 +12513,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -13431,16 +12571,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -13484,16 +12618,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -13537,16 +12665,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -13609,16 +12731,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -13975,16 +13091,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -14211,16 +13321,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -14579,16 +13683,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -14634,16 +13732,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -14708,16 +13800,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -14770,16 +13856,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -14833,16 +13913,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -14888,16 +13962,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -14943,16 +14011,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -15003,16 +14065,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -15067,16 +14123,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -15120,16 +14170,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -15173,16 +14217,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -15224,16 +14262,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -15288,16 +14320,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -15343,16 +14369,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -15415,16 +14435,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -15646,16 +14660,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -15967,16 +14975,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -16022,16 +15024,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -16077,16 +15073,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -16141,16 +15131,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -16214,16 +15198,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -16277,16 +15255,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -16339,16 +15311,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -16405,16 +15371,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -16478,75 +15438,63 @@
},
"security": [
{
- "Bearer": [],
- "OpenIdConnect": [
- "openid",
- "profile",
- "email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
- ]
- }
- ]
- }
- },
- "/rapid/demographic": {
- "post": {
- "tags": [
- "CustomerRapid"
- ],
- "summary": "Creates a new demographic rapid.",
- "requestBody": {
- "description": "The demographic rapid payload.",
- "content": {
- "application/json": {
- "schema": {
- "$ref": "#/components/schemas/CreateDemographicRapidEndpoint_Input"
- }
- }
- },
- "required": true
- },
- "responses": {
- "200": {
- "description": "OK",
- "content": {
- "application/json": {
- "schema": {
- "$ref": "#/components/schemas/CreateDemographicRapidEndpoint_Output"
- }
- }
- }
- },
- "400": {
- "description": "Bad Request",
- "content": {
- "application/json": {
- "schema": {
- "$ref": "#/components/schemas/ValidationProblemDetails"
- }
- }
- }
- },
- "401": {
- "description": "Unauthenticated"
- },
- "403": {
- "description": "Forbidden"
- }
- },
- "security": [
- {
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
+ ]
+ }
+ ]
+ }
+ },
+ "/rapid/demographic": {
+ "post": {
+ "tags": [
+ "CustomerRapid"
+ ],
+ "summary": "Creates a new demographic rapid.",
+ "requestBody": {
+ "description": "The demographic rapid payload.",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/CreateDemographicRapidEndpoint_Input"
+ }
+ }
+ },
+ "required": true
+ },
+ "responses": {
+ "200": {
+ "description": "OK",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/CreateDemographicRapidEndpoint_Output"
+ }
+ }
+ }
+ },
+ "400": {
+ "description": "Bad Request",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/ValidationProblemDetails"
+ }
+ }
+ }
+ },
+ "401": {
+ "description": "Unauthenticated"
+ },
+ "403": {
+ "description": "Forbidden"
+ }
+ },
+ "security": [
+ {
+ "OpenIdConnect": [
"openid",
"profile",
"email"
@@ -16595,16 +15543,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -16646,16 +15588,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -16708,16 +15644,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -17027,16 +15957,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -17271,16 +16195,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -17327,16 +16245,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -17393,16 +16305,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -17449,16 +16355,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -17511,16 +16411,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -17573,16 +16467,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -17624,16 +16512,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -17690,16 +16572,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -17752,16 +16628,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -17818,16 +16688,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -18050,16 +16914,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -18112,16 +16970,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -18174,16 +17026,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -18240,16 +17086,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -18302,16 +17142,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -18357,16 +17191,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -18417,16 +17245,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -18481,16 +17303,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -18520,16 +17336,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -18571,16 +17381,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -18656,16 +17460,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -18894,16 +17692,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -19397,16 +18189,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -19437,16 +18223,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -19503,16 +18283,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -19569,16 +18343,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -19634,16 +18402,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -19741,16 +18503,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -19979,16 +18735,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -20077,16 +18827,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -20188,16 +18932,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -20243,16 +18981,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -20303,16 +19035,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -20374,16 +19100,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -20436,16 +19156,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -20516,16 +19230,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -20791,16 +19499,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -20823,11 +19525,24 @@
"Failed"
]
},
- "CompressionLibrary": {
- "enum": [
- "ImageSharp",
- "NetVips"
- ]
+ "CompressionOverride": {
+ "type": "object",
+ "properties": {
+ "enabled": {
+ "type": "boolean",
+ "nullable": true
+ },
+ "quality": {
+ "type": "integer",
+ "format": "int32",
+ "nullable": true
+ },
+ "maxDimension": {
+ "type": "integer",
+ "format": "int32",
+ "nullable": true
+ }
+ }
},
"CreateBatchUploadEndpoint_Input": {
"required": [
@@ -20851,6 +19566,14 @@
"type": "string",
"description": "Optional client-supplied identifier to group related batch uploads.",
"nullable": true
+ },
+ "compression": {
+ "allOf": [
+ {
+ "$ref": "#/components/schemas/CompressionOverride"
+ }
+ ],
+ "description": "Optional per-call override for image compression applied to every URL in the batch.\n Null means use the configured defaults."
}
}
},
@@ -27752,6 +26475,11 @@
"description": "Optional audience id; defaults to the global audience when unset.",
"nullable": true
},
+ "priority": {
+ "type": "integer",
+ "description": "Optional priority override applied to every run's job. Admin-only.\n When unset, runs use the default leaderboard priority.",
+ "format": "int32"
+ },
"featureFlags": {
"allOf": [
{
@@ -28309,6 +27037,12 @@
"description": "The id of the associated job definition, if any.",
"nullable": true
},
+ "priority": {
+ "type": "integer",
+ "description": "Priority override applied to every run's job. Null when no override is set; runs then\n fall back to the default leaderboard priority.",
+ "format": "int32",
+ "nullable": true
+ },
"featureFlags": {
"allOf": [
{
@@ -29784,6 +28518,12 @@
"type": "integer",
"description": "The minimum responses collected per matchup.",
"format": "int32"
+ },
+ "priority": {
+ "type": "integer",
+ "description": "Priority override applied to every run's job. Admin-only. Pass null to clear\n the override and fall back to the default leaderboard priority.",
+ "format": "int32",
+ "nullable": true
}
}
},
@@ -38779,32 +37519,10 @@
}
},
"securitySchemes": {
- "Bearer": {
- "type": "http",
- "description": "JWT Authorization header using the Bearer scheme",
- "scheme": "bearer",
- "bearerFormat": "Json Web Token"
- },
"OpenIdConnect": {
"type": "openIdConnect",
- "description": "OpenId Connect connection flow",
+ "description": "OpenID Connect connection flow",
"openIdConnectUrl": "https://auth.rabbitdata.ch/.well-known/openid-configuration"
- },
- "OAuth2": {
- "type": "oauth2",
- "description": "OAuth2 authorization header using the Bearer scheme",
- "flows": {
- "authorizationCode": {
- "authorizationUrl": "https://auth.rabbitdata.ch/connect/authorize",
- "tokenUrl": "https://auth.rabbitdata.ch/connect/token",
- "refreshUrl": "https://auth.rabbitdata.ch/connect/token",
- "scopes": {
- "openid": "OpenID",
- "profile": "Profile",
- "email": "Email"
- }
- }
- }
}
}
},
diff --git a/openapi/schemas/rapidata.openapi.json b/openapi/schemas/rapidata.openapi.json
index 3e9ce2bb8..527de7035 100644
--- a/openapi/schemas/rapidata.openapi.json
+++ b/openapi/schemas/rapidata.openapi.json
@@ -185,14 +185,6 @@
"summary": "Compresses an uploaded image and returns the WebP result.",
"description": "Compression metrics are returned in response headers: X-Original-Size, X-Compressed-Size,\n X-Processing-Time-Ms, X-Original-Dimensions, X-Output-Dimensions.",
"parameters": [
- {
- "name": "library",
- "in": "query",
- "description": "The compression library to use.",
- "schema": {
- "$ref": "#/components/schemas/CompressionLibrary"
- }
- },
{
"name": "quality",
"in": "query",
@@ -264,16 +256,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -285,6 +271,34 @@
"Asset"
],
"summary": "Uploads a file to our system and returns the new file name used internally.",
+ "parameters": [
+ {
+ "name": "compress",
+ "in": "query",
+ "description": "When set, forces image compression on or off for this upload, overriding the configured default.",
+ "schema": {
+ "type": "boolean"
+ }
+ },
+ {
+ "name": "quality",
+ "in": "query",
+ "description": "WebP quality (1..100) to use when compression runs. Falls back to the configured default when null.",
+ "schema": {
+ "type": "integer",
+ "format": "int32"
+ }
+ },
+ {
+ "name": "maxdim",
+ "in": "query",
+ "description": "Maximum width or height in pixels when compression runs. Falls back to the configured default when null.",
+ "schema": {
+ "type": "integer",
+ "format": "int32"
+ }
+ }
+ ],
"requestBody": {
"description": "The file to upload",
"content": {
@@ -334,16 +348,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -365,6 +373,32 @@
"type": "string",
"format": "uri"
}
+ },
+ {
+ "name": "compress",
+ "in": "query",
+ "description": "When set, forces image compression on or off for this upload, overriding the configured default.",
+ "schema": {
+ "type": "boolean"
+ }
+ },
+ {
+ "name": "quality",
+ "in": "query",
+ "description": "WebP quality (1..100) to use when compression runs. Falls back to the configured default when null.",
+ "schema": {
+ "type": "integer",
+ "format": "int32"
+ }
+ },
+ {
+ "name": "maxdim",
+ "in": "query",
+ "description": "Maximum width or height in pixels when compression runs. Falls back to the configured default when null.",
+ "schema": {
+ "type": "integer",
+ "format": "int32"
+ }
}
],
"responses": {
@@ -397,16 +431,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -453,16 +481,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -516,16 +538,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -578,16 +594,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -650,16 +660,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -716,16 +720,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -778,16 +776,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -851,16 +843,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -906,16 +892,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -966,16 +946,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -1037,16 +1011,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -1099,16 +1067,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -1161,16 +1123,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -1223,16 +1179,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -1285,16 +1235,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -1346,16 +1290,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -1408,16 +1346,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -1469,16 +1401,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -1543,16 +1469,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -1598,16 +1518,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -1928,16 +1842,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -2297,16 +2205,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -2353,16 +2255,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -2419,16 +2315,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -2474,16 +2364,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -2529,16 +2413,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -2602,16 +2480,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -2675,16 +2547,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -2737,16 +2603,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -2925,16 +2785,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -3000,16 +2854,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -3051,16 +2899,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -3102,16 +2944,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -3158,16 +2994,10 @@
"deprecated": true,
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -3209,16 +3039,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -3260,16 +3084,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -3322,16 +3140,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -3386,16 +3198,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -3450,16 +3256,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -3523,16 +3323,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -3561,16 +3355,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -3616,16 +3404,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -3660,16 +3442,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -4029,16 +3805,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -4084,16 +3854,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -4139,16 +3903,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -4368,16 +4126,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -4412,16 +4164,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -4485,16 +4231,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -4540,16 +4280,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -4600,16 +4334,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -4663,16 +4391,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -4853,16 +4575,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -4915,16 +4631,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -4977,16 +4687,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -5039,16 +4743,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -5105,16 +4803,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -5171,16 +4863,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -5226,16 +4912,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -5286,16 +4966,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -5375,16 +5049,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -5464,16 +5132,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -5553,16 +5215,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -5642,16 +5298,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -5823,16 +5473,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -5878,16 +5522,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -5940,16 +5578,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -6006,16 +5638,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -6079,16 +5705,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -6267,16 +5887,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -6329,16 +5943,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -6402,16 +6010,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -6475,16 +6077,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -6502,16 +6098,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -6564,16 +6154,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -6619,16 +6203,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -6680,16 +6258,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -6908,16 +6480,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -6948,16 +6514,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -7222,16 +6782,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -7285,16 +6839,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -7350,16 +6898,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -7413,16 +6955,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -7452,16 +6988,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -7507,16 +7037,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -7562,16 +7086,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -7789,16 +7307,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -7844,16 +7356,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -7906,16 +7412,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -7979,16 +7479,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -8215,16 +7709,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -8288,16 +7776,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -8343,16 +7825,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -8403,16 +7879,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -8467,16 +7937,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -8531,16 +7995,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -8593,16 +8051,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -8698,16 +8150,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -8772,16 +8218,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -8855,16 +8295,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -9045,16 +8479,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -9158,16 +8586,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -9433,16 +8855,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -9623,16 +9039,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -9685,16 +9095,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -9756,16 +9160,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -9822,16 +9220,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -9888,16 +9280,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -9950,16 +9336,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -10023,16 +9403,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -10083,16 +9457,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -10156,16 +9524,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -10211,16 +9573,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -10271,16 +9627,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -10335,16 +9685,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -10409,16 +9753,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -10492,16 +9830,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -10575,16 +9907,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -10646,16 +9972,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -10717,16 +10037,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -11047,16 +10361,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -11322,16 +10630,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -11413,16 +10715,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -11484,16 +10780,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -11550,16 +10840,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -11616,16 +10900,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -11689,16 +10967,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -11762,16 +11034,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -11817,16 +11083,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -11877,16 +11137,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -11941,16 +11195,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -11996,16 +11244,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -12051,16 +11293,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -12113,16 +11349,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -12179,16 +11409,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -12245,16 +11469,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -12307,16 +11525,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -12369,16 +11581,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -12614,16 +11820,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -12813,16 +12013,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -12868,16 +12062,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -12931,16 +12119,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -12994,16 +12176,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -13068,16 +12244,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -13128,16 +12298,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -13183,16 +12347,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -13243,16 +12401,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -13307,16 +12459,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -13362,16 +12508,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -13422,16 +12562,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -13486,16 +12620,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -13539,16 +12667,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -13592,16 +12714,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -13664,16 +12780,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -14030,16 +13140,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -14266,16 +13370,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -14634,16 +13732,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -14689,16 +13781,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -14763,16 +13849,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -14825,16 +13905,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -14888,16 +13962,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -14943,16 +14011,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -14998,16 +14060,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -15058,16 +14114,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -15122,16 +14172,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -15175,16 +14219,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -15228,16 +14266,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -15279,16 +14311,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -15343,16 +14369,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -15398,16 +14418,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -15470,16 +14484,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -15701,16 +14709,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -16022,16 +15024,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -16077,16 +15073,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -16132,16 +15122,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -16196,16 +15180,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -16269,16 +15247,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -16332,16 +15304,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -16394,16 +15360,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -16460,16 +15420,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -16533,75 +15487,63 @@
},
"security": [
{
- "Bearer": [],
- "OpenIdConnect": [
- "openid",
- "profile",
- "email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
- ]
- }
- ]
- }
- },
- "/rapid/demographic": {
- "post": {
- "tags": [
- "CustomerRapid"
- ],
- "summary": "Creates a new demographic rapid.",
- "requestBody": {
- "description": "The demographic rapid payload.",
- "content": {
- "application/json": {
- "schema": {
- "$ref": "#/components/schemas/CreateDemographicRapidEndpoint_Input"
- }
- }
- },
- "required": true
- },
- "responses": {
- "200": {
- "description": "OK",
- "content": {
- "application/json": {
- "schema": {
- "$ref": "#/components/schemas/CreateDemographicRapidEndpoint_Output"
- }
- }
- }
- },
- "400": {
- "description": "Bad Request",
- "content": {
- "application/json": {
- "schema": {
- "$ref": "#/components/schemas/ValidationProblemDetails"
- }
- }
- }
- },
- "401": {
- "description": "Unauthenticated"
- },
- "403": {
- "description": "Forbidden"
- }
- },
- "security": [
- {
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
+ ]
+ }
+ ]
+ }
+ },
+ "/rapid/demographic": {
+ "post": {
+ "tags": [
+ "CustomerRapid"
+ ],
+ "summary": "Creates a new demographic rapid.",
+ "requestBody": {
+ "description": "The demographic rapid payload.",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/CreateDemographicRapidEndpoint_Input"
+ }
+ }
+ },
+ "required": true
+ },
+ "responses": {
+ "200": {
+ "description": "OK",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/CreateDemographicRapidEndpoint_Output"
+ }
+ }
+ }
+ },
+ "400": {
+ "description": "Bad Request",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/ValidationProblemDetails"
+ }
+ }
+ }
+ },
+ "401": {
+ "description": "Unauthenticated"
+ },
+ "403": {
+ "description": "Forbidden"
+ }
+ },
+ "security": [
+ {
+ "OpenIdConnect": [
"openid",
"profile",
"email"
@@ -16650,16 +15592,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -16701,16 +15637,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -16763,16 +15693,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -17082,16 +16006,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -17326,16 +16244,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -17382,16 +16294,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -17448,16 +16354,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -17504,16 +16404,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -17566,16 +16460,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -17628,16 +16516,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -17679,16 +16561,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -17745,16 +16621,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -17807,16 +16677,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -17873,16 +16737,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -18105,16 +16963,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -18167,16 +17019,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -18229,16 +17075,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -18295,16 +17135,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -18357,16 +17191,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -18412,16 +17240,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -18472,16 +17294,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -18536,16 +17352,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -18575,16 +17385,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -18626,16 +17430,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -18711,16 +17509,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -18949,16 +17741,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -19452,16 +18238,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -19492,16 +18272,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -19558,16 +18332,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -19624,16 +18392,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -19689,16 +18451,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -19796,16 +18552,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -20034,16 +18784,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -20132,16 +18876,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -20243,16 +18981,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -20298,16 +19030,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -20358,16 +19084,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -20429,16 +19149,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -20491,16 +19205,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -20571,16 +19279,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -20846,16 +19548,10 @@
},
"security": [
{
- "Bearer": [],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
@@ -20878,11 +19574,24 @@
"Failed"
]
},
- "CompressionLibrary": {
- "enum": [
- "ImageSharp",
- "NetVips"
- ]
+ "CompressionOverride": {
+ "type": "object",
+ "properties": {
+ "enabled": {
+ "type": "boolean",
+ "nullable": true
+ },
+ "quality": {
+ "type": "integer",
+ "format": "int32",
+ "nullable": true
+ },
+ "maxDimension": {
+ "type": "integer",
+ "format": "int32",
+ "nullable": true
+ }
+ }
},
"CreateBatchUploadEndpoint_Input": {
"required": [
@@ -20906,6 +19615,14 @@
"type": "string",
"description": "Optional client-supplied identifier to group related batch uploads.",
"nullable": true
+ },
+ "compression": {
+ "allOf": [
+ {
+ "$ref": "#/components/schemas/CompressionOverride"
+ }
+ ],
+ "description": "Optional per-call override for image compression applied to every URL in the batch.\n Null means use the configured defaults."
}
}
},
@@ -27807,6 +26524,11 @@
"description": "Optional audience id; defaults to the global audience when unset.",
"nullable": true
},
+ "priority": {
+ "type": "integer",
+ "description": "Optional priority override applied to every run's job. Admin-only.\n When unset, runs use the default leaderboard priority.",
+ "format": "int32"
+ },
"featureFlags": {
"allOf": [
{
@@ -28364,6 +27086,12 @@
"description": "The id of the associated job definition, if any.",
"nullable": true
},
+ "priority": {
+ "type": "integer",
+ "description": "Priority override applied to every run's job. Null when no override is set; runs then\n fall back to the default leaderboard priority.",
+ "format": "int32",
+ "nullable": true
+ },
"featureFlags": {
"allOf": [
{
@@ -29839,6 +28567,12 @@
"type": "integer",
"description": "The minimum responses collected per matchup.",
"format": "int32"
+ },
+ "priority": {
+ "type": "integer",
+ "description": "Priority override applied to every run's job. Admin-only. Pass null to clear\n the override and fall back to the default leaderboard priority.",
+ "format": "int32",
+ "nullable": true
}
}
},
@@ -38834,32 +37568,10 @@
}
},
"securitySchemes": {
- "Bearer": {
- "type": "http",
- "description": "JWT Authorization header using the Bearer scheme",
- "scheme": "bearer",
- "bearerFormat": "Json Web Token"
- },
"OpenIdConnect": {
"type": "openIdConnect",
- "description": "OpenId Connect connection flow",
+ "description": "OpenID Connect connection flow",
"openIdConnectUrl": "https://auth.rabbitdata.ch/.well-known/openid-configuration"
- },
- "OAuth2": {
- "type": "oauth2",
- "description": "OAuth2 authorization header using the Bearer scheme",
- "flows": {
- "authorizationCode": {
- "authorizationUrl": "https://auth.rabbitdata.ch/connect/authorize",
- "tokenUrl": "https://auth.rabbitdata.ch/connect/token",
- "refreshUrl": "https://auth.rabbitdata.ch/connect/token",
- "scopes": {
- "openid": "OpenID",
- "profile": "Profile",
- "email": "Email"
- }
- }
- }
}
}
},
diff --git a/openapi/schemas/translation.openapi.json b/openapi/schemas/translation.openapi.json
index c6b1be35c..ab4e346ec 100644
--- a/openapi/schemas/translation.openapi.json
+++ b/openapi/schemas/translation.openapi.json
@@ -234,47 +234,19 @@
}
},
"securitySchemes": {
- "Bearer": {
- "type": "http",
- "description": "JWT Authorization header using the Bearer scheme",
- "scheme": "bearer",
- "bearerFormat": "Json Web Token"
- },
"OpenIdConnect": {
"type": "openIdConnect",
- "description": "OpenId Connect connection flow",
+ "description": "OpenID Connect connection flow",
"openIdConnectUrl": "https://auth.rabbitdata.ch/.well-known/openid-configuration"
- },
- "OAuth2": {
- "type": "oauth2",
- "description": "OAuth2 authorization header using the Bearer scheme",
- "flows": {
- "authorizationCode": {
- "authorizationUrl": "https://auth.rabbitdata.ch/connect/authorize",
- "tokenUrl": "https://auth.rabbitdata.ch/connect/token",
- "refreshUrl": "https://auth.rabbitdata.ch/connect/token",
- "scopes": {
- "openid": "OpenID",
- "profile": "Profile",
- "email": "Email"
- }
- }
- }
}
}
},
"security": [
{
- "Bearer": [ ],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
diff --git a/openapi/schemas/validation.openapi.json b/openapi/schemas/validation.openapi.json
index 47de7b2dd..e5f89d896 100644
--- a/openapi/schemas/validation.openapi.json
+++ b/openapi/schemas/validation.openapi.json
@@ -3180,47 +3180,19 @@
}
},
"securitySchemes": {
- "Bearer": {
- "type": "http",
- "description": "JWT Authorization header using the Bearer scheme",
- "scheme": "bearer",
- "bearerFormat": "Json Web Token"
- },
"OpenIdConnect": {
"type": "openIdConnect",
- "description": "OpenId Connect connection flow",
+ "description": "OpenID Connect connection flow",
"openIdConnectUrl": "https://auth.rabbitdata.ch/.well-known/openid-configuration"
- },
- "OAuth2": {
- "type": "oauth2",
- "description": "OAuth2 authorization header using the Bearer scheme",
- "flows": {
- "authorizationCode": {
- "authorizationUrl": "https://auth.rabbitdata.ch/connect/authorize",
- "tokenUrl": "https://auth.rabbitdata.ch/connect/token",
- "refreshUrl": "https://auth.rabbitdata.ch/connect/token",
- "scopes": {
- "openid": "OpenID",
- "profile": "Profile",
- "email": "Email"
- }
- }
- }
}
}
},
"security": [
{
- "Bearer": [ ],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
diff --git a/openapi/schemas/workflow.openapi.json b/openapi/schemas/workflow.openapi.json
index 1e2aa0e5c..6abad3853 100644
--- a/openapi/schemas/workflow.openapi.json
+++ b/openapi/schemas/workflow.openapi.json
@@ -3567,47 +3567,19 @@
}
},
"securitySchemes": {
- "Bearer": {
- "type": "http",
- "description": "JWT Authorization header using the Bearer scheme",
- "scheme": "bearer",
- "bearerFormat": "Json Web Token"
- },
"OpenIdConnect": {
"type": "openIdConnect",
- "description": "OpenId Connect connection flow",
+ "description": "OpenID Connect connection flow",
"openIdConnectUrl": "https://auth.rabbitdata.ch/.well-known/openid-configuration"
- },
- "OAuth2": {
- "type": "oauth2",
- "description": "OAuth2 authorization header using the Bearer scheme",
- "flows": {
- "authorizationCode": {
- "authorizationUrl": "https://auth.rabbitdata.ch/connect/authorize",
- "tokenUrl": "https://auth.rabbitdata.ch/connect/token",
- "refreshUrl": "https://auth.rabbitdata.ch/connect/token",
- "scopes": {
- "openid": "OpenID",
- "profile": "Profile",
- "email": "Email"
- }
- }
- }
}
}
},
"security": [
{
- "Bearer": [ ],
"OpenIdConnect": [
"openid",
"profile",
"email"
- ],
- "OAuth2": [
- "openid",
- "profile",
- "email"
]
}
]
diff --git a/src/rapidata/api_client/api/asset_api.py b/src/rapidata/api_client/api/asset_api.py
index 6458c3097..13547a2a5 100644
--- a/src/rapidata/api_client/api/asset_api.py
+++ b/src/rapidata/api_client/api/asset_api.py
@@ -16,10 +16,9 @@
from typing import Any, Dict, List, Optional, Tuple, Union
from typing_extensions import Annotated
-from pydantic import Field, StrictBytes, StrictInt, StrictStr
+from pydantic import Field, StrictBool, StrictBytes, StrictInt, StrictStr
from typing import Optional, Tuple, Union
from typing_extensions import Annotated
-from rapidata.api_client.models.compression_library import CompressionLibrary
from rapidata.api_client.models.upload_file_endpoint_output import UploadFileEndpointOutput
from rapidata.api_client.models.upload_file_from_url_endpoint_output import UploadFileFromUrlEndpointOutput
@@ -45,7 +44,6 @@ def __init__(self, api_client=None) -> None:
def asset_compress_post(
self,
file: Union[StrictBytes, StrictStr, Tuple[StrictStr, StrictBytes]],
- library: Annotated[Optional[CompressionLibrary], Field(description="The compression library to use.")] = None,
quality: Annotated[Optional[StrictInt], Field(description="The compression quality from 1 to 100.")] = None,
maxdim: Annotated[Optional[StrictInt], Field(description="The maximum dimension (width or height) of the output image.")] = None,
_request_timeout: Union[
@@ -67,8 +65,6 @@ def asset_compress_post(
:param file: (required)
:type file: bytearray
- :param library: The compression library to use.
- :type library: CompressionLibrary
:param quality: The compression quality from 1 to 100.
:type quality: int
:param maxdim: The maximum dimension (width or height) of the output image.
@@ -97,7 +93,6 @@ def asset_compress_post(
_param = self._asset_compress_post_serialize(
file=file,
- library=library,
quality=quality,
maxdim=maxdim,
_request_auth=_request_auth,
@@ -127,7 +122,6 @@ def asset_compress_post(
def asset_compress_post_with_http_info(
self,
file: Union[StrictBytes, StrictStr, Tuple[StrictStr, StrictBytes]],
- library: Annotated[Optional[CompressionLibrary], Field(description="The compression library to use.")] = None,
quality: Annotated[Optional[StrictInt], Field(description="The compression quality from 1 to 100.")] = None,
maxdim: Annotated[Optional[StrictInt], Field(description="The maximum dimension (width or height) of the output image.")] = None,
_request_timeout: Union[
@@ -149,8 +143,6 @@ def asset_compress_post_with_http_info(
:param file: (required)
:type file: bytearray
- :param library: The compression library to use.
- :type library: CompressionLibrary
:param quality: The compression quality from 1 to 100.
:type quality: int
:param maxdim: The maximum dimension (width or height) of the output image.
@@ -179,7 +171,6 @@ def asset_compress_post_with_http_info(
_param = self._asset_compress_post_serialize(
file=file,
- library=library,
quality=quality,
maxdim=maxdim,
_request_auth=_request_auth,
@@ -209,7 +200,6 @@ def asset_compress_post_with_http_info(
def asset_compress_post_without_preload_content(
self,
file: Union[StrictBytes, StrictStr, Tuple[StrictStr, StrictBytes]],
- library: Annotated[Optional[CompressionLibrary], Field(description="The compression library to use.")] = None,
quality: Annotated[Optional[StrictInt], Field(description="The compression quality from 1 to 100.")] = None,
maxdim: Annotated[Optional[StrictInt], Field(description="The maximum dimension (width or height) of the output image.")] = None,
_request_timeout: Union[
@@ -231,8 +221,6 @@ def asset_compress_post_without_preload_content(
:param file: (required)
:type file: bytearray
- :param library: The compression library to use.
- :type library: CompressionLibrary
:param quality: The compression quality from 1 to 100.
:type quality: int
:param maxdim: The maximum dimension (width or height) of the output image.
@@ -261,7 +249,6 @@ def asset_compress_post_without_preload_content(
_param = self._asset_compress_post_serialize(
file=file,
- library=library,
quality=quality,
maxdim=maxdim,
_request_auth=_request_auth,
@@ -286,7 +273,6 @@ def asset_compress_post_without_preload_content(
def _asset_compress_post_serialize(
self,
file,
- library,
quality,
maxdim,
_request_auth,
@@ -311,10 +297,6 @@ def _asset_compress_post_serialize(
# process the path parameters
# process the query parameters
- if library is not None:
-
- _query_params.append(('library', library.value))
-
if quality is not None:
_query_params.append(('quality', quality))
@@ -355,9 +337,7 @@ def _asset_compress_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -382,6 +362,9 @@ def _asset_compress_post_serialize(
def asset_file_post(
self,
file: Union[StrictBytes, StrictStr, Tuple[StrictStr, StrictBytes]],
+ compress: Annotated[Optional[StrictBool], Field(description="When set, forces image compression on or off for this upload, overriding the configured default.")] = None,
+ quality: Annotated[Optional[StrictInt], Field(description="WebP quality (1..100) to use when compression runs. Falls back to the configured default when null.")] = None,
+ maxdim: Annotated[Optional[StrictInt], Field(description="Maximum width or height in pixels when compression runs. Falls back to the configured default when null.")] = None,
_request_timeout: Union[
None,
Annotated[StrictFloat, Field(gt=0)],
@@ -400,6 +383,12 @@ def asset_file_post(
:param file: (required)
:type file: bytearray
+ :param compress: When set, forces image compression on or off for this upload, overriding the configured default.
+ :type compress: bool
+ :param quality: WebP quality (1..100) to use when compression runs. Falls back to the configured default when null.
+ :type quality: int
+ :param maxdim: Maximum width or height in pixels when compression runs. Falls back to the configured default when null.
+ :type maxdim: int
: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
@@ -424,6 +413,9 @@ def asset_file_post(
_param = self._asset_file_post_serialize(
file=file,
+ compress=compress,
+ quality=quality,
+ maxdim=maxdim,
_request_auth=_request_auth,
_content_type=_content_type,
_headers=_headers,
@@ -451,6 +443,9 @@ def asset_file_post(
def asset_file_post_with_http_info(
self,
file: Union[StrictBytes, StrictStr, Tuple[StrictStr, StrictBytes]],
+ compress: Annotated[Optional[StrictBool], Field(description="When set, forces image compression on or off for this upload, overriding the configured default.")] = None,
+ quality: Annotated[Optional[StrictInt], Field(description="WebP quality (1..100) to use when compression runs. Falls back to the configured default when null.")] = None,
+ maxdim: Annotated[Optional[StrictInt], Field(description="Maximum width or height in pixels when compression runs. Falls back to the configured default when null.")] = None,
_request_timeout: Union[
None,
Annotated[StrictFloat, Field(gt=0)],
@@ -469,6 +464,12 @@ def asset_file_post_with_http_info(
:param file: (required)
:type file: bytearray
+ :param compress: When set, forces image compression on or off for this upload, overriding the configured default.
+ :type compress: bool
+ :param quality: WebP quality (1..100) to use when compression runs. Falls back to the configured default when null.
+ :type quality: int
+ :param maxdim: Maximum width or height in pixels when compression runs. Falls back to the configured default when null.
+ :type maxdim: int
: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
@@ -493,6 +494,9 @@ def asset_file_post_with_http_info(
_param = self._asset_file_post_serialize(
file=file,
+ compress=compress,
+ quality=quality,
+ maxdim=maxdim,
_request_auth=_request_auth,
_content_type=_content_type,
_headers=_headers,
@@ -520,6 +524,9 @@ def asset_file_post_with_http_info(
def asset_file_post_without_preload_content(
self,
file: Union[StrictBytes, StrictStr, Tuple[StrictStr, StrictBytes]],
+ compress: Annotated[Optional[StrictBool], Field(description="When set, forces image compression on or off for this upload, overriding the configured default.")] = None,
+ quality: Annotated[Optional[StrictInt], Field(description="WebP quality (1..100) to use when compression runs. Falls back to the configured default when null.")] = None,
+ maxdim: Annotated[Optional[StrictInt], Field(description="Maximum width or height in pixels when compression runs. Falls back to the configured default when null.")] = None,
_request_timeout: Union[
None,
Annotated[StrictFloat, Field(gt=0)],
@@ -538,6 +545,12 @@ def asset_file_post_without_preload_content(
:param file: (required)
:type file: bytearray
+ :param compress: When set, forces image compression on or off for this upload, overriding the configured default.
+ :type compress: bool
+ :param quality: WebP quality (1..100) to use when compression runs. Falls back to the configured default when null.
+ :type quality: int
+ :param maxdim: Maximum width or height in pixels when compression runs. Falls back to the configured default when null.
+ :type maxdim: int
: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
@@ -562,6 +575,9 @@ def asset_file_post_without_preload_content(
_param = self._asset_file_post_serialize(
file=file,
+ compress=compress,
+ quality=quality,
+ maxdim=maxdim,
_request_auth=_request_auth,
_content_type=_content_type,
_headers=_headers,
@@ -584,6 +600,9 @@ def asset_file_post_without_preload_content(
def _asset_file_post_serialize(
self,
file,
+ compress,
+ quality,
+ maxdim,
_request_auth,
_content_type,
_headers,
@@ -606,6 +625,18 @@ def _asset_file_post_serialize(
# process the path parameters
# process the query parameters
+ if compress is not None:
+
+ _query_params.append(('compress', compress))
+
+ if quality is not None:
+
+ _query_params.append(('quality', quality))
+
+ if maxdim is not None:
+
+ _query_params.append(('maxdim', maxdim))
+
# process the header parameters
# process the form parameters
if file is not None:
@@ -637,9 +668,7 @@ def _asset_file_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -664,6 +693,9 @@ def _asset_file_post_serialize(
def asset_url_post(
self,
url: Annotated[StrictStr, Field(description="The url of the file to upload.")],
+ compress: Annotated[Optional[StrictBool], Field(description="When set, forces image compression on or off for this upload, overriding the configured default.")] = None,
+ quality: Annotated[Optional[StrictInt], Field(description="WebP quality (1..100) to use when compression runs. Falls back to the configured default when null.")] = None,
+ maxdim: Annotated[Optional[StrictInt], Field(description="Maximum width or height in pixels when compression runs. Falls back to the configured default when null.")] = None,
_request_timeout: Union[
None,
Annotated[StrictFloat, Field(gt=0)],
@@ -682,6 +714,12 @@ def asset_url_post(
:param url: The url of the file to upload. (required)
:type url: str
+ :param compress: When set, forces image compression on or off for this upload, overriding the configured default.
+ :type compress: bool
+ :param quality: WebP quality (1..100) to use when compression runs. Falls back to the configured default when null.
+ :type quality: int
+ :param maxdim: Maximum width or height in pixels when compression runs. Falls back to the configured default when null.
+ :type maxdim: int
: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
@@ -706,6 +744,9 @@ def asset_url_post(
_param = self._asset_url_post_serialize(
url=url,
+ compress=compress,
+ quality=quality,
+ maxdim=maxdim,
_request_auth=_request_auth,
_content_type=_content_type,
_headers=_headers,
@@ -733,6 +774,9 @@ def asset_url_post(
def asset_url_post_with_http_info(
self,
url: Annotated[StrictStr, Field(description="The url of the file to upload.")],
+ compress: Annotated[Optional[StrictBool], Field(description="When set, forces image compression on or off for this upload, overriding the configured default.")] = None,
+ quality: Annotated[Optional[StrictInt], Field(description="WebP quality (1..100) to use when compression runs. Falls back to the configured default when null.")] = None,
+ maxdim: Annotated[Optional[StrictInt], Field(description="Maximum width or height in pixels when compression runs. Falls back to the configured default when null.")] = None,
_request_timeout: Union[
None,
Annotated[StrictFloat, Field(gt=0)],
@@ -751,6 +795,12 @@ def asset_url_post_with_http_info(
:param url: The url of the file to upload. (required)
:type url: str
+ :param compress: When set, forces image compression on or off for this upload, overriding the configured default.
+ :type compress: bool
+ :param quality: WebP quality (1..100) to use when compression runs. Falls back to the configured default when null.
+ :type quality: int
+ :param maxdim: Maximum width or height in pixels when compression runs. Falls back to the configured default when null.
+ :type maxdim: int
: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
@@ -775,6 +825,9 @@ def asset_url_post_with_http_info(
_param = self._asset_url_post_serialize(
url=url,
+ compress=compress,
+ quality=quality,
+ maxdim=maxdim,
_request_auth=_request_auth,
_content_type=_content_type,
_headers=_headers,
@@ -802,6 +855,9 @@ def asset_url_post_with_http_info(
def asset_url_post_without_preload_content(
self,
url: Annotated[StrictStr, Field(description="The url of the file to upload.")],
+ compress: Annotated[Optional[StrictBool], Field(description="When set, forces image compression on or off for this upload, overriding the configured default.")] = None,
+ quality: Annotated[Optional[StrictInt], Field(description="WebP quality (1..100) to use when compression runs. Falls back to the configured default when null.")] = None,
+ maxdim: Annotated[Optional[StrictInt], Field(description="Maximum width or height in pixels when compression runs. Falls back to the configured default when null.")] = None,
_request_timeout: Union[
None,
Annotated[StrictFloat, Field(gt=0)],
@@ -820,6 +876,12 @@ def asset_url_post_without_preload_content(
:param url: The url of the file to upload. (required)
:type url: str
+ :param compress: When set, forces image compression on or off for this upload, overriding the configured default.
+ :type compress: bool
+ :param quality: WebP quality (1..100) to use when compression runs. Falls back to the configured default when null.
+ :type quality: int
+ :param maxdim: Maximum width or height in pixels when compression runs. Falls back to the configured default when null.
+ :type maxdim: int
: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
@@ -844,6 +906,9 @@ def asset_url_post_without_preload_content(
_param = self._asset_url_post_serialize(
url=url,
+ compress=compress,
+ quality=quality,
+ maxdim=maxdim,
_request_auth=_request_auth,
_content_type=_content_type,
_headers=_headers,
@@ -866,6 +931,9 @@ def asset_url_post_without_preload_content(
def _asset_url_post_serialize(
self,
url,
+ compress,
+ quality,
+ maxdim,
_request_auth,
_content_type,
_headers,
@@ -892,6 +960,18 @@ def _asset_url_post_serialize(
_query_params.append(('url', url))
+ if compress is not None:
+
+ _query_params.append(('compress', compress))
+
+ if quality is not None:
+
+ _query_params.append(('quality', quality))
+
+ if maxdim is not None:
+
+ _query_params.append(('maxdim', maxdim))
+
# process the header parameters
# process the form parameters
# process the body parameter
@@ -908,9 +988,7 @@ def _asset_url_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
diff --git a/src/rapidata/api_client/api/audience_api.py b/src/rapidata/api_client/api/audience_api.py
index 492810491..623e10e37 100644
--- a/src/rapidata/api_client/api/audience_api.py
+++ b/src/rapidata/api_client/api/audience_api.py
@@ -333,9 +333,7 @@ def _audience_audience_id_boost_config_patch_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -602,9 +600,7 @@ def _audience_audience_id_delete_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -871,9 +867,7 @@ def _audience_audience_id_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -1140,9 +1134,7 @@ def _audience_audience_id_inactivity_sync_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -1412,9 +1404,7 @@ def _audience_audience_id_inactivity_sync_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -1709,9 +1699,7 @@ def _audience_audience_id_initialize_users_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -2135,9 +2123,7 @@ def _audience_audience_id_jobs_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -2432,9 +2418,7 @@ def _audience_audience_id_owner_patch_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -2729,9 +2713,7 @@ def _audience_audience_id_patch_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -2998,9 +2980,7 @@ def _audience_audience_id_pause_distillation_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -3270,9 +3250,7 @@ def _audience_audience_id_rebuild_distilling_campaign_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -3567,9 +3545,7 @@ def _audience_audience_id_recreate_external_audiences_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -3836,9 +3812,7 @@ def _audience_audience_id_recruit_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -4105,9 +4079,7 @@ def _audience_audience_id_resume_distillation_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -4374,9 +4346,7 @@ def _audience_audience_id_state_recalculation_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -4646,9 +4616,7 @@ def _audience_audience_id_state_recalculation_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -4915,9 +4883,7 @@ def _audience_audience_id_user_metrics_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -5212,9 +5178,7 @@ def _audience_base_audience_id_filter_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -5481,9 +5445,7 @@ def _audience_inactivity_sync_sync_id_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -5763,9 +5725,7 @@ def _audience_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -6032,9 +5992,7 @@ def _audience_state_recalculation_recalculation_id_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -6464,9 +6422,7 @@ def _audiences_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
diff --git a/src/rapidata/api_client/api/batch_upload_api.py b/src/rapidata/api_client/api/batch_upload_api.py
index 2f31b1ec7..68f7670d8 100644
--- a/src/rapidata/api_client/api/batch_upload_api.py
+++ b/src/rapidata/api_client/api/batch_upload_api.py
@@ -291,9 +291,7 @@ def _asset_batch_upload_batch_upload_id_abort_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -560,9 +558,7 @@ def _asset_batch_upload_batch_upload_id_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -845,9 +841,7 @@ def _asset_batch_upload_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -1134,9 +1128,7 @@ def _asset_batch_upload_status_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
diff --git a/src/rapidata/api_client/api/benchmark_api.py b/src/rapidata/api_client/api/benchmark_api.py
index 528ab539a..adfa07a0a 100644
--- a/src/rapidata/api_client/api/benchmark_api.py
+++ b/src/rapidata/api_client/api/benchmark_api.py
@@ -305,9 +305,7 @@ def _benchmark_benchmark_id_delete_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -574,9 +572,7 @@ def _benchmark_benchmark_id_fork_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -843,9 +839,7 @@ def _benchmark_benchmark_id_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -1206,9 +1200,7 @@ def _benchmark_benchmark_id_leaderboards_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -1549,9 +1541,7 @@ def _benchmark_benchmark_id_matrix_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -1846,9 +1836,7 @@ def _benchmark_benchmark_id_name_put_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -2130,9 +2118,7 @@ def _benchmark_benchmark_id_participant_participant_id_delete_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -2514,9 +2500,7 @@ def _benchmark_benchmark_id_participants_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -2798,9 +2782,7 @@ def _benchmark_benchmark_id_participants_participant_id_submit_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -3095,9 +3077,7 @@ def _benchmark_benchmark_id_participants_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -3392,9 +3372,7 @@ def _benchmark_benchmark_id_patch_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -3689,9 +3667,7 @@ def _benchmark_benchmark_id_prompt_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -4052,9 +4028,7 @@ def _benchmark_benchmark_id_prompts_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -4409,9 +4383,7 @@ def _benchmark_benchmark_id_standings_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -4678,9 +4650,7 @@ def _benchmark_benchmark_id_tags_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -4967,9 +4937,7 @@ def _benchmark_combined_matrix_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -5273,9 +5241,7 @@ def _benchmark_combined_standings_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -5555,9 +5521,7 @@ def _benchmark_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -5945,9 +5909,7 @@ def _benchmarks_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
diff --git a/src/rapidata/api_client/api/cache_api.py b/src/rapidata/api_client/api/cache_api.py
index c43fa3786..44a5c25e7 100644
--- a/src/rapidata/api_client/api/cache_api.py
+++ b/src/rapidata/api_client/api/cache_api.py
@@ -268,9 +268,7 @@ def _campaign_cache_campaigns_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -522,9 +520,7 @@ def _campaign_cache_user_scores_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
diff --git a/src/rapidata/api_client/api/campaign_api.py b/src/rapidata/api_client/api/campaign_api.py
index 096f5443f..62e293ecc 100644
--- a/src/rapidata/api_client/api/campaign_api.py
+++ b/src/rapidata/api_client/api/campaign_api.py
@@ -297,9 +297,7 @@ def _campaign_boost_external_campaign_id_fast_bid_multiplier_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -597,9 +595,7 @@ def _campaign_boost_external_campaign_id_fast_bid_multiplier_put_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -879,9 +875,7 @@ def _campaign_boost_global_level_put_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -1133,9 +1127,7 @@ def _campaign_boost_insights_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -1387,9 +1379,7 @@ def _campaign_boost_preheat_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -1641,9 +1631,7 @@ def _campaign_boost_status_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -1910,9 +1898,7 @@ def _campaign_campaign_id_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -2207,9 +2193,7 @@ def _campaign_campaign_id_patch_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -2476,9 +2460,7 @@ def _campaign_campaign_id_pause_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -2745,9 +2727,7 @@ def _campaign_campaign_id_resume_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -2993,9 +2973,7 @@ def _campaign_monitor_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -3425,9 +3403,7 @@ def _campaigns_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
diff --git a/src/rapidata/api_client/api/client_api.py b/src/rapidata/api_client/api/client_api.py
index 8fd9134d1..0135b5544 100644
--- a/src/rapidata/api_client/api/client_api.py
+++ b/src/rapidata/api_client/api/client_api.py
@@ -290,9 +290,7 @@ def _client_client_id_delete_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -572,9 +570,7 @@ def _client_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -841,9 +837,7 @@ def _client_register_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -1213,9 +1207,7 @@ def _clients_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -1482,9 +1474,7 @@ def _identity_get_client_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
diff --git a/src/rapidata/api_client/api/customer_api.py b/src/rapidata/api_client/api/customer_api.py
index 419179672..f32f8b8ce 100644
--- a/src/rapidata/api_client/api/customer_api.py
+++ b/src/rapidata/api_client/api/customer_api.py
@@ -410,9 +410,7 @@ def _customers_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
diff --git a/src/rapidata/api_client/api/customer_rapid_api.py b/src/rapidata/api_client/api/customer_rapid_api.py
index 2f49971f4..049bd413e 100644
--- a/src/rapidata/api_client/api/customer_rapid_api.py
+++ b/src/rapidata/api_client/api/customer_rapid_api.py
@@ -440,9 +440,7 @@ def _rapid_correlation_id_validation_potential_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -722,9 +720,7 @@ def _rapid_demographic_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -976,9 +972,7 @@ def _rapid_global_responses_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -1245,9 +1239,7 @@ def _rapid_rapid_id_delete_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -1514,9 +1506,7 @@ def _rapid_rapid_id_responses_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -1786,9 +1776,7 @@ def _rapid_rapid_id_unflag_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -2083,9 +2071,7 @@ def _rapid_validation_rapid_id_patch_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -2494,9 +2480,7 @@ def _rapids_flagged_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
diff --git a/src/rapidata/api_client/api/datapoints_api.py b/src/rapidata/api_client/api/datapoints_api.py
index cf4ad3dd5..05c991f42 100644
--- a/src/rapidata/api_client/api/datapoints_api.py
+++ b/src/rapidata/api_client/api/datapoints_api.py
@@ -290,9 +290,7 @@ def _datapoint_datapoint_id_delete_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -559,9 +557,7 @@ def _datapoint_datapoint_id_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -856,9 +852,7 @@ def _dataset_dataset_id_datapoint_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -1128,9 +1122,7 @@ def _dataset_dataset_id_datapoints_failed_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -1491,9 +1483,7 @@ def _dataset_dataset_id_datapoints_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
diff --git a/src/rapidata/api_client/api/dataset_api.py b/src/rapidata/api_client/api/dataset_api.py
index d3a56e6fb..7e431b445 100644
--- a/src/rapidata/api_client/api/dataset_api.py
+++ b/src/rapidata/api_client/api/dataset_api.py
@@ -288,9 +288,7 @@ def _dataset_dataset_id_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -585,9 +583,7 @@ def _dataset_dataset_id_name_patch_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -854,9 +850,7 @@ def _dataset_dataset_id_progress_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -1136,9 +1130,7 @@ def _dataset_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
diff --git a/src/rapidata/api_client/api/dataset_group_api.py b/src/rapidata/api_client/api/dataset_group_api.py
index 3763fe90f..863cc6f7c 100644
--- a/src/rapidata/api_client/api/dataset_group_api.py
+++ b/src/rapidata/api_client/api/dataset_group_api.py
@@ -312,9 +312,7 @@ def _dataset_dataset_id_group_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
diff --git a/src/rapidata/api_client/api/evaluation_api.py b/src/rapidata/api_client/api/evaluation_api.py
index b1c080b29..04c21fa6a 100644
--- a/src/rapidata/api_client/api/evaluation_api.py
+++ b/src/rapidata/api_client/api/evaluation_api.py
@@ -356,9 +356,7 @@ def _workflow_evaluation_workflow_id_results_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
diff --git a/src/rapidata/api_client/api/examples_api.py b/src/rapidata/api_client/api/examples_api.py
index 9d62806e4..d3bc6607f 100644
--- a/src/rapidata/api_client/api/examples_api.py
+++ b/src/rapidata/api_client/api/examples_api.py
@@ -333,9 +333,7 @@ def _audience_audience_id_example_example_id_patch_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -630,9 +628,7 @@ def _audience_audience_id_example_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -993,9 +989,7 @@ def _audience_audience_id_examples_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -1262,9 +1256,7 @@ def _audience_example_example_id_delete_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
diff --git a/src/rapidata/api_client/api/external_audience_api.py b/src/rapidata/api_client/api/external_audience_api.py
index db76e8079..da0f51558 100644
--- a/src/rapidata/api_client/api/external_audience_api.py
+++ b/src/rapidata/api_client/api/external_audience_api.py
@@ -386,9 +386,7 @@ def _campaign_external_audiences_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -640,9 +638,7 @@ def _campaign_external_audiences_sync_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
diff --git a/src/rapidata/api_client/api/feedback_api.py b/src/rapidata/api_client/api/feedback_api.py
index a2fca355f..5a74a22ae 100644
--- a/src/rapidata/api_client/api/feedback_api.py
+++ b/src/rapidata/api_client/api/feedback_api.py
@@ -297,9 +297,7 @@ def _feedback_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
diff --git a/src/rapidata/api_client/api/flow_api.py b/src/rapidata/api_client/api/flow_api.py
index 9fda572c7..67d6c0fa1 100644
--- a/src/rapidata/api_client/api/flow_api.py
+++ b/src/rapidata/api_client/api/flow_api.py
@@ -292,9 +292,7 @@ def _flow_flow_id_delete_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -561,9 +559,7 @@ def _flow_flow_id_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -909,9 +905,7 @@ def _flow_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -1247,9 +1241,7 @@ def _flow_ranking_flow_id_completion_time_histogram_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -1585,9 +1577,7 @@ def _flow_ranking_flow_id_flow_item_creation_timeseries_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -1923,9 +1913,7 @@ def _flow_ranking_flow_id_response_count_histogram_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -2261,9 +2249,7 @@ def _flow_ranking_flow_id_response_count_timeseries_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
diff --git a/src/rapidata/api_client/api/flow_item_api.py b/src/rapidata/api_client/api/flow_item_api.py
index 829cc3256..7c670fd04 100644
--- a/src/rapidata/api_client/api/flow_item_api.py
+++ b/src/rapidata/api_client/api/flow_item_api.py
@@ -283,9 +283,7 @@ def _flow_item_flow_item_id_stop_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
diff --git a/src/rapidata/api_client/api/grouped_ranking_api.py b/src/rapidata/api_client/api/grouped_ranking_api.py
index f3ef50de2..33623b06a 100644
--- a/src/rapidata/api_client/api/grouped_ranking_api.py
+++ b/src/rapidata/api_client/api/grouped_ranking_api.py
@@ -401,9 +401,7 @@ def _workflow_grouped_ranking_workflow_id_results_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
diff --git a/src/rapidata/api_client/api/identity_api.py b/src/rapidata/api_client/api/identity_api.py
index 68754d758..a4f8f1528 100644
--- a/src/rapidata/api_client/api/identity_api.py
+++ b/src/rapidata/api_client/api/identity_api.py
@@ -289,9 +289,7 @@ def _identity_bridge_token_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -563,9 +561,7 @@ def _identity_bridge_token_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -848,9 +844,7 @@ def _identity_google_one_tap_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -1103,9 +1097,7 @@ def _identity_referrer_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
diff --git a/src/rapidata/api_client/api/job_api.py b/src/rapidata/api_client/api/job_api.py
index 74884ebe4..52dac1904 100644
--- a/src/rapidata/api_client/api/job_api.py
+++ b/src/rapidata/api_client/api/job_api.py
@@ -299,9 +299,7 @@ def _job_definition_definition_id_delete_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -568,9 +566,7 @@ def _job_definition_definition_id_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -865,9 +861,7 @@ def _job_definition_definition_id_patch_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -1134,9 +1128,7 @@ def _job_definition_definition_id_revision_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -1434,9 +1426,7 @@ def _job_definition_definition_id_revision_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -1718,9 +1708,7 @@ def _job_definition_definition_id_revision_revision_number_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -2102,9 +2090,7 @@ def _job_definition_definition_id_revisions_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -2387,9 +2373,7 @@ def _job_definition_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -2822,9 +2806,7 @@ def _job_definitions_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -3091,9 +3073,7 @@ def _job_job_id_delete_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -3357,9 +3337,7 @@ def _job_job_id_download_results_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -3626,9 +3604,7 @@ def _job_job_id_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -3923,9 +3899,7 @@ def _job_job_id_patch_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -4192,9 +4166,7 @@ def _job_job_id_results_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -4477,9 +4449,7 @@ def _job_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -4912,9 +4882,7 @@ def _jobs_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
diff --git a/src/rapidata/api_client/api/leaderboard_api.py b/src/rapidata/api_client/api/leaderboard_api.py
index d5527887c..9218d65cc 100644
--- a/src/rapidata/api_client/api/leaderboard_api.py
+++ b/src/rapidata/api_client/api/leaderboard_api.py
@@ -320,9 +320,7 @@ def _benchmark_standing_leaderboard_id_participant_id_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -609,9 +607,7 @@ def _leaderboard_combined_matrix_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -915,9 +911,7 @@ def _leaderboard_combined_standings_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -1212,9 +1206,7 @@ def _leaderboard_leaderboard_id_boost_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -1481,9 +1473,7 @@ def _leaderboard_leaderboard_id_delete_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -1750,9 +1740,7 @@ def _leaderboard_leaderboard_id_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -2057,9 +2045,7 @@ def _leaderboard_leaderboard_id_matrix_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -2354,9 +2340,7 @@ def _leaderboard_leaderboard_id_name_put_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -2638,9 +2622,7 @@ def _leaderboard_leaderboard_id_participant_participant_id_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -2907,9 +2889,7 @@ def _leaderboard_leaderboard_id_participants_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -3191,9 +3171,7 @@ def _leaderboard_leaderboard_id_participants_participant_id_submit_post_serializ
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -3488,9 +3466,7 @@ def _leaderboard_leaderboard_id_participants_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -3785,9 +3761,7 @@ def _leaderboard_leaderboard_id_patch_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -4082,9 +4056,7 @@ def _leaderboard_leaderboard_id_prompts_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -4379,9 +4351,7 @@ def _leaderboard_leaderboard_id_response_config_put_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -4805,9 +4775,7 @@ def _leaderboard_leaderboard_id_runs_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -5126,9 +5094,7 @@ def _leaderboard_leaderboard_id_standings_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -5408,9 +5374,7 @@ def _leaderboard_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -5798,9 +5762,7 @@ def _leaderboards_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
diff --git a/src/rapidata/api_client/api/newsletter_api.py b/src/rapidata/api_client/api/newsletter_api.py
index 6a3568f8f..83633b53a 100644
--- a/src/rapidata/api_client/api/newsletter_api.py
+++ b/src/rapidata/api_client/api/newsletter_api.py
@@ -298,9 +298,7 @@ def _newsletter_subscribe_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -580,9 +578,7 @@ def _newsletter_unsubscribe_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
diff --git a/src/rapidata/api_client/api/order_api.py b/src/rapidata/api_client/api/order_api.py
index d016ef2c6..585f9f7d1 100644
--- a/src/rapidata/api_client/api/order_api.py
+++ b/src/rapidata/api_client/api/order_api.py
@@ -313,9 +313,7 @@ def _order_complex_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -582,9 +580,7 @@ def _order_order_id_approve_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -882,9 +878,7 @@ def _order_order_id_clone_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -1151,9 +1145,7 @@ def _order_order_id_delete_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -1437,9 +1429,7 @@ def _order_order_id_demo_patch_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -1703,9 +1693,7 @@ def _order_order_id_download_results_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -1972,9 +1960,7 @@ def _order_order_id_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -2269,9 +2255,7 @@ def _order_order_id_patch_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -2538,9 +2522,7 @@ def _order_order_id_pause_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -2835,9 +2817,7 @@ def _order_order_id_preview_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -3104,9 +3084,7 @@ def _order_order_id_results_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -3373,9 +3351,7 @@ def _order_order_id_resume_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -3642,9 +3618,7 @@ def _order_order_id_retry_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -3928,9 +3902,7 @@ def _order_order_id_share_patch_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -4228,9 +4200,7 @@ def _order_order_id_submit_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -4500,9 +4470,7 @@ def _order_order_id_unlock_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -4785,9 +4753,7 @@ def _order_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -5067,9 +5033,7 @@ def _order_unsupported_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -5436,9 +5400,7 @@ def _orders_aggregated_overview_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -5847,9 +5809,7 @@ def _orders_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -6101,9 +6061,7 @@ def _orders_public_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
diff --git a/src/rapidata/api_client/api/organization_api.py b/src/rapidata/api_client/api/organization_api.py
index f622f44f2..8132ac348 100644
--- a/src/rapidata/api_client/api/organization_api.py
+++ b/src/rapidata/api_client/api/organization_api.py
@@ -386,9 +386,7 @@ def _organizations_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
diff --git a/src/rapidata/api_client/api/participant_api.py b/src/rapidata/api_client/api/participant_api.py
index db22e2b85..8eb679170 100644
--- a/src/rapidata/api_client/api/participant_api.py
+++ b/src/rapidata/api_client/api/participant_api.py
@@ -291,9 +291,7 @@ def _participant_participant_id_delete_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -560,9 +558,7 @@ def _participant_participant_id_disable_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -829,9 +825,7 @@ def _participant_participant_id_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -1126,9 +1120,7 @@ def _participant_participant_id_name_put_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -1423,9 +1415,7 @@ def _participant_participant_id_patch_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -1720,9 +1710,7 @@ def _participant_participant_id_sample_new_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -2017,9 +2005,7 @@ def _participant_participant_id_sample_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -2286,9 +2272,7 @@ def _participant_sample_sample_id_delete_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -2555,9 +2539,7 @@ def _participants_participant_id_submit_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
diff --git a/src/rapidata/api_client/api/pipeline_api.py b/src/rapidata/api_client/api/pipeline_api.py
index a4b7d26ca..5c1e5f03b 100644
--- a/src/rapidata/api_client/api/pipeline_api.py
+++ b/src/rapidata/api_client/api/pipeline_api.py
@@ -286,9 +286,7 @@ def _pipeline_pipeline_id_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -583,9 +581,7 @@ def _pipeline_pipeline_id_preliminary_download_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -858,9 +854,7 @@ def _pipeline_preliminary_download_preliminary_download_id_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
diff --git a/src/rapidata/api_client/api/prompt_api.py b/src/rapidata/api_client/api/prompt_api.py
index 5969db8cd..d170dde92 100644
--- a/src/rapidata/api_client/api/prompt_api.py
+++ b/src/rapidata/api_client/api/prompt_api.py
@@ -312,9 +312,7 @@ def _benchmark_prompt_prompt_id_tags_put_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
diff --git a/src/rapidata/api_client/api/ranking_api.py b/src/rapidata/api_client/api/ranking_api.py
index fbe288f4e..a89b17178 100644
--- a/src/rapidata/api_client/api/ranking_api.py
+++ b/src/rapidata/api_client/api/ranking_api.py
@@ -337,9 +337,7 @@ def _workflow_compare_workflow_id_results_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
diff --git a/src/rapidata/api_client/api/ranking_flow_api.py b/src/rapidata/api_client/api/ranking_flow_api.py
index c2df44f0a..305750eac 100644
--- a/src/rapidata/api_client/api/ranking_flow_api.py
+++ b/src/rapidata/api_client/api/ranking_flow_api.py
@@ -314,9 +314,7 @@ def _flow_ranking_flow_id_config_patch_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -596,9 +594,7 @@ def _flow_ranking_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
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 2836f7a31..2b2327324 100644
--- a/src/rapidata/api_client/api/ranking_flow_item_api.py
+++ b/src/rapidata/api_client/api/ranking_flow_item_api.py
@@ -385,9 +385,7 @@ def _flow_ranking_flow_id_item_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -682,9 +680,7 @@ def _flow_ranking_flow_id_item_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -951,9 +947,7 @@ def _flow_ranking_item_flow_item_id_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -1226,9 +1220,7 @@ def _flow_ranking_item_flow_item_id_results_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -1501,9 +1493,7 @@ def _flow_ranking_item_flow_item_id_vote_matrix_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
diff --git a/src/rapidata/api_client/api/rapid_api.py b/src/rapidata/api_client/api/rapid_api.py
index 31db7098c..fc35cdf81 100644
--- a/src/rapidata/api_client/api/rapid_api.py
+++ b/src/rapidata/api_client/api/rapid_api.py
@@ -286,9 +286,7 @@ def _rapid_rapid_id_reject_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
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 87a80597b..3cc8a4d2e 100644
--- a/src/rapidata/api_client/api/rapidata_identity_api_api.py
+++ b/src/rapidata/api_client/api/rapidata_identity_api_api.py
@@ -250,9 +250,7 @@ def _root_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
diff --git a/src/rapidata/api_client/api/sample_api.py b/src/rapidata/api_client/api/sample_api.py
index 96c98a772..1a40b76b7 100644
--- a/src/rapidata/api_client/api/sample_api.py
+++ b/src/rapidata/api_client/api/sample_api.py
@@ -419,9 +419,7 @@ def _benchmark_benchmark_id_samples_identifier_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -688,9 +686,7 @@ def _benchmark_sample_sample_id_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -957,9 +953,7 @@ def _benchmark_sample_sample_id_navigation_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -1337,9 +1331,7 @@ def _participant_participant_id_samples_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
diff --git a/src/rapidata/api_client/api/simple_workflow_api.py b/src/rapidata/api_client/api/simple_workflow_api.py
index b829093ed..4a03d4743 100644
--- a/src/rapidata/api_client/api/simple_workflow_api.py
+++ b/src/rapidata/api_client/api/simple_workflow_api.py
@@ -356,9 +356,7 @@ def _workflow_simple_workflow_id_results_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
diff --git a/src/rapidata/api_client/api/survey_api.py b/src/rapidata/api_client/api/survey_api.py
index 91530f660..44feb6142 100644
--- a/src/rapidata/api_client/api/survey_api.py
+++ b/src/rapidata/api_client/api/survey_api.py
@@ -297,9 +297,7 @@ def _identity_survey_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
diff --git a/src/rapidata/api_client/api/translation_api.py b/src/rapidata/api_client/api/translation_api.py
index 9265f5bad..5d8ea26b1 100644
--- a/src/rapidata/api_client/api/translation_api.py
+++ b/src/rapidata/api_client/api/translation_api.py
@@ -300,9 +300,7 @@ def _translation_ensure_english_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -582,9 +580,7 @@ def _translation_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
diff --git a/src/rapidata/api_client/api/user_rapid_api.py b/src/rapidata/api_client/api/user_rapid_api.py
index a4ba2db8d..4ed996a82 100644
--- a/src/rapidata/api_client/api/user_rapid_api.py
+++ b/src/rapidata/api_client/api/user_rapid_api.py
@@ -275,9 +275,7 @@ def _rapid_rapid_bag_is_valid_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -572,9 +570,7 @@ def _rapid_rapid_id_report_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -841,9 +837,7 @@ def _rapid_report_report_id_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -1123,9 +1117,7 @@ def _rapid_response_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -1405,9 +1397,7 @@ def _rapid_skip_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
diff --git a/src/rapidata/api_client/api/validation_feedback_api.py b/src/rapidata/api_client/api/validation_feedback_api.py
index f1e5c11c5..0866dbd3e 100644
--- a/src/rapidata/api_client/api/validation_feedback_api.py
+++ b/src/rapidata/api_client/api/validation_feedback_api.py
@@ -402,9 +402,7 @@ def _rapid_rapid_id_validation_feedback_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -699,9 +697,7 @@ def _rapid_rapid_id_validation_feedback_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
diff --git a/src/rapidata/api_client/api/validation_set_api.py b/src/rapidata/api_client/api/validation_set_api.py
index 06a78e562..03ce51e07 100644
--- a/src/rapidata/api_client/api/validation_set_api.py
+++ b/src/rapidata/api_client/api/validation_set_api.py
@@ -309,9 +309,7 @@ def _validation_set_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -634,9 +632,7 @@ def _validation_set_recommended_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -903,9 +899,7 @@ def _validation_set_validation_set_id_delete_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -1200,9 +1194,7 @@ def _validation_set_validation_set_id_dimensions_patch_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -1453,9 +1445,7 @@ def _validation_set_validation_set_id_export_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -1722,9 +1712,7 @@ def _validation_set_validation_set_id_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -2019,9 +2007,7 @@ def _validation_set_validation_set_id_patch_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -2316,9 +2302,7 @@ def _validation_set_validation_set_id_rapid_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -2700,9 +2684,7 @@ def _validation_set_validation_set_id_rapids_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -2997,9 +2979,7 @@ def _validation_set_validation_set_id_should_alert_patch_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -3253,9 +3233,7 @@ def _validation_set_validation_set_id_update_labeling_hints_post_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -3542,9 +3520,7 @@ def _validation_set_validation_set_id_visibility_patch_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -3796,9 +3772,7 @@ def _validation_sets_available_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -4291,9 +4265,7 @@ def _validation_sets_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
diff --git a/src/rapidata/api_client/api/workflow_api.py b/src/rapidata/api_client/api/workflow_api.py
index 36e1a1ee0..27dec44d8 100644
--- a/src/rapidata/api_client/api/workflow_api.py
+++ b/src/rapidata/api_client/api/workflow_api.py
@@ -308,9 +308,7 @@ def _workflow_workflow_id_compare_ab_summary_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -577,9 +575,7 @@ def _workflow_workflow_id_delete_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -846,9 +842,7 @@ def _workflow_workflow_id_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -1115,9 +1109,7 @@ def _workflow_workflow_id_progress_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -1418,9 +1410,7 @@ def _workflow_workflow_id_responses_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
@@ -1808,9 +1798,7 @@ def _workflows_get_serialize(
# authentication setting
_auth_settings: List[str] = [
- 'OAuth2',
- 'OpenIdConnect',
- 'Bearer'
+ 'OpenIdConnect'
]
return self.api_client.param_serialize(
diff --git a/src/rapidata/api_client/configuration.py b/src/rapidata/api_client/configuration.py
index 0486dbd6c..b771791b2 100644
--- a/src/rapidata/api_client/configuration.py
+++ b/src/rapidata/api_client/configuration.py
@@ -374,21 +374,6 @@ def auth_settings(self):
:return: The Auth Settings information dict.
"""
auth = {}
- if self.access_token is not None:
- auth['Bearer'] = {
- 'type': 'bearer',
- 'in': 'header',
- 'format': 'Json Web Token',
- 'key': 'Authorization',
- 'value': 'Bearer ' + self.access_token
- }
- if self.access_token is not None:
- auth['OAuth2'] = {
- 'type': 'oauth2',
- 'in': 'header',
- 'key': 'Authorization',
- 'value': 'Bearer ' + self.access_token
- }
return auth
def to_debug_report(self):
diff --git a/src/rapidata/api_client/models/compression_override.py b/src/rapidata/api_client/models/compression_override.py
new file mode 100644
index 000000000..8482c6efa
--- /dev/null
+++ b/src/rapidata/api_client/models/compression_override.py
@@ -0,0 +1,108 @@
+# coding: utf-8
+
+"""
+ Rapidata Asset API
+
+ The API for the Rapidata Asset service
+
+ The version of the OpenAPI document: v1
+ 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, StrictBool, StrictInt
+from typing import Any, ClassVar, Dict, List, Optional
+from pydantic import ValidationError
+from rapidata.api_client.lazy_model import LazyValidatedModel
+from typing import Optional, Set
+from typing_extensions import Self
+
+class CompressionOverride(LazyValidatedModel):
+ """
+ CompressionOverride
+ """ # noqa: E501
+ enabled: Optional[StrictBool] = None
+ quality: Optional[StrictInt] = None
+ max_dimension: Optional[StrictInt] = Field(default=None, alias="maxDimension")
+ __properties: ClassVar[List[str]] = ["enabled", "quality", "maxDimension"]
+
+ # 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 CompressionOverride from a JSON string"""
+ return cls.from_dict(json.loads(json_str))
+
+ def to_dict(self) -> Dict[str, Any]:
+ """Return the dictionary representation of the model using alias.
+
+ This has the following differences from calling pydantic's
+ `self.model_dump(by_alias=True)`:
+
+ * `None` is only added to the output dict for nullable fields that
+ were set at model initialization. Other fields with value `None`
+ are ignored.
+ """
+ excluded_fields: Set[str] = set([
+ ])
+
+ _dict = self.model_dump(
+ by_alias=True,
+ exclude=excluded_fields,
+ exclude_none=True,
+ )
+ # set to None if enabled (nullable) is None
+ # and model_fields_set contains the field
+ if self.enabled is None and "enabled" in self.model_fields_set:
+ _dict['enabled'] = None
+
+ # set to None if quality (nullable) is None
+ # and model_fields_set contains the field
+ if self.quality is None and "quality" in self.model_fields_set:
+ _dict['quality'] = None
+
+ # set to None if max_dimension (nullable) is None
+ # and model_fields_set contains the field
+ if self.max_dimension is None and "max_dimension" in self.model_fields_set:
+ _dict['maxDimension'] = None
+
+ return _dict
+
+ @classmethod
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
+ """Create an instance of CompressionOverride from a dict"""
+ if obj is None:
+ return None
+
+ if not isinstance(obj, dict):
+ return cls.model_validate(obj)
+
+ _data = {
+ "enabled": obj.get("enabled"),
+ "quality": obj.get("quality"),
+ "maxDimension": obj.get("maxDimension")
+ }
+ try:
+ _obj = cls.model_validate(_data)
+ except ValidationError as _val_error:
+ _obj = cls._lazy_construct(_data, _val_error)
+ return _obj
+
+
diff --git a/src/rapidata/api_client/models/create_batch_upload_endpoint_input.py b/src/rapidata/api_client/models/create_batch_upload_endpoint_input.py
index 42c697f44..d89cd0398 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
@@ -19,6 +19,7 @@
from pydantic import BaseModel, ConfigDict, Field, StrictStr
from typing import Any, ClassVar, Dict, List, Optional
+from rapidata.api_client.models.compression_override import CompressionOverride
from pydantic import ValidationError
from rapidata.api_client.lazy_model import LazyValidatedModel
from typing import Optional, Set
@@ -30,7 +31,8 @@ class CreateBatchUploadEndpointInput(LazyValidatedModel):
""" # noqa: E501
urls: List[StrictStr]
correlation_id: Optional[StrictStr] = Field(default=None, description="Optional client-supplied identifier to group related batch uploads.", alias="correlationId")
- __properties: ClassVar[List[str]] = ["urls", "correlationId"]
+ compression: Optional[CompressionOverride] = Field(default=None, description="Optional per-call override for image compression applied to every URL in the batch. Null means use the configured defaults.")
+ __properties: ClassVar[List[str]] = ["urls", "correlationId", "compression"]
# model_config is inherited from LazyValidatedModel
@@ -67,6 +69,9 @@ def to_dict(self) -> Dict[str, Any]:
exclude=excluded_fields,
exclude_none=True,
)
+ # override the default output from pydantic by calling `to_dict()` of compression
+ if self.compression:
+ _dict['compression'] = self.compression.to_dict()
# set to None if correlation_id (nullable) is None
# and model_fields_set contains the field
if self.correlation_id is None and "correlation_id" in self.model_fields_set:
@@ -85,7 +90,8 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
_data = {
"urls": obj.get("urls"),
- "correlationId": obj.get("correlationId")
+ "correlationId": obj.get("correlationId"),
+ "compression": CompressionOverride.from_dict(obj["compression"]) if obj.get("compression") is not None else None
}
try:
_obj = cls.model_validate(_data)
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 2804f385a..723f36d01 100644
--- a/src/rapidata/api_client/models/create_leaderboard_endpoint_input.py
+++ b/src/rapidata/api_client/models/create_leaderboard_endpoint_input.py
@@ -39,8 +39,9 @@ class CreateLeaderboardEndpointInput(LazyValidatedModel):
min_responses: Optional[StrictInt] = Field(default=None, description="The minimum amount of responses that need to be collected per comparison.", alias="minResponses")
is_inversed: Optional[StrictBool] = Field(default=None, description="Whether the results should be inversed, selecting the worse model.", alias="isInversed")
audience_id: Optional[StrictStr] = Field(default=None, description="Optional audience id; defaults to the global audience when unset.", alias="audienceId")
+ priority: Optional[StrictInt] = Field(default=None, description="Optional priority override applied to every run's job. Admin-only. When unset, runs use the default leaderboard priority.")
feature_flags: Optional[List[FeatureFlag]] = Field(default=None, alias="featureFlags")
- __properties: ClassVar[List[str]] = ["benchmarkId", "benchmarkName", "name", "instruction", "showPrompt", "showPromptAsset", "responseBudget", "minResponses", "isInversed", "audienceId", "featureFlags"]
+ __properties: ClassVar[List[str]] = ["benchmarkId", "benchmarkName", "name", "instruction", "showPrompt", "showPromptAsset", "responseBudget", "minResponses", "isInversed", "audienceId", "priority", "featureFlags"]
# model_config is inherited from LazyValidatedModel
@@ -136,6 +137,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
"minResponses": obj.get("minResponses"),
"isInversed": obj.get("isInversed"),
"audienceId": obj.get("audienceId"),
+ "priority": obj.get("priority"),
"featureFlags": [FeatureFlag.from_dict(_item) for _item in obj["featureFlags"]] if obj.get("featureFlags") is not None else None
}
try:
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 0ad650d8e..69d535b63 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
@@ -39,8 +39,9 @@ class GetLeaderboardByIdEndpointOutput(LazyValidatedModel):
min_responses: StrictInt = Field(description="The minimum responses collected per comparison.", alias="minResponses")
audience_id: StrictStr = Field(description="The id of the audience that evaluates the leaderboard.", alias="audienceId")
job_definition_id: Optional[StrictStr] = Field(default=None, description="The id of the associated job definition, if any.", alias="jobDefinitionId")
+ priority: Optional[StrictInt] = Field(default=None, description="Priority override applied to every run's job. Null when no override is set; runs then fall back to the default leaderboard priority.")
feature_flags: List[FeatureFlag] = Field(alias="featureFlags")
- __properties: ClassVar[List[str]] = ["id", "name", "instruction", "showPrompt", "showPromptAsset", "isInversed", "responseBudget", "minResponses", "audienceId", "jobDefinitionId", "featureFlags"]
+ __properties: ClassVar[List[str]] = ["id", "name", "instruction", "showPrompt", "showPromptAsset", "isInversed", "responseBudget", "minResponses", "audienceId", "jobDefinitionId", "priority", "featureFlags"]
# model_config is inherited from LazyValidatedModel
@@ -89,6 +90,11 @@ def to_dict(self) -> Dict[str, Any]:
if self.job_definition_id is None and "job_definition_id" in self.model_fields_set:
_dict['jobDefinitionId'] = None
+ # set to None if priority (nullable) is None
+ # and model_fields_set contains the field
+ if self.priority is None and "priority" in self.model_fields_set:
+ _dict['priority'] = None
+
return _dict
@classmethod
@@ -111,6 +117,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
"minResponses": obj.get("minResponses"),
"audienceId": obj.get("audienceId"),
"jobDefinitionId": obj.get("jobDefinitionId"),
+ "priority": obj.get("priority"),
"featureFlags": [FeatureFlag.from_dict(_item) for _item in obj["featureFlags"]] if obj.get("featureFlags") is not None else None
}
try:
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 f4d1c957f..4df5aacdd 100644
--- a/src/rapidata/api_client/models/update_leaderboard_endpoint_input.py
+++ b/src/rapidata/api_client/models/update_leaderboard_endpoint_input.py
@@ -31,7 +31,8 @@ class UpdateLeaderboardEndpointInput(LazyValidatedModel):
name: Optional[StrictStr] = Field(default=None, description="The new name of the leaderboard.")
response_budget: Optional[StrictInt] = Field(default=None, description="The response budget collected when onboarding a new participant.", alias="responseBudget")
min_responses: Optional[StrictInt] = Field(default=None, description="The minimum responses collected per matchup.", alias="minResponses")
- __properties: ClassVar[List[str]] = ["name", "responseBudget", "minResponses"]
+ priority: Optional[StrictInt] = Field(default=None, description="Priority override applied to every run's job. Admin-only. Pass null to clear the override and fall back to the default leaderboard priority.")
+ __properties: ClassVar[List[str]] = ["name", "responseBudget", "minResponses", "priority"]
# model_config is inherited from LazyValidatedModel
@@ -68,6 +69,11 @@ def to_dict(self) -> Dict[str, Any]:
exclude=excluded_fields,
exclude_none=True,
)
+ # set to None if priority (nullable) is None
+ # and model_fields_set contains the field
+ if self.priority is None and "priority" in self.model_fields_set:
+ _dict['priority'] = None
+
return _dict
@classmethod
@@ -82,7 +88,8 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
_data = {
"name": obj.get("name"),
"responseBudget": obj.get("responseBudget"),
- "minResponses": obj.get("minResponses")
+ "minResponses": obj.get("minResponses"),
+ "priority": obj.get("priority")
}
try:
_obj = cls.model_validate(_data)
diff --git a/src/rapidata/api_client_README.md b/src/rapidata/api_client_README.md
index c4a0b43b2..0337a50d4 100644
--- a/src/rapidata/api_client_README.md
+++ b/src/rapidata/api_client_README.md
@@ -45,26 +45,18 @@ configuration = rapidata.api_client.Configuration(
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.
-configuration.access_token = os.environ["ACCESS_TOKEN"]
-
-# Configure Bearer authorization (Json Web Token): Bearer
-configuration = rapidata.api_client.Configuration(
- access_token = os.environ["BEARER_TOKEN"]
-)
-
# Enter a context with an instance of the API client
with rapidata.api_client.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = rapidata.api_client.AssetApi(api_client)
file = None # bytearray |
- library = rapidata.api_client.CompressionLibrary() # CompressionLibrary | The compression library to use. (optional)
quality = 85 # int | The compression quality from 1 to 100. (optional) (default to 85)
maxdim = 800 # int | The maximum dimension (width or height) of the output image. (optional) (default to 800)
try:
# Compresses an uploaded image and returns the WebP result.
- api_response = api_instance.asset_compress_post(file, library=library, quality=quality, maxdim=maxdim)
+ api_response = api_instance.asset_compress_post(file, quality=quality, maxdim=maxdim)
print("The response of AssetApi->asset_compress_post:\n")
pprint(api_response)
except ApiException as e:
@@ -345,7 +337,7 @@ Class | Method | HTTP request | Description
- [CloneOrderEndpointInput](rapidata/api_client/docs/CloneOrderEndpointInput.md)
- [CloneOrderEndpointOutput](rapidata/api_client/docs/CloneOrderEndpointOutput.md)
- [ComparisonOperator](rapidata/api_client/docs/ComparisonOperator.md)
- - [CompressionLibrary](rapidata/api_client/docs/CompressionLibrary.md)
+ - [CompressionOverride](rapidata/api_client/docs/CompressionOverride.md)
- [ConditionalValidationSelectionValidationChance](rapidata/api_client/docs/ConditionalValidationSelectionValidationChance.md)
- [ConfidenceInterval](rapidata/api_client/docs/ConfidenceInterval.md)
- [CreateAudienceEndpointInput](rapidata/api_client/docs/CreateAudienceEndpointInput.md)
@@ -938,26 +930,10 @@ Class | Method | HTTP request | Description
Authentication schemes defined for the API:
-
-### Bearer
-
-- **Type**: Bearer authentication (Json Web Token)
-
### OpenIdConnect
-
-### OAuth2
-
-- **Type**: OAuth
-- **Flow**: accessCode
-- **Authorization URL**: https://auth.rabbitdata.ch/connect/authorize
-- **Scopes**:
- - **openid**: OpenID
- - **profile**: Profile
- - **email**: Email
-
## Author