From 96e72bd196ec1b655fa89782154edc9363114a93 Mon Sep 17 00:00:00 2001 From: "Ankit.Mahato" Date: Fri, 24 Apr 2026 17:12:54 +0530 Subject: [PATCH 1/3] feat: experiment idempotency --- .../src/api/experiments/handlers.rs | 24 +++++++++++++++---- .../tests/experimentation_tests.rs | 1 + crates/service_utils/src/service/types.rs | 6 +++++ .../down.sql | 3 +++ .../up.sql | 3 +++ .../src/database/models/experimentation.rs | 1 + .../src/database/schema.rs | 1 + docker-compose/postgres/db_init.sql | 5 ++++ workspace_template.sql | 3 +++ 9 files changed, 42 insertions(+), 5 deletions(-) create mode 100644 crates/superposition_types/migrations/2026-04-24-000000_experiment_idempotency_key/down.sql create mode 100644 crates/superposition_types/migrations/2026-04-24-000000_experiment_idempotency_key/up.sql diff --git a/crates/experimentation_platform/src/api/experiments/handlers.rs b/crates/experimentation_platform/src/api/experiments/handlers.rs index cd50283ab..ec33ac8aa 100644 --- a/crates/experimentation_platform/src/api/experiments/handlers.rs +++ b/crates/experimentation_platform/src/api/experiments/handlers.rs @@ -13,8 +13,8 @@ use actix_web::{ }; use chrono::{DateTime, Utc}; use diesel::{ - BoolExpressionMethods, Connection, ExpressionMethods, PgConnection, QueryDsl, - RunQueryDsl, SelectableHelper, TextExpressionMethods, + BoolExpressionMethods, Connection, ExpressionMethods, OptionalExtension, + PgConnection, QueryDsl, RunQueryDsl, SelectableHelper, TextExpressionMethods, r2d2::{ConnectionManager, PooledConnection}, }; use experimentation_client::{ @@ -156,12 +156,25 @@ async fn create_handler( db_conn: DbConnection, user: User, ) -> superposition::Result { - use superposition_types::database::schema::experiments::dsl::experiments; + use superposition_types::database::schema::experiments::dsl; let req = req.into_inner(); create_authorized(_auth_z, &req.variants).await?; - let mut variants = req.variants; let DbConnection(mut conn) = db_conn; + + if let Some(ref key) = custom_headers.idempotency_key { + let existing: Option = dsl::experiments + .filter(dsl::idempotency_key.eq(key)) + .select(Experiment::as_select()) + .schema_name(&workspace_context.schema_name) + .first(&mut conn) + .optional()?; + if let Some(exp) = existing { + return Ok(HttpResponse::Ok().json(ExperimentResponse::from(exp))); + } + } + + let mut variants = req.variants; let description = req.description.clone(); let change_reason = req.change_reason.clone(); @@ -371,11 +384,12 @@ async fn create_handler( .clone() .unwrap_or(workspace_context.settings.metrics.clone()), experiment_group_id: req.experiment_group_id, + idempotency_key: custom_headers.idempotency_key.clone(), }; let inserted_experiment: Experiment = conn.transaction::<_, superposition::AppError, _>(|transaction_conn| { - let inserted_experiment = diesel::insert_into(experiments) + let inserted_experiment = diesel::insert_into(dsl::experiments) .values(&new_experiment) .returning(Experiment::as_returning()) .schema_name(&workspace_context.schema_name) diff --git a/crates/experimentation_platform/tests/experimentation_tests.rs b/crates/experimentation_platform/tests/experimentation_tests.rs index e11d6805e..e624fc026 100644 --- a/crates/experimentation_platform/tests/experimentation_tests.rs +++ b/crates/experimentation_platform/tests/experimentation_tests.rs @@ -64,6 +64,7 @@ fn experiment_gen( change_reason: ChangeReason::try_from(String::from("test")).unwrap(), metrics: Metrics::default(), experiment_group_id: None, + idempotency_key: None, } } diff --git a/crates/service_utils/src/service/types.rs b/crates/service_utils/src/service/types.rs index b777a2ae1..5e786da97 100644 --- a/crates/service_utils/src/service/types.rs +++ b/crates/service_utils/src/service/types.rs @@ -248,6 +248,7 @@ impl FromRequest for DbConnection { pub struct CustomHeaders { pub config_tags: Option, + pub idempotency_key: Option, } impl FromRequest for CustomHeaders { type Error = Error; @@ -262,6 +263,11 @@ impl FromRequest for CustomHeaders { config_tags: header_val.get("x-config-tags").and_then(|header_val| { header_val.to_str().map_or(None, |v| Some(v.to_string())) }), + idempotency_key: header_val + .get("idempotency-key") + .and_then(|v| v.to_str().ok()) + .map(|v| v.trim().to_string()) + .filter(|v| !v.is_empty()), }; ready(Ok(val)) } diff --git a/crates/superposition_types/migrations/2026-04-24-000000_experiment_idempotency_key/down.sql b/crates/superposition_types/migrations/2026-04-24-000000_experiment_idempotency_key/down.sql new file mode 100644 index 000000000..9507c782c --- /dev/null +++ b/crates/superposition_types/migrations/2026-04-24-000000_experiment_idempotency_key/down.sql @@ -0,0 +1,3 @@ +-- This file should undo anything in `up.sql` +DROP INDEX IF EXISTS experiments_idempotency_key_idx; +ALTER TABLE experiments DROP COLUMN IF EXISTS idempotency_key; diff --git a/crates/superposition_types/migrations/2026-04-24-000000_experiment_idempotency_key/up.sql b/crates/superposition_types/migrations/2026-04-24-000000_experiment_idempotency_key/up.sql new file mode 100644 index 000000000..41e64e075 --- /dev/null +++ b/crates/superposition_types/migrations/2026-04-24-000000_experiment_idempotency_key/up.sql @@ -0,0 +1,3 @@ +-- Your SQL goes here +ALTER TABLE experiments ADD COLUMN IF NOT EXISTS idempotency_key TEXT; +CREATE UNIQUE INDEX IF NOT EXISTS experiments_idempotency_key_idx ON experiments(idempotency_key); diff --git a/crates/superposition_types/src/database/models/experimentation.rs b/crates/superposition_types/src/database/models/experimentation.rs index 76fd4b9f1..a30f259ff 100644 --- a/crates/superposition_types/src/database/models/experimentation.rs +++ b/crates/superposition_types/src/database/models/experimentation.rs @@ -312,6 +312,7 @@ pub struct Experiment { pub change_reason: ChangeReason, pub metrics: Metrics, pub experiment_group_id: Option, + pub idempotency_key: Option, } impl Contextual for Experiment { diff --git a/crates/superposition_types/src/database/schema.rs b/crates/superposition_types/src/database/schema.rs index 827990632..d2747fe4c 100644 --- a/crates/superposition_types/src/database/schema.rs +++ b/crates/superposition_types/src/database/schema.rs @@ -657,6 +657,7 @@ diesel::table! { change_reason -> Text, metrics -> Json, experiment_group_id -> Nullable, + idempotency_key -> Nullable, } } diff --git a/docker-compose/postgres/db_init.sql b/docker-compose/postgres/db_init.sql index 583fd612a..6592264fa 100644 --- a/docker-compose/postgres/db_init.sql +++ b/docker-compose/postgres/db_init.sql @@ -1771,4 +1771,9 @@ ALTER TABLE superposition.workspaces ADD COLUMN IF NOT EXISTS encryption_key TEXT NOT NULL DEFAULT '', ADD COLUMN IF NOT EXISTS key_rotated_at TIMESTAMPTZ; +ALTER TABLE localorg_dev.experiments ADD COLUMN IF NOT EXISTS idempotency_key TEXT; +ALTER TABLE localorg_test.experiments ADD COLUMN IF NOT EXISTS idempotency_key TEXT; +CREATE UNIQUE INDEX IF NOT EXISTS experiments_idempotency_key_idx ON localorg_dev.experiments(idempotency_key); +CREATE UNIQUE INDEX IF NOT EXISTS experiments_idempotency_key_idx ON localorg_test.experiments(idempotency_key); + COMMIT; diff --git a/workspace_template.sql b/workspace_template.sql index 9c10d8a3a..24e9af1bb 100644 --- a/workspace_template.sql +++ b/workspace_template.sql @@ -997,3 +997,6 @@ DO $$ BEGIN EXCEPTION WHEN duplicate_object THEN null; END $$; + +ALTER TABLE {replaceme}.experiments ADD COLUMN IF NOT EXISTS idempotency_key TEXT; +CREATE UNIQUE INDEX IF NOT EXISTS experiments_idempotency_key_idx ON {replaceme}.experiments(idempotency_key); From c9aa6bbdb50d4401ff2ca1042af9d686977280c9 Mon Sep 17 00:00:00 2001 From: "Ankit.Mahato" Date: Mon, 27 Apr 2026 17:27:38 +0530 Subject: [PATCH 2/3] fix: smithy changes --- .../Io/Superposition/Command/BulkOperation.hs | 8 +- .../Superposition/Command/WeightRecompute.hs | 6 +- .../Model/ConcludeExperimentInput.hs | 26 +- .../Model/CreateExperimentInput.hs | 40 +- .../Model/DiscardExperimentInput.hs | 26 +- .../Model/UpdateOverridesExperimentInput.hs | 26 +- .../client/SuperpositionAsyncClient.java | 18 +- .../client/SuperpositionAsyncClientImpl.java | 2 +- .../client/SuperpositionClient.java | 18 +- .../client/SuperpositionClientImpl.java | 2 +- .../superposition/model/BulkOperation.java | 2 +- .../model/ConcludeExperimentInput.java | 30 +- .../model/CreateExperimentInput.java | 56 ++- .../model/DiscardExperimentInput.java | 30 +- .../superposition/model/Experiments.java | 1 + .../model/UpdateOverridesExperimentInput.java | 30 +- .../src/commands/ConcludeExperimentCommand.ts | 1 + .../src/commands/CreateExperimentCommand.ts | 2 + .../src/commands/DiscardExperimentCommand.ts | 1 + .../UpdateOverridesExperimentCommand.ts | 1 + clients/javascript/sdk/src/models/models_0.ts | 6 + .../sdk/src/protocols/Aws_restJson1.ts | 7 + .../sdk/superposition_sdk/_private/schemas.py | 50 +++ .../sdk/superposition_sdk/deserialize.py | 6 +- .../python/sdk/superposition_sdk/models.py | 198 +++++----- .../python/sdk/superposition_sdk/serialize.py | 10 + .../src/client/conclude_experiment.rs | 1 + .../src/client/create_experiment.rs | 2 + .../src/client/discard_experiment.rs | 1 + .../src/client/update_overrides_experiment.rs | 1 + .../_conclude_experiment_input.rs | 22 ++ .../operation/conclude_experiment/builders.rs | 14 + .../_create_experiment_input.rs | 44 +++ .../operation/create_experiment/builders.rs | 28 ++ .../_discard_experiment_input.rs | 22 ++ .../operation/discard_experiment/builders.rs | 14 + .../_update_overrides_experiment_input.rs | 22 ++ .../update_overrides_experiment/builders.rs | 14 + .../shape_conclude_experiment.rs | 12 + .../protocol_serde/shape_create_experiment.rs | 24 ++ .../shape_discard_experiment.rs | 12 + .../shape_update_overrides_experiment.rs | 12 + docs/docs/api/Superposition.openapi.json | 35 ++ .../conclude-experiment.ParamsDetails.json | 2 +- docs/docs/api/conclude-experiment.api.mdx | 2 +- .../api/create-experiment.ParamsDetails.json | 2 +- docs/docs/api/create-experiment.api.mdx | 2 +- .../api/discard-experiment.ParamsDetails.json | 2 +- docs/docs/api/discard-experiment.api.mdx | 2 +- ...te-overrides-experiment.ParamsDetails.json | 2 +- .../api/update-overrides-experiment.api.mdx | 2 +- smithy/models/experiments.smithy | 21 ++ smithy/patches/java.patch | 7 +- smithy/patches/python.patch | 346 +++++++++--------- 54 files changed, 938 insertions(+), 335 deletions(-) diff --git a/clients/haskell/sdk/Io/Superposition/Command/BulkOperation.hs b/clients/haskell/sdk/Io/Superposition/Command/BulkOperation.hs index 58786f7d3..8d3ad6bfd 100644 --- a/clients/haskell/sdk/Io/Superposition/Command/BulkOperation.hs +++ b/clients/haskell/sdk/Io/Superposition/Command/BulkOperation.hs @@ -16,9 +16,9 @@ import qualified Io.Superposition.SuperpositionClient import qualified Io.Superposition.Utility data BulkOperationError = - InternalServerError Io.Superposition.Model.InternalServerError.InternalServerError + ResourceNotFound Io.Superposition.Model.ResourceNotFound.ResourceNotFound | WebhookFailed Io.Superposition.Model.WebhookFailed.WebhookFailed - | ResourceNotFound Io.Superposition.Model.ResourceNotFound.ResourceNotFound + | InternalServerError Io.Superposition.Model.InternalServerError.InternalServerError | BuilderError Data.Text.Text | DeSerializationError Io.Superposition.Utility.HttpMetadata Data.Text.Text | UnexpectedError (Data.Maybe.Maybe Io.Superposition.Utility.HttpMetadata) Data.Text.Text @@ -31,9 +31,9 @@ instance Io.Superposition.Utility.OperationError BulkOperationError where mkUnexpectedError = UnexpectedError getErrorParser status - | status == (Io.Superposition.Utility.expectedStatus @Io.Superposition.Model.InternalServerError.InternalServerError) = Just (fmap InternalServerError (Io.Superposition.Utility.responseParser @Io.Superposition.Model.InternalServerError.InternalServerError)) - | status == (Io.Superposition.Utility.expectedStatus @Io.Superposition.Model.WebhookFailed.WebhookFailed) = Just (fmap WebhookFailed (Io.Superposition.Utility.responseParser @Io.Superposition.Model.WebhookFailed.WebhookFailed)) | status == (Io.Superposition.Utility.expectedStatus @Io.Superposition.Model.ResourceNotFound.ResourceNotFound) = Just (fmap ResourceNotFound (Io.Superposition.Utility.responseParser @Io.Superposition.Model.ResourceNotFound.ResourceNotFound)) + | status == (Io.Superposition.Utility.expectedStatus @Io.Superposition.Model.WebhookFailed.WebhookFailed) = Just (fmap WebhookFailed (Io.Superposition.Utility.responseParser @Io.Superposition.Model.WebhookFailed.WebhookFailed)) + | status == (Io.Superposition.Utility.expectedStatus @Io.Superposition.Model.InternalServerError.InternalServerError) = Just (fmap InternalServerError (Io.Superposition.Utility.responseParser @Io.Superposition.Model.InternalServerError.InternalServerError)) | otherwise = Nothing diff --git a/clients/haskell/sdk/Io/Superposition/Command/WeightRecompute.hs b/clients/haskell/sdk/Io/Superposition/Command/WeightRecompute.hs index 1972f9c39..f160be573 100644 --- a/clients/haskell/sdk/Io/Superposition/Command/WeightRecompute.hs +++ b/clients/haskell/sdk/Io/Superposition/Command/WeightRecompute.hs @@ -15,8 +15,8 @@ import qualified Io.Superposition.SuperpositionClient import qualified Io.Superposition.Utility data WeightRecomputeError = - InternalServerError Io.Superposition.Model.InternalServerError.InternalServerError - | WebhookFailed Io.Superposition.Model.WebhookFailed.WebhookFailed + WebhookFailed Io.Superposition.Model.WebhookFailed.WebhookFailed + | InternalServerError Io.Superposition.Model.InternalServerError.InternalServerError | BuilderError Data.Text.Text | DeSerializationError Io.Superposition.Utility.HttpMetadata Data.Text.Text | UnexpectedError (Data.Maybe.Maybe Io.Superposition.Utility.HttpMetadata) Data.Text.Text @@ -29,8 +29,8 @@ instance Io.Superposition.Utility.OperationError WeightRecomputeError where mkUnexpectedError = UnexpectedError getErrorParser status - | status == (Io.Superposition.Utility.expectedStatus @Io.Superposition.Model.InternalServerError.InternalServerError) = Just (fmap InternalServerError (Io.Superposition.Utility.responseParser @Io.Superposition.Model.InternalServerError.InternalServerError)) | status == (Io.Superposition.Utility.expectedStatus @Io.Superposition.Model.WebhookFailed.WebhookFailed) = Just (fmap WebhookFailed (Io.Superposition.Utility.responseParser @Io.Superposition.Model.WebhookFailed.WebhookFailed)) + | status == (Io.Superposition.Utility.expectedStatus @Io.Superposition.Model.InternalServerError.InternalServerError) = Just (fmap InternalServerError (Io.Superposition.Utility.responseParser @Io.Superposition.Model.InternalServerError.InternalServerError)) | otherwise = Nothing diff --git a/clients/haskell/sdk/Io/Superposition/Model/ConcludeExperimentInput.hs b/clients/haskell/sdk/Io/Superposition/Model/ConcludeExperimentInput.hs index 4b1c12dac..d61c77f64 100644 --- a/clients/haskell/sdk/Io/Superposition/Model/ConcludeExperimentInput.hs +++ b/clients/haskell/sdk/Io/Superposition/Model/ConcludeExperimentInput.hs @@ -5,6 +5,7 @@ module Io.Superposition.Model.ConcludeExperimentInput ( setChosenVariant, setDescription, setChangeReason, + setConfigTags, build, ConcludeExperimentInputBuilder, ConcludeExperimentInput, @@ -13,7 +14,8 @@ module Io.Superposition.Model.ConcludeExperimentInput ( id', chosen_variant, description, - change_reason + change_reason, + config_tags ) where import qualified Control.Applicative import qualified Control.Monad.State.Strict @@ -34,7 +36,8 @@ data ConcludeExperimentInput = ConcludeExperimentInput { id' :: Data.Text.Text, chosen_variant :: Data.Text.Text, description :: Data.Maybe.Maybe Data.Text.Text, - change_reason :: Data.Text.Text + change_reason :: Data.Text.Text, + config_tags :: Data.Maybe.Maybe Data.Text.Text } deriving ( GHC.Show.Show, Data.Eq.Eq, @@ -48,7 +51,8 @@ instance Data.Aeson.ToJSON ConcludeExperimentInput where "id" Data.Aeson..= id' a, "chosen_variant" Data.Aeson..= chosen_variant a, "description" Data.Aeson..= description a, - "change_reason" Data.Aeson..= change_reason a + "change_reason" Data.Aeson..= change_reason a, + "config_tags" Data.Aeson..= config_tags a ] @@ -62,6 +66,7 @@ instance Data.Aeson.FromJSON ConcludeExperimentInput where Control.Applicative.<*> (v Data.Aeson..: "chosen_variant") Control.Applicative.<*> (v Data.Aeson..:? "description") Control.Applicative.<*> (v Data.Aeson..: "change_reason") + Control.Applicative.<*> (v Data.Aeson..:? "config_tags") @@ -72,7 +77,8 @@ data ConcludeExperimentInputBuilderState = ConcludeExperimentInputBuilderState { id'BuilderState :: Data.Maybe.Maybe Data.Text.Text, chosen_variantBuilderState :: Data.Maybe.Maybe Data.Text.Text, descriptionBuilderState :: Data.Maybe.Maybe Data.Text.Text, - change_reasonBuilderState :: Data.Maybe.Maybe Data.Text.Text + change_reasonBuilderState :: Data.Maybe.Maybe Data.Text.Text, + config_tagsBuilderState :: Data.Maybe.Maybe Data.Text.Text } deriving ( GHC.Generics.Generic ) @@ -84,7 +90,8 @@ defaultBuilderState = ConcludeExperimentInputBuilderState { id'BuilderState = Data.Maybe.Nothing, chosen_variantBuilderState = Data.Maybe.Nothing, descriptionBuilderState = Data.Maybe.Nothing, - change_reasonBuilderState = Data.Maybe.Nothing + change_reasonBuilderState = Data.Maybe.Nothing, + config_tagsBuilderState = Data.Maybe.Nothing } type ConcludeExperimentInputBuilder = Control.Monad.State.Strict.State ConcludeExperimentInputBuilderState @@ -113,6 +120,10 @@ setChangeReason :: Data.Text.Text -> ConcludeExperimentInputBuilder () setChangeReason value = Control.Monad.State.Strict.modify (\s -> (s { change_reasonBuilderState = Data.Maybe.Just value })) +setConfigTags :: Data.Maybe.Maybe Data.Text.Text -> ConcludeExperimentInputBuilder () +setConfigTags value = + Control.Monad.State.Strict.modify (\s -> (s { config_tagsBuilderState = value })) + build :: ConcludeExperimentInputBuilder () -> Data.Either.Either Data.Text.Text ConcludeExperimentInput build builder = do let (_, st) = Control.Monad.State.Strict.runState builder defaultBuilderState @@ -122,13 +133,15 @@ build builder = do chosen_variant' <- Data.Maybe.maybe (Data.Either.Left "Io.Superposition.Model.ConcludeExperimentInput.ConcludeExperimentInput.chosen_variant is a required property.") Data.Either.Right (chosen_variantBuilderState st) description' <- Data.Either.Right (descriptionBuilderState st) change_reason' <- Data.Maybe.maybe (Data.Either.Left "Io.Superposition.Model.ConcludeExperimentInput.ConcludeExperimentInput.change_reason is a required property.") Data.Either.Right (change_reasonBuilderState st) + config_tags' <- Data.Either.Right (config_tagsBuilderState st) Data.Either.Right (ConcludeExperimentInput { workspace_id = workspace_id', org_id = org_id', id' = id'', chosen_variant = chosen_variant', description = description', - change_reason = change_reason' + change_reason = change_reason', + config_tags = config_tags' }) @@ -143,6 +156,7 @@ instance Io.Superposition.Utility.IntoRequestBuilder ConcludeExperimentInput whe Io.Superposition.Utility.serHeader "x-workspace" (workspace_id self) Io.Superposition.Utility.serHeader "x-org-id" (org_id self) + Io.Superposition.Utility.serHeader "x-config-tags" (config_tags self) Io.Superposition.Utility.serField "change_reason" (change_reason self) Io.Superposition.Utility.serField "chosen_variant" (chosen_variant self) Io.Superposition.Utility.serField "description" (description self) diff --git a/clients/haskell/sdk/Io/Superposition/Model/CreateExperimentInput.hs b/clients/haskell/sdk/Io/Superposition/Model/CreateExperimentInput.hs index 4433d02d8..1136354d2 100644 --- a/clients/haskell/sdk/Io/Superposition/Model/CreateExperimentInput.hs +++ b/clients/haskell/sdk/Io/Superposition/Model/CreateExperimentInput.hs @@ -9,6 +9,8 @@ module Io.Superposition.Model.CreateExperimentInput ( setChangeReason, setMetrics, setExperimentGroupId, + setIdempotencyKey, + setConfigTags, build, CreateExperimentInputBuilder, CreateExperimentInput, @@ -21,7 +23,9 @@ module Io.Superposition.Model.CreateExperimentInput ( description, change_reason, metrics, - experiment_group_id + experiment_group_id, + idempotency_key, + config_tags ) where import qualified Control.Applicative import qualified Control.Monad.State.Strict @@ -49,7 +53,9 @@ data CreateExperimentInput = CreateExperimentInput { description :: Data.Text.Text, change_reason :: Data.Text.Text, metrics :: Data.Maybe.Maybe Data.Aeson.Value, - experiment_group_id :: Data.Maybe.Maybe Data.Text.Text + experiment_group_id :: Data.Maybe.Maybe Data.Text.Text, + idempotency_key :: Data.Maybe.Maybe Data.Text.Text, + config_tags :: Data.Maybe.Maybe Data.Text.Text } deriving ( GHC.Show.Show, Data.Eq.Eq, @@ -67,7 +73,9 @@ instance Data.Aeson.ToJSON CreateExperimentInput where "description" Data.Aeson..= description a, "change_reason" Data.Aeson..= change_reason a, "metrics" Data.Aeson..= metrics a, - "experiment_group_id" Data.Aeson..= experiment_group_id a + "experiment_group_id" Data.Aeson..= experiment_group_id a, + "idempotency_key" Data.Aeson..= idempotency_key a, + "config_tags" Data.Aeson..= config_tags a ] @@ -85,6 +93,8 @@ instance Data.Aeson.FromJSON CreateExperimentInput where Control.Applicative.<*> (v Data.Aeson..: "change_reason") Control.Applicative.<*> (v Data.Aeson..:? "metrics") Control.Applicative.<*> (v Data.Aeson..:? "experiment_group_id") + Control.Applicative.<*> (v Data.Aeson..:? "idempotency_key") + Control.Applicative.<*> (v Data.Aeson..:? "config_tags") @@ -99,7 +109,9 @@ data CreateExperimentInputBuilderState = CreateExperimentInputBuilderState { descriptionBuilderState :: Data.Maybe.Maybe Data.Text.Text, change_reasonBuilderState :: Data.Maybe.Maybe Data.Text.Text, metricsBuilderState :: Data.Maybe.Maybe Data.Aeson.Value, - experiment_group_idBuilderState :: Data.Maybe.Maybe Data.Text.Text + experiment_group_idBuilderState :: Data.Maybe.Maybe Data.Text.Text, + idempotency_keyBuilderState :: Data.Maybe.Maybe Data.Text.Text, + config_tagsBuilderState :: Data.Maybe.Maybe Data.Text.Text } deriving ( GHC.Generics.Generic ) @@ -115,7 +127,9 @@ defaultBuilderState = CreateExperimentInputBuilderState { descriptionBuilderState = Data.Maybe.Nothing, change_reasonBuilderState = Data.Maybe.Nothing, metricsBuilderState = Data.Maybe.Nothing, - experiment_group_idBuilderState = Data.Maybe.Nothing + experiment_group_idBuilderState = Data.Maybe.Nothing, + idempotency_keyBuilderState = Data.Maybe.Nothing, + config_tagsBuilderState = Data.Maybe.Nothing } type CreateExperimentInputBuilder = Control.Monad.State.Strict.State CreateExperimentInputBuilderState @@ -160,6 +174,14 @@ setExperimentGroupId :: Data.Maybe.Maybe Data.Text.Text -> CreateExperimentInput setExperimentGroupId value = Control.Monad.State.Strict.modify (\s -> (s { experiment_group_idBuilderState = value })) +setIdempotencyKey :: Data.Maybe.Maybe Data.Text.Text -> CreateExperimentInputBuilder () +setIdempotencyKey value = + Control.Monad.State.Strict.modify (\s -> (s { idempotency_keyBuilderState = value })) + +setConfigTags :: Data.Maybe.Maybe Data.Text.Text -> CreateExperimentInputBuilder () +setConfigTags value = + Control.Monad.State.Strict.modify (\s -> (s { config_tagsBuilderState = value })) + build :: CreateExperimentInputBuilder () -> Data.Either.Either Data.Text.Text CreateExperimentInput build builder = do let (_, st) = Control.Monad.State.Strict.runState builder defaultBuilderState @@ -173,6 +195,8 @@ build builder = do change_reason' <- Data.Maybe.maybe (Data.Either.Left "Io.Superposition.Model.CreateExperimentInput.CreateExperimentInput.change_reason is a required property.") Data.Either.Right (change_reasonBuilderState st) metrics' <- Data.Either.Right (metricsBuilderState st) experiment_group_id' <- Data.Either.Right (experiment_group_idBuilderState st) + idempotency_key' <- Data.Either.Right (idempotency_keyBuilderState st) + config_tags' <- Data.Either.Right (config_tagsBuilderState st) Data.Either.Right (CreateExperimentInput { workspace_id = workspace_id', org_id = org_id', @@ -183,7 +207,9 @@ build builder = do description = description', change_reason = change_reason', metrics = metrics', - experiment_group_id = experiment_group_id' + experiment_group_id = experiment_group_id', + idempotency_key = idempotency_key', + config_tags = config_tags' }) @@ -196,6 +222,8 @@ instance Io.Superposition.Utility.IntoRequestBuilder CreateExperimentInput where Io.Superposition.Utility.serHeader "x-workspace" (workspace_id self) Io.Superposition.Utility.serHeader "x-org-id" (org_id self) + Io.Superposition.Utility.serHeader "idempotency-key" (idempotency_key self) + Io.Superposition.Utility.serHeader "x-config-tags" (config_tags self) Io.Superposition.Utility.serField "change_reason" (change_reason self) Io.Superposition.Utility.serField "name" (name self) Io.Superposition.Utility.serField "context" (context self) diff --git a/clients/haskell/sdk/Io/Superposition/Model/DiscardExperimentInput.hs b/clients/haskell/sdk/Io/Superposition/Model/DiscardExperimentInput.hs index 808014466..3032b4160 100644 --- a/clients/haskell/sdk/Io/Superposition/Model/DiscardExperimentInput.hs +++ b/clients/haskell/sdk/Io/Superposition/Model/DiscardExperimentInput.hs @@ -3,13 +3,15 @@ module Io.Superposition.Model.DiscardExperimentInput ( setOrgId, setId', setChangeReason, + setConfigTags, build, DiscardExperimentInputBuilder, DiscardExperimentInput, workspace_id, org_id, id', - change_reason + change_reason, + config_tags ) where import qualified Control.Applicative import qualified Control.Monad.State.Strict @@ -28,7 +30,8 @@ data DiscardExperimentInput = DiscardExperimentInput { workspace_id :: Data.Text.Text, org_id :: Data.Text.Text, id' :: Data.Text.Text, - change_reason :: Data.Text.Text + change_reason :: Data.Text.Text, + config_tags :: Data.Maybe.Maybe Data.Text.Text } deriving ( GHC.Show.Show, Data.Eq.Eq, @@ -40,7 +43,8 @@ instance Data.Aeson.ToJSON DiscardExperimentInput where "workspace_id" Data.Aeson..= workspace_id a, "org_id" Data.Aeson..= org_id a, "id" Data.Aeson..= id' a, - "change_reason" Data.Aeson..= change_reason a + "change_reason" Data.Aeson..= change_reason a, + "config_tags" Data.Aeson..= config_tags a ] @@ -52,6 +56,7 @@ instance Data.Aeson.FromJSON DiscardExperimentInput where Control.Applicative.<*> (v Data.Aeson..: "org_id") Control.Applicative.<*> (v Data.Aeson..: "id") Control.Applicative.<*> (v Data.Aeson..: "change_reason") + Control.Applicative.<*> (v Data.Aeson..:? "config_tags") @@ -60,7 +65,8 @@ data DiscardExperimentInputBuilderState = DiscardExperimentInputBuilderState { workspace_idBuilderState :: Data.Maybe.Maybe Data.Text.Text, org_idBuilderState :: Data.Maybe.Maybe Data.Text.Text, id'BuilderState :: Data.Maybe.Maybe Data.Text.Text, - change_reasonBuilderState :: Data.Maybe.Maybe Data.Text.Text + change_reasonBuilderState :: Data.Maybe.Maybe Data.Text.Text, + config_tagsBuilderState :: Data.Maybe.Maybe Data.Text.Text } deriving ( GHC.Generics.Generic ) @@ -70,7 +76,8 @@ defaultBuilderState = DiscardExperimentInputBuilderState { workspace_idBuilderState = Data.Maybe.Nothing, org_idBuilderState = Data.Maybe.Nothing, id'BuilderState = Data.Maybe.Nothing, - change_reasonBuilderState = Data.Maybe.Nothing + change_reasonBuilderState = Data.Maybe.Nothing, + config_tagsBuilderState = Data.Maybe.Nothing } type DiscardExperimentInputBuilder = Control.Monad.State.Strict.State DiscardExperimentInputBuilderState @@ -91,6 +98,10 @@ setChangeReason :: Data.Text.Text -> DiscardExperimentInputBuilder () setChangeReason value = Control.Monad.State.Strict.modify (\s -> (s { change_reasonBuilderState = Data.Maybe.Just value })) +setConfigTags :: Data.Maybe.Maybe Data.Text.Text -> DiscardExperimentInputBuilder () +setConfigTags value = + Control.Monad.State.Strict.modify (\s -> (s { config_tagsBuilderState = value })) + build :: DiscardExperimentInputBuilder () -> Data.Either.Either Data.Text.Text DiscardExperimentInput build builder = do let (_, st) = Control.Monad.State.Strict.runState builder defaultBuilderState @@ -98,11 +109,13 @@ build builder = do org_id' <- Data.Maybe.maybe (Data.Either.Left "Io.Superposition.Model.DiscardExperimentInput.DiscardExperimentInput.org_id is a required property.") Data.Either.Right (org_idBuilderState st) id'' <- Data.Maybe.maybe (Data.Either.Left "Io.Superposition.Model.DiscardExperimentInput.DiscardExperimentInput.id' is a required property.") Data.Either.Right (id'BuilderState st) change_reason' <- Data.Maybe.maybe (Data.Either.Left "Io.Superposition.Model.DiscardExperimentInput.DiscardExperimentInput.change_reason is a required property.") Data.Either.Right (change_reasonBuilderState st) + config_tags' <- Data.Either.Right (config_tagsBuilderState st) Data.Either.Right (DiscardExperimentInput { workspace_id = workspace_id', org_id = org_id', id' = id'', - change_reason = change_reason' + change_reason = change_reason', + config_tags = config_tags' }) @@ -117,5 +130,6 @@ instance Io.Superposition.Utility.IntoRequestBuilder DiscardExperimentInput wher Io.Superposition.Utility.serHeader "x-workspace" (workspace_id self) Io.Superposition.Utility.serHeader "x-org-id" (org_id self) + Io.Superposition.Utility.serHeader "x-config-tags" (config_tags self) Io.Superposition.Utility.serField "change_reason" (change_reason self) diff --git a/clients/haskell/sdk/Io/Superposition/Model/UpdateOverridesExperimentInput.hs b/clients/haskell/sdk/Io/Superposition/Model/UpdateOverridesExperimentInput.hs index 6137b5c22..f5e00faf9 100644 --- a/clients/haskell/sdk/Io/Superposition/Model/UpdateOverridesExperimentInput.hs +++ b/clients/haskell/sdk/Io/Superposition/Model/UpdateOverridesExperimentInput.hs @@ -7,6 +7,7 @@ module Io.Superposition.Model.UpdateOverridesExperimentInput ( setChangeReason, setMetrics, setExperimentGroupId, + setConfigTags, build, UpdateOverridesExperimentInputBuilder, UpdateOverridesExperimentInput, @@ -17,7 +18,8 @@ module Io.Superposition.Model.UpdateOverridesExperimentInput ( description, change_reason, metrics, - experiment_group_id + experiment_group_id, + config_tags ) where import qualified Control.Applicative import qualified Control.Monad.State.Strict @@ -41,7 +43,8 @@ data UpdateOverridesExperimentInput = UpdateOverridesExperimentInput { description :: Data.Maybe.Maybe Data.Text.Text, change_reason :: Data.Text.Text, metrics :: Data.Maybe.Maybe Data.Aeson.Value, - experiment_group_id :: Data.Maybe.Maybe Data.Text.Text + experiment_group_id :: Data.Maybe.Maybe Data.Text.Text, + config_tags :: Data.Maybe.Maybe Data.Text.Text } deriving ( GHC.Show.Show, Data.Eq.Eq, @@ -57,7 +60,8 @@ instance Data.Aeson.ToJSON UpdateOverridesExperimentInput where "description" Data.Aeson..= description a, "change_reason" Data.Aeson..= change_reason a, "metrics" Data.Aeson..= metrics a, - "experiment_group_id" Data.Aeson..= experiment_group_id a + "experiment_group_id" Data.Aeson..= experiment_group_id a, + "config_tags" Data.Aeson..= config_tags a ] @@ -73,6 +77,7 @@ instance Data.Aeson.FromJSON UpdateOverridesExperimentInput where Control.Applicative.<*> (v Data.Aeson..: "change_reason") Control.Applicative.<*> (v Data.Aeson..:? "metrics") Control.Applicative.<*> (v Data.Aeson..:? "experiment_group_id") + Control.Applicative.<*> (v Data.Aeson..:? "config_tags") @@ -85,7 +90,8 @@ data UpdateOverridesExperimentInputBuilderState = UpdateOverridesExperimentInput descriptionBuilderState :: Data.Maybe.Maybe Data.Text.Text, change_reasonBuilderState :: Data.Maybe.Maybe Data.Text.Text, metricsBuilderState :: Data.Maybe.Maybe Data.Aeson.Value, - experiment_group_idBuilderState :: Data.Maybe.Maybe Data.Text.Text + experiment_group_idBuilderState :: Data.Maybe.Maybe Data.Text.Text, + config_tagsBuilderState :: Data.Maybe.Maybe Data.Text.Text } deriving ( GHC.Generics.Generic ) @@ -99,7 +105,8 @@ defaultBuilderState = UpdateOverridesExperimentInputBuilderState { descriptionBuilderState = Data.Maybe.Nothing, change_reasonBuilderState = Data.Maybe.Nothing, metricsBuilderState = Data.Maybe.Nothing, - experiment_group_idBuilderState = Data.Maybe.Nothing + experiment_group_idBuilderState = Data.Maybe.Nothing, + config_tagsBuilderState = Data.Maybe.Nothing } type UpdateOverridesExperimentInputBuilder = Control.Monad.State.Strict.State UpdateOverridesExperimentInputBuilderState @@ -136,6 +143,10 @@ setExperimentGroupId :: Data.Maybe.Maybe Data.Text.Text -> UpdateOverridesExperi setExperimentGroupId value = Control.Monad.State.Strict.modify (\s -> (s { experiment_group_idBuilderState = value })) +setConfigTags :: Data.Maybe.Maybe Data.Text.Text -> UpdateOverridesExperimentInputBuilder () +setConfigTags value = + Control.Monad.State.Strict.modify (\s -> (s { config_tagsBuilderState = value })) + build :: UpdateOverridesExperimentInputBuilder () -> Data.Either.Either Data.Text.Text UpdateOverridesExperimentInput build builder = do let (_, st) = Control.Monad.State.Strict.runState builder defaultBuilderState @@ -147,6 +158,7 @@ build builder = do change_reason' <- Data.Maybe.maybe (Data.Either.Left "Io.Superposition.Model.UpdateOverridesExperimentInput.UpdateOverridesExperimentInput.change_reason is a required property.") Data.Either.Right (change_reasonBuilderState st) metrics' <- Data.Either.Right (metricsBuilderState st) experiment_group_id' <- Data.Either.Right (experiment_group_idBuilderState st) + config_tags' <- Data.Either.Right (config_tagsBuilderState st) Data.Either.Right (UpdateOverridesExperimentInput { workspace_id = workspace_id', org_id = org_id', @@ -155,7 +167,8 @@ build builder = do description = description', change_reason = change_reason', metrics = metrics', - experiment_group_id = experiment_group_id' + experiment_group_id = experiment_group_id', + config_tags = config_tags' }) @@ -170,6 +183,7 @@ instance Io.Superposition.Utility.IntoRequestBuilder UpdateOverridesExperimentIn Io.Superposition.Utility.serHeader "x-workspace" (workspace_id self) Io.Superposition.Utility.serHeader "x-org-id" (org_id self) + Io.Superposition.Utility.serHeader "x-config-tags" (config_tags self) Io.Superposition.Utility.serField "change_reason" (change_reason self) Io.Superposition.Utility.serField "variant_list" (variant_list self) Io.Superposition.Utility.serField "description" (description self) diff --git a/clients/java/sdk/src/main/java/io/juspay/superposition/client/SuperpositionAsyncClient.java b/clients/java/sdk/src/main/java/io/juspay/superposition/client/SuperpositionAsyncClient.java index 22959bdb6..655c98c80 100644 --- a/clients/java/sdk/src/main/java/io/juspay/superposition/client/SuperpositionAsyncClient.java +++ b/clients/java/sdk/src/main/java/io/juspay/superposition/client/SuperpositionAsyncClient.java @@ -233,9 +233,9 @@ default CompletableFuture applicableVariants(Applicabl * Executes multiple context operations (PUT, REPLACE, DELETE, MOVE) in a single atomic transaction for * efficient batch processing. * - * @throws InternalServerError - * @throws WebhookFailed * @throws ResourceNotFound + * @throws WebhookFailed + * @throws InternalServerError */ default CompletableFuture bulkOperation(BulkOperationInput input) { return bulkOperation(input, null); @@ -245,9 +245,9 @@ default CompletableFuture bulkOperation(BulkOperationInput * Executes multiple context operations (PUT, REPLACE, DELETE, MOVE) in a single atomic transaction for * efficient batch processing. * - * @throws InternalServerError - * @throws WebhookFailed * @throws ResourceNotFound + * @throws WebhookFailed + * @throws InternalServerError */ CompletableFuture bulkOperation(BulkOperationInput input, RequestOverrideConfig overrideConfig); @@ -1811,8 +1811,8 @@ default CompletableFuture validateContext(ValidateContext * Recalculates and updates the priority weights for all contexts in the workspace based on their * dimensions. * - * @throws InternalServerError * @throws WebhookFailed + * @throws InternalServerError */ default CompletableFuture weightRecompute(WeightRecomputeInput input) { return weightRecompute(input, null); @@ -1822,8 +1822,8 @@ default CompletableFuture weightRecompute(WeightRecompute * Recalculates and updates the priority weights for all contexts in the workspace based on their * dimensions. * - * @throws InternalServerError * @throws WebhookFailed + * @throws InternalServerError */ CompletableFuture weightRecompute(WeightRecomputeInput input, RequestOverrideConfig overrideConfig); @@ -1858,12 +1858,12 @@ final class Builder extends Client.Builder { Node.objectNode() ); - private static final HttpBasicAuthTrait httpBasicAuthScheme = new HttpBasicAuthTrait(); - private static final AuthSchemeFactory httpBasicAuthSchemeFactory = new HttpBasicAuthAuthScheme.Factory(); - private static final HttpBearerAuthTrait httpBearerAuthScheme = new HttpBearerAuthTrait(); private static final AuthSchemeFactory httpBearerAuthSchemeFactory = new HttpBearerAuthScheme.Factory(); + private static final HttpBasicAuthTrait httpBasicAuthScheme = new HttpBasicAuthTrait(); + private static final AuthSchemeFactory httpBasicAuthSchemeFactory = new HttpBasicAuthAuthScheme.Factory(); + private Builder() { configBuilder().putSupportedAuthSchemes(httpBasicAuthSchemeFactory.createAuthScheme(httpBasicAuthScheme), httpBearerAuthSchemeFactory.createAuthScheme(httpBearerAuthScheme)); } diff --git a/clients/java/sdk/src/main/java/io/juspay/superposition/client/SuperpositionAsyncClientImpl.java b/clients/java/sdk/src/main/java/io/juspay/superposition/client/SuperpositionAsyncClientImpl.java index 62a24718c..79b07bff2 100644 --- a/clients/java/sdk/src/main/java/io/juspay/superposition/client/SuperpositionAsyncClientImpl.java +++ b/clients/java/sdk/src/main/java/io/juspay/superposition/client/SuperpositionAsyncClientImpl.java @@ -272,9 +272,9 @@ @SmithyGenerated final class SuperpositionAsyncClientImpl extends Client implements SuperpositionAsyncClient { private static final TypeRegistry TYPE_REGISTRY = TypeRegistry.builder() - .putType(NotAuthorizedException.$ID, NotAuthorizedException.class, NotAuthorizedException::builder) .putType(ValidationException.$ID, ValidationException.class, ValidationException::builder) .putType(AccessDeniedException.$ID, AccessDeniedException.class, AccessDeniedException::builder) + .putType(NotAuthorizedException.$ID, NotAuthorizedException.class, NotAuthorizedException::builder) .putType(InternalFailureException.$ID, InternalFailureException.class, InternalFailureException::builder) .putType(UnknownOperationException.$ID, UnknownOperationException.class, UnknownOperationException::builder) .putType(MalformedRequestException.$ID, MalformedRequestException.class, MalformedRequestException::builder) diff --git a/clients/java/sdk/src/main/java/io/juspay/superposition/client/SuperpositionClient.java b/clients/java/sdk/src/main/java/io/juspay/superposition/client/SuperpositionClient.java index fce19e121..9861ef2ea 100644 --- a/clients/java/sdk/src/main/java/io/juspay/superposition/client/SuperpositionClient.java +++ b/clients/java/sdk/src/main/java/io/juspay/superposition/client/SuperpositionClient.java @@ -232,9 +232,9 @@ default ApplicableVariantsOutput applicableVariants(ApplicableVariantsInput inpu * Executes multiple context operations (PUT, REPLACE, DELETE, MOVE) in a single atomic transaction for * efficient batch processing. * - * @throws InternalServerError - * @throws WebhookFailed * @throws ResourceNotFound + * @throws WebhookFailed + * @throws InternalServerError */ default BulkOperationOutput bulkOperation(BulkOperationInput input) { return bulkOperation(input, null); @@ -244,9 +244,9 @@ default BulkOperationOutput bulkOperation(BulkOperationInput input) { * Executes multiple context operations (PUT, REPLACE, DELETE, MOVE) in a single atomic transaction for * efficient batch processing. * - * @throws InternalServerError - * @throws WebhookFailed * @throws ResourceNotFound + * @throws WebhookFailed + * @throws InternalServerError */ BulkOperationOutput bulkOperation(BulkOperationInput input, RequestOverrideConfig overrideConfig); @@ -1810,8 +1810,8 @@ default ValidateContextOutput validateContext(ValidateContextInput input) { * Recalculates and updates the priority weights for all contexts in the workspace based on their * dimensions. * - * @throws InternalServerError * @throws WebhookFailed + * @throws InternalServerError */ default WeightRecomputeOutput weightRecompute(WeightRecomputeInput input) { return weightRecompute(input, null); @@ -1821,8 +1821,8 @@ default WeightRecomputeOutput weightRecompute(WeightRecomputeInput input) { * Recalculates and updates the priority weights for all contexts in the workspace based on their * dimensions. * - * @throws InternalServerError * @throws WebhookFailed + * @throws InternalServerError */ WeightRecomputeOutput weightRecompute(WeightRecomputeInput input, RequestOverrideConfig overrideConfig); @@ -1857,12 +1857,12 @@ final class Builder extends Client.Builder { Node.objectNode() ); - private static final HttpBasicAuthTrait httpBasicAuthScheme = new HttpBasicAuthTrait(); - private static final AuthSchemeFactory httpBasicAuthSchemeFactory = new HttpBasicAuthAuthScheme.Factory(); - private static final HttpBearerAuthTrait httpBearerAuthScheme = new HttpBearerAuthTrait(); private static final AuthSchemeFactory httpBearerAuthSchemeFactory = new HttpBearerAuthScheme.Factory(); + private static final HttpBasicAuthTrait httpBasicAuthScheme = new HttpBasicAuthTrait(); + private static final AuthSchemeFactory httpBasicAuthSchemeFactory = new HttpBasicAuthAuthScheme.Factory(); + private Builder() { configBuilder().putSupportedAuthSchemes(httpBasicAuthSchemeFactory.createAuthScheme(httpBasicAuthScheme), httpBearerAuthSchemeFactory.createAuthScheme(httpBearerAuthScheme)); } diff --git a/clients/java/sdk/src/main/java/io/juspay/superposition/client/SuperpositionClientImpl.java b/clients/java/sdk/src/main/java/io/juspay/superposition/client/SuperpositionClientImpl.java index 3adc49d36..a5c489143 100644 --- a/clients/java/sdk/src/main/java/io/juspay/superposition/client/SuperpositionClientImpl.java +++ b/clients/java/sdk/src/main/java/io/juspay/superposition/client/SuperpositionClientImpl.java @@ -272,9 +272,9 @@ @SmithyGenerated final class SuperpositionClientImpl extends Client implements SuperpositionClient { private static final TypeRegistry TYPE_REGISTRY = TypeRegistry.builder() - .putType(NotAuthorizedException.$ID, NotAuthorizedException.class, NotAuthorizedException::builder) .putType(ValidationException.$ID, ValidationException.class, ValidationException::builder) .putType(AccessDeniedException.$ID, AccessDeniedException.class, AccessDeniedException::builder) + .putType(NotAuthorizedException.$ID, NotAuthorizedException.class, NotAuthorizedException::builder) .putType(InternalFailureException.$ID, InternalFailureException.class, InternalFailureException::builder) .putType(UnknownOperationException.$ID, UnknownOperationException.class, UnknownOperationException::builder) .putType(MalformedRequestException.$ID, MalformedRequestException.class, MalformedRequestException::builder) diff --git a/clients/java/sdk/src/main/java/io/juspay/superposition/model/BulkOperation.java b/clients/java/sdk/src/main/java/io/juspay/superposition/model/BulkOperation.java index 810f0ff65..43b69bb0f 100644 --- a/clients/java/sdk/src/main/java/io/juspay/superposition/model/BulkOperation.java +++ b/clients/java/sdk/src/main/java/io/juspay/superposition/model/BulkOperation.java @@ -27,8 +27,8 @@ public final class BulkOperation implements ApiOperation SCHEMES = List.of(ShapeId.from("smithy.api#httpBasicAuth"), ShapeId.from("smithy.api#httpBearerAuth")); diff --git a/clients/java/sdk/src/main/java/io/juspay/superposition/model/ConcludeExperimentInput.java b/clients/java/sdk/src/main/java/io/juspay/superposition/model/ConcludeExperimentInput.java index 4bddd7306..aee3fb95a 100644 --- a/clients/java/sdk/src/main/java/io/juspay/superposition/model/ConcludeExperimentInput.java +++ b/clients/java/sdk/src/main/java/io/juspay/superposition/model/ConcludeExperimentInput.java @@ -36,6 +36,8 @@ public final class ConcludeExperimentInput implements SerializableStruct { .putMember("description", PreludeSchemas.STRING) .putMember("change_reason", PreludeSchemas.STRING, new RequiredTrait()) + .putMember("config_tags", PreludeSchemas.STRING, + new HttpHeaderTrait("x-config-tags")) .build(); private static final Schema $SCHEMA_WORKSPACE_ID = $SCHEMA.member("workspace_id"); @@ -44,6 +46,7 @@ public final class ConcludeExperimentInput implements SerializableStruct { private static final Schema $SCHEMA_CHOSEN_VARIANT = $SCHEMA.member("chosen_variant"); private static final Schema $SCHEMA_DESCRIPTION = $SCHEMA.member("description"); private static final Schema $SCHEMA_CHANGE_REASON = $SCHEMA.member("change_reason"); + private static final Schema $SCHEMA_CONFIG_TAGS = $SCHEMA.member("config_tags"); private final transient String workspaceId; private final transient String orgId; @@ -51,6 +54,7 @@ public final class ConcludeExperimentInput implements SerializableStruct { private final transient String chosenVariant; private final transient String description; private final transient String changeReason; + private final transient String configTags; private ConcludeExperimentInput(Builder builder) { this.workspaceId = builder.workspaceId; @@ -59,6 +63,7 @@ private ConcludeExperimentInput(Builder builder) { this.chosenVariant = builder.chosenVariant; this.description = builder.description; this.changeReason = builder.changeReason; + this.configTags = builder.configTags; } public String workspaceId() { @@ -85,6 +90,10 @@ public String changeReason() { return changeReason; } + public String configTags() { + return configTags; + } + @Override public String toString() { return ToStringSerializer.serialize(this); @@ -104,12 +113,13 @@ public boolean equals(Object other) { && Objects.equals(this.id, that.id) && Objects.equals(this.chosenVariant, that.chosenVariant) && Objects.equals(this.description, that.description) - && Objects.equals(this.changeReason, that.changeReason); + && Objects.equals(this.changeReason, that.changeReason) + && Objects.equals(this.configTags, that.configTags); } @Override public int hashCode() { - return Objects.hash(workspaceId, orgId, id, chosenVariant, description, changeReason); + return Objects.hash(workspaceId, orgId, id, chosenVariant, description, changeReason, configTags); } @Override @@ -127,6 +137,9 @@ public void serializeMembers(ShapeSerializer serializer) { serializer.writeString($SCHEMA_DESCRIPTION, description); } serializer.writeString($SCHEMA_CHANGE_REASON, changeReason); + if (configTags != null) { + serializer.writeString($SCHEMA_CONFIG_TAGS, configTags); + } } @Override @@ -139,6 +152,7 @@ public T getMemberValue(Schema member) { case 3 -> (T) SchemaUtils.validateSameMember($SCHEMA_CHOSEN_VARIANT, member, chosenVariant); case 4 -> (T) SchemaUtils.validateSameMember($SCHEMA_CHANGE_REASON, member, changeReason); case 5 -> (T) SchemaUtils.validateSameMember($SCHEMA_DESCRIPTION, member, description); + case 6 -> (T) SchemaUtils.validateSameMember($SCHEMA_CONFIG_TAGS, member, configTags); default -> throw new IllegalArgumentException("Attempted to get non-existent member: " + member.id()); }; } @@ -158,6 +172,7 @@ public Builder toBuilder() { builder.chosenVariant(this.chosenVariant); builder.description(this.description); builder.changeReason(this.changeReason); + builder.configTags(this.configTags); return builder; } @@ -179,6 +194,7 @@ public static final class Builder implements ShapeBuilder chosenVariant((String) SchemaUtils.validateSameMember($SCHEMA_CHOSEN_VARIANT, member, value)); case 4 -> changeReason((String) SchemaUtils.validateSameMember($SCHEMA_CHANGE_REASON, member, value)); case 5 -> description((String) SchemaUtils.validateSameMember($SCHEMA_DESCRIPTION, member, value)); + case 6 -> configTags((String) SchemaUtils.validateSameMember($SCHEMA_CONFIG_TAGS, member, value)); default -> ShapeBuilder.super.setMemberValue(member, value); } } @@ -312,6 +337,7 @@ public void accept(Builder builder, Schema member, ShapeDeserializer de) { case 3 -> builder.chosenVariant(de.readString(member)); case 4 -> builder.changeReason(de.readString(member)); case 5 -> builder.description(de.readString(member)); + case 6 -> builder.configTags(de.readString(member)); default -> throw new IllegalArgumentException("Unexpected member: " + member.memberName()); } } diff --git a/clients/java/sdk/src/main/java/io/juspay/superposition/model/CreateExperimentInput.java b/clients/java/sdk/src/main/java/io/juspay/superposition/model/CreateExperimentInput.java index e7d94a192..5bb7976eb 100644 --- a/clients/java/sdk/src/main/java/io/juspay/superposition/model/CreateExperimentInput.java +++ b/clients/java/sdk/src/main/java/io/juspay/superposition/model/CreateExperimentInput.java @@ -44,6 +44,10 @@ public final class CreateExperimentInput implements SerializableStruct { new RequiredTrait()) .putMember("metrics", PreludeSchemas.DOCUMENT) .putMember("experiment_group_id", PreludeSchemas.STRING) + .putMember("idempotency_key", PreludeSchemas.STRING, + new HttpHeaderTrait("idempotency-key")) + .putMember("config_tags", PreludeSchemas.STRING, + new HttpHeaderTrait("x-config-tags")) .build(); private static final Schema $SCHEMA_WORKSPACE_ID = $SCHEMA.member("workspace_id"); @@ -56,6 +60,8 @@ public final class CreateExperimentInput implements SerializableStruct { private static final Schema $SCHEMA_CHANGE_REASON = $SCHEMA.member("change_reason"); private static final Schema $SCHEMA_METRICS = $SCHEMA.member("metrics"); private static final Schema $SCHEMA_EXPERIMENT_GROUP_ID = $SCHEMA.member("experiment_group_id"); + private static final Schema $SCHEMA_IDEMPOTENCY_KEY = $SCHEMA.member("idempotency_key"); + private static final Schema $SCHEMA_CONFIG_TAGS = $SCHEMA.member("config_tags"); private final transient String workspaceId; private final transient String orgId; @@ -67,6 +73,8 @@ public final class CreateExperimentInput implements SerializableStruct { private final transient String changeReason; private final transient Document metrics; private final transient String experimentGroupId; + private final transient String idempotencyKey; + private final transient String configTags; private CreateExperimentInput(Builder builder) { this.workspaceId = builder.workspaceId; @@ -79,6 +87,8 @@ private CreateExperimentInput(Builder builder) { this.changeReason = builder.changeReason; this.metrics = builder.metrics; this.experimentGroupId = builder.experimentGroupId; + this.idempotencyKey = builder.idempotencyKey; + this.configTags = builder.configTags; } public String workspaceId() { @@ -129,6 +139,14 @@ public String experimentGroupId() { return experimentGroupId; } + public String idempotencyKey() { + return idempotencyKey; + } + + public String configTags() { + return configTags; + } + @Override public String toString() { return ToStringSerializer.serialize(this); @@ -152,12 +170,14 @@ public boolean equals(Object other) { && Objects.equals(this.description, that.description) && Objects.equals(this.changeReason, that.changeReason) && Objects.equals(this.metrics, that.metrics) - && Objects.equals(this.experimentGroupId, that.experimentGroupId); + && Objects.equals(this.experimentGroupId, that.experimentGroupId) + && Objects.equals(this.idempotencyKey, that.idempotencyKey) + && Objects.equals(this.configTags, that.configTags); } @Override public int hashCode() { - return Objects.hash(workspaceId, orgId, name, experimentType, context, variants, description, changeReason, metrics, experimentGroupId); + return Objects.hash(workspaceId, orgId, name, experimentType, context, variants, description, changeReason, metrics, experimentGroupId, idempotencyKey, configTags); } @Override @@ -183,6 +203,12 @@ public void serializeMembers(ShapeSerializer serializer) { if (experimentGroupId != null) { serializer.writeString($SCHEMA_EXPERIMENT_GROUP_ID, experimentGroupId); } + if (idempotencyKey != null) { + serializer.writeString($SCHEMA_IDEMPOTENCY_KEY, idempotencyKey); + } + if (configTags != null) { + serializer.writeString($SCHEMA_CONFIG_TAGS, configTags); + } } @Override @@ -199,6 +225,8 @@ public T getMemberValue(Schema member) { case 7 -> (T) SchemaUtils.validateSameMember($SCHEMA_EXPERIMENT_TYPE, member, experimentType); case 8 -> (T) SchemaUtils.validateSameMember($SCHEMA_METRICS, member, metrics); case 9 -> (T) SchemaUtils.validateSameMember($SCHEMA_EXPERIMENT_GROUP_ID, member, experimentGroupId); + case 10 -> (T) SchemaUtils.validateSameMember($SCHEMA_IDEMPOTENCY_KEY, member, idempotencyKey); + case 11 -> (T) SchemaUtils.validateSameMember($SCHEMA_CONFIG_TAGS, member, configTags); default -> throw new IllegalArgumentException("Attempted to get non-existent member: " + member.id()); }; } @@ -222,6 +250,8 @@ public Builder toBuilder() { builder.changeReason(this.changeReason); builder.metrics(this.metrics); builder.experimentGroupId(this.experimentGroupId); + builder.idempotencyKey(this.idempotencyKey); + builder.configTags(this.configTags); return builder; } @@ -247,6 +277,8 @@ public static final class Builder implements ShapeBuilder private String changeReason; private Document metrics; private String experimentGroupId; + private String idempotencyKey; + private String configTags; private Builder() {} @@ -349,6 +381,22 @@ public Builder experimentGroupId(String experimentGroupId) { return this; } + /** + * @return this builder. + */ + public Builder idempotencyKey(String idempotencyKey) { + this.idempotencyKey = idempotencyKey; + return this; + } + + /** + * @return this builder. + */ + public Builder configTags(String configTags) { + this.configTags = configTags; + return this; + } + @Override public CreateExperimentInput build() { tracker.validate(); @@ -369,6 +417,8 @@ public void setMemberValue(Schema member, Object value) { case 7 -> experimentType((ExperimentType) SchemaUtils.validateSameMember($SCHEMA_EXPERIMENT_TYPE, member, value)); case 8 -> metrics((Document) SchemaUtils.validateSameMember($SCHEMA_METRICS, member, value)); case 9 -> experimentGroupId((String) SchemaUtils.validateSameMember($SCHEMA_EXPERIMENT_GROUP_ID, member, value)); + case 10 -> idempotencyKey((String) SchemaUtils.validateSameMember($SCHEMA_IDEMPOTENCY_KEY, member, value)); + case 11 -> configTags((String) SchemaUtils.validateSameMember($SCHEMA_CONFIG_TAGS, member, value)); default -> ShapeBuilder.super.setMemberValue(member, value); } } @@ -430,6 +480,8 @@ public void accept(Builder builder, Schema member, ShapeDeserializer de) { case 7 -> builder.experimentType(ExperimentType.builder().deserializeMember(de, member).build()); case 8 -> builder.metrics(de.readDocument()); case 9 -> builder.experimentGroupId(de.readString(member)); + case 10 -> builder.idempotencyKey(de.readString(member)); + case 11 -> builder.configTags(de.readString(member)); default -> throw new IllegalArgumentException("Unexpected member: " + member.memberName()); } } diff --git a/clients/java/sdk/src/main/java/io/juspay/superposition/model/DiscardExperimentInput.java b/clients/java/sdk/src/main/java/io/juspay/superposition/model/DiscardExperimentInput.java index d424fb6ca..5d71f0ab8 100644 --- a/clients/java/sdk/src/main/java/io/juspay/superposition/model/DiscardExperimentInput.java +++ b/clients/java/sdk/src/main/java/io/juspay/superposition/model/DiscardExperimentInput.java @@ -33,23 +33,28 @@ public final class DiscardExperimentInput implements SerializableStruct { new RequiredTrait()) .putMember("change_reason", PreludeSchemas.STRING, new RequiredTrait()) + .putMember("config_tags", PreludeSchemas.STRING, + new HttpHeaderTrait("x-config-tags")) .build(); private static final Schema $SCHEMA_WORKSPACE_ID = $SCHEMA.member("workspace_id"); private static final Schema $SCHEMA_ORG_ID = $SCHEMA.member("org_id"); private static final Schema $SCHEMA_ID = $SCHEMA.member("id"); private static final Schema $SCHEMA_CHANGE_REASON = $SCHEMA.member("change_reason"); + private static final Schema $SCHEMA_CONFIG_TAGS = $SCHEMA.member("config_tags"); private final transient String workspaceId; private final transient String orgId; private final transient String id; private final transient String changeReason; + private final transient String configTags; private DiscardExperimentInput(Builder builder) { this.workspaceId = builder.workspaceId; this.orgId = builder.orgId; this.id = builder.id; this.changeReason = builder.changeReason; + this.configTags = builder.configTags; } public String workspaceId() { @@ -68,6 +73,10 @@ public String changeReason() { return changeReason; } + public String configTags() { + return configTags; + } + @Override public String toString() { return ToStringSerializer.serialize(this); @@ -85,12 +94,13 @@ public boolean equals(Object other) { return Objects.equals(this.workspaceId, that.workspaceId) && Objects.equals(this.orgId, that.orgId) && Objects.equals(this.id, that.id) - && Objects.equals(this.changeReason, that.changeReason); + && Objects.equals(this.changeReason, that.changeReason) + && Objects.equals(this.configTags, that.configTags); } @Override public int hashCode() { - return Objects.hash(workspaceId, orgId, id, changeReason); + return Objects.hash(workspaceId, orgId, id, changeReason, configTags); } @Override @@ -104,6 +114,9 @@ public void serializeMembers(ShapeSerializer serializer) { serializer.writeString($SCHEMA_ORG_ID, orgId); serializer.writeString($SCHEMA_ID, id); serializer.writeString($SCHEMA_CHANGE_REASON, changeReason); + if (configTags != null) { + serializer.writeString($SCHEMA_CONFIG_TAGS, configTags); + } } @Override @@ -114,6 +127,7 @@ public T getMemberValue(Schema member) { case 1 -> (T) SchemaUtils.validateSameMember($SCHEMA_ORG_ID, member, orgId); case 2 -> (T) SchemaUtils.validateSameMember($SCHEMA_ID, member, id); case 3 -> (T) SchemaUtils.validateSameMember($SCHEMA_CHANGE_REASON, member, changeReason); + case 4 -> (T) SchemaUtils.validateSameMember($SCHEMA_CONFIG_TAGS, member, configTags); default -> throw new IllegalArgumentException("Attempted to get non-existent member: " + member.id()); }; } @@ -131,6 +145,7 @@ public Builder toBuilder() { builder.orgId(this.orgId); builder.id(this.id); builder.changeReason(this.changeReason); + builder.configTags(this.configTags); return builder; } @@ -150,6 +165,7 @@ public static final class Builder implements ShapeBuilder orgId((String) SchemaUtils.validateSameMember($SCHEMA_ORG_ID, member, value)); case 2 -> id((String) SchemaUtils.validateSameMember($SCHEMA_ID, member, value)); case 3 -> changeReason((String) SchemaUtils.validateSameMember($SCHEMA_CHANGE_REASON, member, value)); + case 4 -> configTags((String) SchemaUtils.validateSameMember($SCHEMA_CONFIG_TAGS, member, value)); default -> ShapeBuilder.super.setMemberValue(member, value); } } @@ -258,6 +283,7 @@ public void accept(Builder builder, Schema member, ShapeDeserializer de) { case 1 -> builder.orgId(de.readString(member)); case 2 -> builder.id(de.readString(member)); case 3 -> builder.changeReason(de.readString(member)); + case 4 -> builder.configTags(de.readString(member)); default -> throw new IllegalArgumentException("Unexpected member: " + member.memberName()); } } diff --git a/clients/java/sdk/src/main/java/io/juspay/superposition/model/Experiments.java b/clients/java/sdk/src/main/java/io/juspay/superposition/model/Experiments.java index 7d275572d..33b89f095 100644 --- a/clients/java/sdk/src/main/java/io/juspay/superposition/model/Experiments.java +++ b/clients/java/sdk/src/main/java/io/juspay/superposition/model/Experiments.java @@ -32,6 +32,7 @@ public final class Experiments implements ApiResource { Map.entry("context", SharedSchemas.CONDITION), Map.entry("started_at", SharedSchemas.DATE_TIME), Map.entry("experiment_group_id", PreludeSchemas.STRING), + Map.entry("idempotency_key", PreludeSchemas.STRING), Map.entry("metrics", PreludeSchemas.DOCUMENT), Map.entry("last_modified", SharedSchemas.DATE_TIME), Map.entry("started_by", PreludeSchemas.STRING), diff --git a/clients/java/sdk/src/main/java/io/juspay/superposition/model/UpdateOverridesExperimentInput.java b/clients/java/sdk/src/main/java/io/juspay/superposition/model/UpdateOverridesExperimentInput.java index b782cf9a5..74b5029ad 100644 --- a/clients/java/sdk/src/main/java/io/juspay/superposition/model/UpdateOverridesExperimentInput.java +++ b/clients/java/sdk/src/main/java/io/juspay/superposition/model/UpdateOverridesExperimentInput.java @@ -41,6 +41,8 @@ public final class UpdateOverridesExperimentInput implements SerializableStruct new RequiredTrait()) .putMember("metrics", PreludeSchemas.DOCUMENT) .putMember("experiment_group_id", PreludeSchemas.STRING) + .putMember("config_tags", PreludeSchemas.STRING, + new HttpHeaderTrait("x-config-tags")) .build(); private static final Schema $SCHEMA_WORKSPACE_ID = $SCHEMA.member("workspace_id"); @@ -51,6 +53,7 @@ public final class UpdateOverridesExperimentInput implements SerializableStruct private static final Schema $SCHEMA_CHANGE_REASON = $SCHEMA.member("change_reason"); private static final Schema $SCHEMA_METRICS = $SCHEMA.member("metrics"); private static final Schema $SCHEMA_EXPERIMENT_GROUP_ID = $SCHEMA.member("experiment_group_id"); + private static final Schema $SCHEMA_CONFIG_TAGS = $SCHEMA.member("config_tags"); private final transient String workspaceId; private final transient String orgId; @@ -60,6 +63,7 @@ public final class UpdateOverridesExperimentInput implements SerializableStruct private final transient String changeReason; private final transient Document metrics; private final transient String experimentGroupId; + private final transient String configTags; private UpdateOverridesExperimentInput(Builder builder) { this.workspaceId = builder.workspaceId; @@ -70,6 +74,7 @@ private UpdateOverridesExperimentInput(Builder builder) { this.changeReason = builder.changeReason; this.metrics = builder.metrics; this.experimentGroupId = builder.experimentGroupId; + this.configTags = builder.configTags; } public String workspaceId() { @@ -111,6 +116,10 @@ public String experimentGroupId() { return experimentGroupId; } + public String configTags() { + return configTags; + } + @Override public String toString() { return ToStringSerializer.serialize(this); @@ -132,12 +141,13 @@ public boolean equals(Object other) { && Objects.equals(this.description, that.description) && Objects.equals(this.changeReason, that.changeReason) && Objects.equals(this.metrics, that.metrics) - && Objects.equals(this.experimentGroupId, that.experimentGroupId); + && Objects.equals(this.experimentGroupId, that.experimentGroupId) + && Objects.equals(this.configTags, that.configTags); } @Override public int hashCode() { - return Objects.hash(workspaceId, orgId, id, variantList, description, changeReason, metrics, experimentGroupId); + return Objects.hash(workspaceId, orgId, id, variantList, description, changeReason, metrics, experimentGroupId, configTags); } @Override @@ -161,6 +171,9 @@ public void serializeMembers(ShapeSerializer serializer) { if (experimentGroupId != null) { serializer.writeString($SCHEMA_EXPERIMENT_GROUP_ID, experimentGroupId); } + if (configTags != null) { + serializer.writeString($SCHEMA_CONFIG_TAGS, configTags); + } } @Override @@ -175,6 +188,7 @@ public T getMemberValue(Schema member) { case 5 -> (T) SchemaUtils.validateSameMember($SCHEMA_DESCRIPTION, member, description); case 6 -> (T) SchemaUtils.validateSameMember($SCHEMA_METRICS, member, metrics); case 7 -> (T) SchemaUtils.validateSameMember($SCHEMA_EXPERIMENT_GROUP_ID, member, experimentGroupId); + case 8 -> (T) SchemaUtils.validateSameMember($SCHEMA_CONFIG_TAGS, member, configTags); default -> throw new IllegalArgumentException("Attempted to get non-existent member: " + member.id()); }; } @@ -196,6 +210,7 @@ public Builder toBuilder() { builder.changeReason(this.changeReason); builder.metrics(this.metrics); builder.experimentGroupId(this.experimentGroupId); + builder.configTags(this.configTags); return builder; } @@ -219,6 +234,7 @@ public static final class Builder implements ShapeBuilder description((String) SchemaUtils.validateSameMember($SCHEMA_DESCRIPTION, member, value)); case 6 -> metrics((Document) SchemaUtils.validateSameMember($SCHEMA_METRICS, member, value)); case 7 -> experimentGroupId((String) SchemaUtils.validateSameMember($SCHEMA_EXPERIMENT_GROUP_ID, member, value)); + case 8 -> configTags((String) SchemaUtils.validateSameMember($SCHEMA_CONFIG_TAGS, member, value)); default -> ShapeBuilder.super.setMemberValue(member, value); } } @@ -374,6 +399,7 @@ public void accept(Builder builder, Schema member, ShapeDeserializer de) { case 5 -> builder.description(de.readString(member)); case 6 -> builder.metrics(de.readDocument()); case 7 -> builder.experimentGroupId(de.readString(member)); + case 8 -> builder.configTags(de.readString(member)); default -> throw new IllegalArgumentException("Unexpected member: " + member.memberName()); } } diff --git a/clients/javascript/sdk/src/commands/ConcludeExperimentCommand.ts b/clients/javascript/sdk/src/commands/ConcludeExperimentCommand.ts index 041b8b99c..0dc7c2ef4 100644 --- a/clients/javascript/sdk/src/commands/ConcludeExperimentCommand.ts +++ b/clients/javascript/sdk/src/commands/ConcludeExperimentCommand.ts @@ -49,6 +49,7 @@ export interface ConcludeExperimentCommandOutput extends ExperimentResponse, __M * chosen_variant: "STRING_VALUE", // required * description: "STRING_VALUE", * change_reason: "STRING_VALUE", // required + * config_tags: "STRING_VALUE", * }; * const command = new ConcludeExperimentCommand(input); * const response = await client.send(command); diff --git a/clients/javascript/sdk/src/commands/CreateExperimentCommand.ts b/clients/javascript/sdk/src/commands/CreateExperimentCommand.ts index 391828b13..5e4425159 100644 --- a/clients/javascript/sdk/src/commands/CreateExperimentCommand.ts +++ b/clients/javascript/sdk/src/commands/CreateExperimentCommand.ts @@ -65,6 +65,8 @@ export interface CreateExperimentCommandOutput extends ExperimentResponse, __Met * change_reason: "STRING_VALUE", // required * metrics: "DOCUMENT_VALUE", * experiment_group_id: "STRING_VALUE", + * idempotency_key: "STRING_VALUE", + * config_tags: "STRING_VALUE", * }; * const command = new CreateExperimentCommand(input); * const response = await client.send(command); diff --git a/clients/javascript/sdk/src/commands/DiscardExperimentCommand.ts b/clients/javascript/sdk/src/commands/DiscardExperimentCommand.ts index ec4f65821..a460b822f 100644 --- a/clients/javascript/sdk/src/commands/DiscardExperimentCommand.ts +++ b/clients/javascript/sdk/src/commands/DiscardExperimentCommand.ts @@ -47,6 +47,7 @@ export interface DiscardExperimentCommandOutput extends ExperimentResponse, __Me * org_id: "STRING_VALUE", // required * id: "STRING_VALUE", // required * change_reason: "STRING_VALUE", // required + * config_tags: "STRING_VALUE", * }; * const command = new DiscardExperimentCommand(input); * const response = await client.send(command); diff --git a/clients/javascript/sdk/src/commands/UpdateOverridesExperimentCommand.ts b/clients/javascript/sdk/src/commands/UpdateOverridesExperimentCommand.ts index 36d437a20..3eaeb37cb 100644 --- a/clients/javascript/sdk/src/commands/UpdateOverridesExperimentCommand.ts +++ b/clients/javascript/sdk/src/commands/UpdateOverridesExperimentCommand.ts @@ -58,6 +58,7 @@ export interface UpdateOverridesExperimentCommandOutput extends ExperimentRespon * change_reason: "STRING_VALUE", // required * metrics: "DOCUMENT_VALUE", * experiment_group_id: "STRING_VALUE", + * config_tags: "STRING_VALUE", * }; * const command = new UpdateOverridesExperimentCommand(input); * const response = await client.send(command); diff --git a/clients/javascript/sdk/src/models/models_0.ts b/clients/javascript/sdk/src/models/models_0.ts index 0a169c822..1d4ba1186 100644 --- a/clients/javascript/sdk/src/models/models_0.ts +++ b/clients/javascript/sdk/src/models/models_0.ts @@ -614,6 +614,7 @@ export interface ConcludeExperimentInput { chosen_variant: string | undefined; description?: string | undefined; change_reason: string | undefined; + config_tags?: string | undefined; } /** @@ -1328,6 +1329,8 @@ export interface CreateExperimentRequest { change_reason: string | undefined; metrics?: __DocumentType | undefined; experiment_group_id?: string | undefined; + idempotency_key?: string | undefined; + config_tags?: string | undefined; } /** @@ -1912,6 +1915,7 @@ export interface DiscardExperimentInput { org_id: string | undefined; id: string | undefined; change_reason: string | undefined; + config_tags?: string | undefined; } /** @@ -2259,6 +2263,8 @@ export interface UpdateOverrideRequest { * @public */ experiment_group_id?: string | undefined; + + config_tags?: string | undefined; } /** diff --git a/clients/javascript/sdk/src/protocols/Aws_restJson1.ts b/clients/javascript/sdk/src/protocols/Aws_restJson1.ts index fd8aa6c2f..67da048dd 100644 --- a/clients/javascript/sdk/src/protocols/Aws_restJson1.ts +++ b/clients/javascript/sdk/src/protocols/Aws_restJson1.ts @@ -509,6 +509,7 @@ export const se_ConcludeExperimentCommand = async( 'content-type': 'application/json', [_xw]: input[_wi]!, [_xoi]: input[_oi]!, + [_xct]: input[_ct]!, }); b.bp("/experiments/{id}/conclude"); b.p('id', () => input.id!, '{id}', false) @@ -626,6 +627,8 @@ export const se_CreateExperimentCommand = async( 'content-type': 'application/json', [_xw]: input[_wi]!, [_xoi]: input[_oi]!, + [_ik_]: input[_ik]!, + [_xct]: input[_ct]!, }); b.bp("/experiments"); let body: any; @@ -1075,6 +1078,7 @@ export const se_DiscardExperimentCommand = async( 'content-type': 'application/json', [_xw]: input[_wi]!, [_xoi]: input[_oi]!, + [_xct]: input[_ct]!, }); b.bp("/experiments/{id}/discard"); b.p('id', () => input.id!, '{id}', false) @@ -2419,6 +2423,7 @@ export const se_UpdateOverridesExperimentCommand = async( 'content-type': 'application/json', [_xw]: input[_wi]!, [_xoi]: input[_oi]!, + [_xct]: input[_ct]!, }); b.bp("/experiments/{id}/overrides"); b.p('id', () => input.id!, '{id}', false) @@ -6263,6 +6268,8 @@ const de_CommandError = async( const _geo = "global_experiments_only"; const _gt = "group_type"; const _i = "identifier"; + const _ik = "idempotency_key"; + const _ik_ = "idempotency-key"; const _ims = "if_modified_since"; const _ims_ = "if-modified-since"; const _lm = "last-modified"; diff --git a/clients/python/sdk/superposition_sdk/_private/schemas.py b/clients/python/sdk/superposition_sdk/_private/schemas.py index ba53e6a7b..63ca814c8 100644 --- a/clients/python/sdk/superposition_sdk/_private/schemas.py +++ b/clients/python/sdk/superposition_sdk/_private/schemas.py @@ -1407,6 +1407,16 @@ ], }, + "config_tags": { + "target": STRING, + "index": 6, + "traits": [ + Trait.new(id=ShapeID("smithy.api#httpHeader"), value="x-config-tags"), + Trait.new(id=ShapeID("smithy.api#notProperty")), + + ], + }, + } ) @@ -4911,6 +4921,26 @@ "index": 9, }, + "idempotency_key": { + "target": STRING, + "index": 10, + "traits": [ + Trait.new(id=ShapeID("smithy.api#httpHeader"), value="idempotency-key"), + Trait.new(id=ShapeID("smithy.api#notProperty")), + + ], + }, + + "config_tags": { + "target": STRING, + "index": 11, + "traits": [ + Trait.new(id=ShapeID("smithy.api#httpHeader"), value="x-config-tags"), + Trait.new(id=ShapeID("smithy.api#notProperty")), + + ], + }, + } ) @@ -9148,6 +9178,16 @@ ], }, + "config_tags": { + "target": STRING, + "index": 4, + "traits": [ + Trait.new(id=ShapeID("smithy.api#httpHeader"), value="x-config-tags"), + Trait.new(id=ShapeID("smithy.api#notProperty")), + + ], + }, + } ) @@ -12030,6 +12070,16 @@ "index": 7, }, + "config_tags": { + "target": STRING, + "index": 8, + "traits": [ + Trait.new(id=ShapeID("smithy.api#httpHeader"), value="x-config-tags"), + Trait.new(id=ShapeID("smithy.api#notProperty")), + + ], + }, + } ) diff --git a/clients/python/sdk/superposition_sdk/deserialize.py b/clients/python/sdk/superposition_sdk/deserialize.py index e387a0d7c..e289d3a24 100644 --- a/clients/python/sdk/superposition_sdk/deserialize.py +++ b/clients/python/sdk/superposition_sdk/deserialize.py @@ -182,12 +182,12 @@ async def _deserialize_error_bulk_operation(http_response: HTTPResponse, config: case "internalservererror": return await _deserialize_error_internal_server_error(http_response, config, parsed_body, message) - case "webhookfailed": - return await _deserialize_error_webhook_failed(http_response, config, parsed_body, message) - case "resourcenotfound": return await _deserialize_error_resource_not_found(http_response, config, parsed_body, message) + case "webhookfailed": + return await _deserialize_error_webhook_failed(http_response, config, parsed_body, message) + case _: return UnknownApiError(f"{code}: {message}") diff --git a/clients/python/sdk/superposition_sdk/models.py b/clients/python/sdk/superposition_sdk/models.py index 4d2fae503..14eb3f950 100644 --- a/clients/python/sdk/superposition_sdk/models.py +++ b/clients/python/sdk/superposition_sdk/models.py @@ -683,7 +683,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -886,7 +886,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -1160,7 +1160,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -1964,12 +1964,12 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: input_schema = _SCHEMA_BULK_OPERATION_INPUT, output_schema = _SCHEMA_BULK_OPERATION_OUTPUT, error_registry = TypeRegistry({ - ShapeID("io.superposition#InternalServerError"): InternalServerError, + ShapeID("io.superposition#ResourceNotFound"): ResourceNotFound, ShapeID("io.superposition#WebhookFailed"): WebhookFailed, -ShapeID("io.superposition#ResourceNotFound"): ResourceNotFound, +ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -2013,6 +2013,7 @@ class ConcludeExperimentInput: chosen_variant: str | None = None description: str | None = None change_reason: str | None = None + config_tags: str | None = None def serialize(self, serializer: ShapeSerializer): serializer.write_struct(_SCHEMA_CONCLUDE_EXPERIMENT_INPUT, self) @@ -2055,6 +2056,9 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: case 5: kwargs["change_reason"] = de.read_string(_SCHEMA_CONCLUDE_EXPERIMENT_INPUT.members["change_reason"]) + case 6: + kwargs["config_tags"] = de.read_string(_SCHEMA_CONCLUDE_EXPERIMENT_INPUT.members["config_tags"]) + case _: logger.debug("Unexpected member schema: %s", schema) @@ -2259,7 +2263,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -2776,7 +2780,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -2873,7 +2877,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -2970,7 +2974,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -3107,7 +3111,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -3244,7 +3248,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -3414,7 +3418,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -3594,7 +3598,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -3759,7 +3763,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -3844,7 +3848,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -4004,7 +4008,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -4164,7 +4168,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -4352,7 +4356,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -4517,7 +4521,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -4682,7 +4686,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -4769,7 +4773,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -4930,11 +4934,11 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: input_schema = _SCHEMA_WEIGHT_RECOMPUTE_INPUT, output_schema = _SCHEMA_WEIGHT_RECOMPUTE_OUTPUT, error_registry = TypeRegistry({ - ShapeID("io.superposition#InternalServerError"): InternalServerError, -ShapeID("io.superposition#WebhookFailed"): WebhookFailed, + ShapeID("io.superposition#WebhookFailed"): WebhookFailed, +ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -5168,7 +5172,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -5397,7 +5401,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -5422,6 +5426,8 @@ class CreateExperimentInput: change_reason: str | None = None metrics: Document | None = None experiment_group_id: str | None = None + idempotency_key: str | None = None + config_tags: str | None = None def serialize(self, serializer: ShapeSerializer): serializer.write_struct(_SCHEMA_CREATE_EXPERIMENT_INPUT, self) @@ -5491,6 +5497,12 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: case 9: kwargs["experiment_group_id"] = de.read_string(_SCHEMA_CREATE_EXPERIMENT_INPUT.members["experiment_group_id"]) + case 10: + kwargs["idempotency_key"] = de.read_string(_SCHEMA_CREATE_EXPERIMENT_INPUT.members["idempotency_key"]) + + case 11: + kwargs["config_tags"] = de.read_string(_SCHEMA_CREATE_EXPERIMENT_INPUT.members["config_tags"]) + case _: logger.debug("Unexpected member schema: %s", schema) @@ -5665,7 +5677,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -5884,7 +5896,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -6095,7 +6107,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -6282,7 +6294,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -6434,7 +6446,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -6595,7 +6607,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -6742,7 +6754,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -7012,7 +7024,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -7262,7 +7274,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -7343,7 +7355,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -7497,7 +7509,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -7734,7 +7746,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -7942,7 +7954,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -8023,7 +8035,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -8193,7 +8205,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -8273,7 +8285,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -8398,7 +8410,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -8531,7 +8543,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -8657,7 +8669,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -8737,7 +8749,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -8909,7 +8921,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -9160,7 +9172,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -9386,7 +9398,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -9398,6 +9410,7 @@ class DiscardExperimentInput: org_id: str | None = None id: str | None = None change_reason: str | None = None + config_tags: str | None = None def serialize(self, serializer: ShapeSerializer): serializer.write_struct(_SCHEMA_DISCARD_EXPERIMENT_INPUT, self) @@ -9428,6 +9441,9 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: case 3: kwargs["change_reason"] = de.read_string(_SCHEMA_DISCARD_EXPERIMENT_INPUT.members["change_reason"]) + case 4: + kwargs["config_tags"] = de.read_string(_SCHEMA_DISCARD_EXPERIMENT_INPUT.members["config_tags"]) + case _: logger.debug("Unexpected member schema: %s", schema) @@ -9603,7 +9619,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -10038,7 +10054,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -10208,7 +10224,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -10438,7 +10454,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -10630,7 +10646,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -10832,7 +10848,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -11043,7 +11059,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -11258,7 +11274,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -11475,7 +11491,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -11699,7 +11715,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -11916,7 +11932,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -11999,6 +12015,7 @@ class UpdateOverridesExperimentInput: change_reason: str | None = None metrics: Document | None = None experiment_group_id: str | None = None + config_tags: str | None = None def serialize(self, serializer: ShapeSerializer): serializer.write_struct(_SCHEMA_UPDATE_OVERRIDES_EXPERIMENT_INPUT, self) @@ -12053,6 +12070,9 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: case 7: kwargs["experiment_group_id"] = de.read_string(_SCHEMA_UPDATE_OVERRIDES_EXPERIMENT_INPUT.members["experiment_group_id"]) + case 8: + kwargs["config_tags"] = de.read_string(_SCHEMA_UPDATE_OVERRIDES_EXPERIMENT_INPUT.members["config_tags"]) + case _: logger.debug("Unexpected member schema: %s", schema) @@ -12228,7 +12248,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -12395,7 +12415,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -12663,7 +12683,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -12835,7 +12855,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -13157,7 +13177,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -13350,7 +13370,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -13497,7 +13517,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -13622,7 +13642,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -13755,7 +13775,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -13967,7 +13987,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -14093,7 +14113,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -14271,7 +14291,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -14449,7 +14469,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -14628,7 +14648,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -14854,7 +14874,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -15098,7 +15118,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -15344,7 +15364,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -15601,7 +15621,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -15859,7 +15879,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -15936,7 +15956,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -16115,7 +16135,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -16302,7 +16322,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -16387,7 +16407,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -16538,7 +16558,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -16697,7 +16717,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -16842,7 +16862,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -17081,7 +17101,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) @@ -17327,7 +17347,7 @@ def _consumer(schema: Schema, de: ShapeDeserializer) -> None: ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth"), + ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) diff --git a/clients/python/sdk/superposition_sdk/serialize.py b/clients/python/sdk/superposition_sdk/serialize.py index f17c3b4c8..5e6e6c985 100644 --- a/clients/python/sdk/superposition_sdk/serialize.py +++ b/clients/python/sdk/superposition_sdk/serialize.py @@ -256,6 +256,8 @@ async def _serialize_conclude_experiment(input: ConcludeExperimentInput, config: headers.extend(Fields([Field(name="x-workspace", values=[input.workspace_id])])) if input.org_id: headers.extend(Fields([Field(name="x-org-id", values=[input.org_id])])) + if input.config_tags: + headers.extend(Fields([Field(name="x-config-tags", values=[input.config_tags])])) return _HTTPRequest( destination=_URI( host="", @@ -406,6 +408,10 @@ async def _serialize_create_experiment(input: CreateExperimentInput, config: Con headers.extend(Fields([Field(name="x-workspace", values=[input.workspace_id])])) if input.org_id: headers.extend(Fields([Field(name="x-org-id", values=[input.org_id])])) + if input.idempotency_key: + headers.extend(Fields([Field(name="idempotency-key", values=[input.idempotency_key])])) + if input.config_tags: + headers.extend(Fields([Field(name="x-config-tags", values=[input.config_tags])])) return _HTTPRequest( destination=_URI( host="", @@ -1019,6 +1025,8 @@ async def _serialize_discard_experiment(input: DiscardExperimentInput, config: C headers.extend(Fields([Field(name="x-workspace", values=[input.workspace_id])])) if input.org_id: headers.extend(Fields([Field(name="x-org-id", values=[input.org_id])])) + if input.config_tags: + headers.extend(Fields([Field(name="x-config-tags", values=[input.config_tags])])) return _HTTPRequest( destination=_URI( host="", @@ -3035,6 +3043,8 @@ async def _serialize_update_overrides_experiment(input: UpdateOverridesExperimen headers.extend(Fields([Field(name="x-workspace", values=[input.workspace_id])])) if input.org_id: headers.extend(Fields([Field(name="x-org-id", values=[input.org_id])])) + if input.config_tags: + headers.extend(Fields([Field(name="x-config-tags", values=[input.config_tags])])) return _HTTPRequest( destination=_URI( host="", diff --git a/crates/superposition_sdk/src/client/conclude_experiment.rs b/crates/superposition_sdk/src/client/conclude_experiment.rs index 6d6d09591..4e29f67dd 100644 --- a/crates/superposition_sdk/src/client/conclude_experiment.rs +++ b/crates/superposition_sdk/src/client/conclude_experiment.rs @@ -9,6 +9,7 @@ impl super::Client { /// - [`chosen_variant(impl Into)`](crate::operation::conclude_experiment::builders::ConcludeExperimentFluentBuilder::chosen_variant) / [`set_chosen_variant(Option)`](crate::operation::conclude_experiment::builders::ConcludeExperimentFluentBuilder::set_chosen_variant):
required: **true**
(undocumented)
/// - [`description(impl Into)`](crate::operation::conclude_experiment::builders::ConcludeExperimentFluentBuilder::description) / [`set_description(Option)`](crate::operation::conclude_experiment::builders::ConcludeExperimentFluentBuilder::set_description):
required: **false**
(undocumented)
/// - [`change_reason(impl Into)`](crate::operation::conclude_experiment::builders::ConcludeExperimentFluentBuilder::change_reason) / [`set_change_reason(Option)`](crate::operation::conclude_experiment::builders::ConcludeExperimentFluentBuilder::set_change_reason):
required: **true**
(undocumented)
+ /// - [`config_tags(impl Into)`](crate::operation::conclude_experiment::builders::ConcludeExperimentFluentBuilder::config_tags) / [`set_config_tags(Option)`](crate::operation::conclude_experiment::builders::ConcludeExperimentFluentBuilder::set_config_tags):
required: **false**
(undocumented)
/// - On success, responds with [`ConcludeExperimentOutput`](crate::operation::conclude_experiment::ConcludeExperimentOutput) with field(s): /// - [`id(String)`](crate::operation::conclude_experiment::ConcludeExperimentOutput::id): (undocumented) /// - [`created_at(DateTime)`](crate::operation::conclude_experiment::ConcludeExperimentOutput::created_at): (undocumented) diff --git a/crates/superposition_sdk/src/client/create_experiment.rs b/crates/superposition_sdk/src/client/create_experiment.rs index c047add47..db32482ab 100644 --- a/crates/superposition_sdk/src/client/create_experiment.rs +++ b/crates/superposition_sdk/src/client/create_experiment.rs @@ -13,6 +13,8 @@ impl super::Client { /// - [`change_reason(impl Into)`](crate::operation::create_experiment::builders::CreateExperimentFluentBuilder::change_reason) / [`set_change_reason(Option)`](crate::operation::create_experiment::builders::CreateExperimentFluentBuilder::set_change_reason):
required: **true**
(undocumented)
/// - [`metrics(Document)`](crate::operation::create_experiment::builders::CreateExperimentFluentBuilder::metrics) / [`set_metrics(Option)`](crate::operation::create_experiment::builders::CreateExperimentFluentBuilder::set_metrics):
required: **false**
(undocumented)
/// - [`experiment_group_id(impl Into)`](crate::operation::create_experiment::builders::CreateExperimentFluentBuilder::experiment_group_id) / [`set_experiment_group_id(Option)`](crate::operation::create_experiment::builders::CreateExperimentFluentBuilder::set_experiment_group_id):
required: **false**
(undocumented)
+ /// - [`idempotency_key(impl Into)`](crate::operation::create_experiment::builders::CreateExperimentFluentBuilder::idempotency_key) / [`set_idempotency_key(Option)`](crate::operation::create_experiment::builders::CreateExperimentFluentBuilder::set_idempotency_key):
required: **false**
(undocumented)
+ /// - [`config_tags(impl Into)`](crate::operation::create_experiment::builders::CreateExperimentFluentBuilder::config_tags) / [`set_config_tags(Option)`](crate::operation::create_experiment::builders::CreateExperimentFluentBuilder::set_config_tags):
required: **false**
(undocumented)
/// - On success, responds with [`CreateExperimentOutput`](crate::operation::create_experiment::CreateExperimentOutput) with field(s): /// - [`id(String)`](crate::operation::create_experiment::CreateExperimentOutput::id): (undocumented) /// - [`created_at(DateTime)`](crate::operation::create_experiment::CreateExperimentOutput::created_at): (undocumented) diff --git a/crates/superposition_sdk/src/client/discard_experiment.rs b/crates/superposition_sdk/src/client/discard_experiment.rs index 9c1f3954b..a45ddda22 100644 --- a/crates/superposition_sdk/src/client/discard_experiment.rs +++ b/crates/superposition_sdk/src/client/discard_experiment.rs @@ -7,6 +7,7 @@ impl super::Client { /// - [`org_id(impl Into)`](crate::operation::discard_experiment::builders::DiscardExperimentFluentBuilder::org_id) / [`set_org_id(Option)`](crate::operation::discard_experiment::builders::DiscardExperimentFluentBuilder::set_org_id):
required: **true**
(undocumented)
/// - [`id(impl Into)`](crate::operation::discard_experiment::builders::DiscardExperimentFluentBuilder::id) / [`set_id(Option)`](crate::operation::discard_experiment::builders::DiscardExperimentFluentBuilder::set_id):
required: **true**
(undocumented)
/// - [`change_reason(impl Into)`](crate::operation::discard_experiment::builders::DiscardExperimentFluentBuilder::change_reason) / [`set_change_reason(Option)`](crate::operation::discard_experiment::builders::DiscardExperimentFluentBuilder::set_change_reason):
required: **true**
(undocumented)
+ /// - [`config_tags(impl Into)`](crate::operation::discard_experiment::builders::DiscardExperimentFluentBuilder::config_tags) / [`set_config_tags(Option)`](crate::operation::discard_experiment::builders::DiscardExperimentFluentBuilder::set_config_tags):
required: **false**
(undocumented)
/// - On success, responds with [`DiscardExperimentOutput`](crate::operation::discard_experiment::DiscardExperimentOutput) with field(s): /// - [`id(String)`](crate::operation::discard_experiment::DiscardExperimentOutput::id): (undocumented) /// - [`created_at(DateTime)`](crate::operation::discard_experiment::DiscardExperimentOutput::created_at): (undocumented) diff --git a/crates/superposition_sdk/src/client/update_overrides_experiment.rs b/crates/superposition_sdk/src/client/update_overrides_experiment.rs index 522153d15..a74138cf1 100644 --- a/crates/superposition_sdk/src/client/update_overrides_experiment.rs +++ b/crates/superposition_sdk/src/client/update_overrides_experiment.rs @@ -11,6 +11,7 @@ impl super::Client { /// - [`change_reason(impl Into)`](crate::operation::update_overrides_experiment::builders::UpdateOverridesExperimentFluentBuilder::change_reason) / [`set_change_reason(Option)`](crate::operation::update_overrides_experiment::builders::UpdateOverridesExperimentFluentBuilder::set_change_reason):
required: **true**
(undocumented)
/// - [`metrics(Document)`](crate::operation::update_overrides_experiment::builders::UpdateOverridesExperimentFluentBuilder::metrics) / [`set_metrics(Option)`](crate::operation::update_overrides_experiment::builders::UpdateOverridesExperimentFluentBuilder::set_metrics):
required: **false**
(undocumented)
/// - [`experiment_group_id(impl Into)`](crate::operation::update_overrides_experiment::builders::UpdateOverridesExperimentFluentBuilder::experiment_group_id) / [`set_experiment_group_id(Option)`](crate::operation::update_overrides_experiment::builders::UpdateOverridesExperimentFluentBuilder::set_experiment_group_id):
required: **false**
To unset experiment group, pass "null" string.
+ /// - [`config_tags(impl Into)`](crate::operation::update_overrides_experiment::builders::UpdateOverridesExperimentFluentBuilder::config_tags) / [`set_config_tags(Option)`](crate::operation::update_overrides_experiment::builders::UpdateOverridesExperimentFluentBuilder::set_config_tags):
required: **false**
(undocumented)
/// - On success, responds with [`UpdateOverridesExperimentOutput`](crate::operation::update_overrides_experiment::UpdateOverridesExperimentOutput) with field(s): /// - [`id(String)`](crate::operation::update_overrides_experiment::UpdateOverridesExperimentOutput::id): (undocumented) /// - [`created_at(DateTime)`](crate::operation::update_overrides_experiment::UpdateOverridesExperimentOutput::created_at): (undocumented) diff --git a/crates/superposition_sdk/src/operation/conclude_experiment/_conclude_experiment_input.rs b/crates/superposition_sdk/src/operation/conclude_experiment/_conclude_experiment_input.rs index 869def57d..2fd737d21 100644 --- a/crates/superposition_sdk/src/operation/conclude_experiment/_conclude_experiment_input.rs +++ b/crates/superposition_sdk/src/operation/conclude_experiment/_conclude_experiment_input.rs @@ -15,6 +15,8 @@ pub struct ConcludeExperimentInput { pub description: ::std::option::Option<::std::string::String>, #[allow(missing_docs)] // documentation missing in model pub change_reason: ::std::option::Option<::std::string::String>, + #[allow(missing_docs)] // documentation missing in model + pub config_tags: ::std::option::Option<::std::string::String>, } impl ConcludeExperimentInput { #[allow(missing_docs)] // documentation missing in model @@ -41,6 +43,10 @@ impl ConcludeExperimentInput { pub fn change_reason(&self) -> ::std::option::Option<&str> { self.change_reason.as_deref() } + #[allow(missing_docs)] // documentation missing in model + pub fn config_tags(&self) -> ::std::option::Option<&str> { + self.config_tags.as_deref() + } } impl ConcludeExperimentInput { /// Creates a new builder-style object to manufacture [`ConcludeExperimentInput`](crate::operation::conclude_experiment::ConcludeExperimentInput). @@ -59,6 +65,7 @@ pub struct ConcludeExperimentInputBuilder { pub(crate) chosen_variant: ::std::option::Option<::std::string::String>, pub(crate) description: ::std::option::Option<::std::string::String>, pub(crate) change_reason: ::std::option::Option<::std::string::String>, + pub(crate) config_tags: ::std::option::Option<::std::string::String>, } impl ConcludeExperimentInputBuilder { #[allow(missing_docs)] // documentation missing in model @@ -144,6 +151,19 @@ impl ConcludeExperimentInputBuilder { pub fn get_change_reason(&self) -> &::std::option::Option<::std::string::String> { &self.change_reason } + #[allow(missing_docs)] // documentation missing in model + pub fn config_tags(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { + self.config_tags = ::std::option::Option::Some(input.into()); + self + } + #[allow(missing_docs)] // documentation missing in model + pub fn set_config_tags(mut self, input: ::std::option::Option<::std::string::String>) -> Self { + self.config_tags = input; self + } + #[allow(missing_docs)] // documentation missing in model + pub fn get_config_tags(&self) -> &::std::option::Option<::std::string::String> { + &self.config_tags + } /// Consumes the builder and constructs a [`ConcludeExperimentInput`](crate::operation::conclude_experiment::ConcludeExperimentInput). pub fn build(self) -> ::std::result::Result { ::std::result::Result::Ok( @@ -160,6 +180,8 @@ impl ConcludeExperimentInputBuilder { , change_reason: self.change_reason , + config_tags: self.config_tags + , } ) } diff --git a/crates/superposition_sdk/src/operation/conclude_experiment/builders.rs b/crates/superposition_sdk/src/operation/conclude_experiment/builders.rs index 41b3c6f63..a14cf15fe 100644 --- a/crates/superposition_sdk/src/operation/conclude_experiment/builders.rs +++ b/crates/superposition_sdk/src/operation/conclude_experiment/builders.rs @@ -180,5 +180,19 @@ impl ConcludeExperimentFluentBuilder { pub fn get_change_reason(&self) -> &::std::option::Option<::std::string::String> { self.inner.get_change_reason() } + #[allow(missing_docs)] // documentation missing in model + pub fn config_tags(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { + self.inner = self.inner.config_tags(input.into()); + self + } + #[allow(missing_docs)] // documentation missing in model + pub fn set_config_tags(mut self, input: ::std::option::Option<::std::string::String>) -> Self { + self.inner = self.inner.set_config_tags(input); + self + } + #[allow(missing_docs)] // documentation missing in model + pub fn get_config_tags(&self) -> &::std::option::Option<::std::string::String> { + self.inner.get_config_tags() + } } diff --git a/crates/superposition_sdk/src/operation/create_experiment/_create_experiment_input.rs b/crates/superposition_sdk/src/operation/create_experiment/_create_experiment_input.rs index 83bef80e7..034d42edb 100644 --- a/crates/superposition_sdk/src/operation/create_experiment/_create_experiment_input.rs +++ b/crates/superposition_sdk/src/operation/create_experiment/_create_experiment_input.rs @@ -23,6 +23,10 @@ pub struct CreateExperimentInput { pub metrics: ::std::option::Option<::aws_smithy_types::Document>, #[allow(missing_docs)] // documentation missing in model pub experiment_group_id: ::std::option::Option<::std::string::String>, + #[allow(missing_docs)] // documentation missing in model + pub idempotency_key: ::std::option::Option<::std::string::String>, + #[allow(missing_docs)] // documentation missing in model + pub config_tags: ::std::option::Option<::std::string::String>, } impl CreateExperimentInput { #[allow(missing_docs)] // documentation missing in model @@ -68,6 +72,14 @@ impl CreateExperimentInput { pub fn experiment_group_id(&self) -> ::std::option::Option<&str> { self.experiment_group_id.as_deref() } + #[allow(missing_docs)] // documentation missing in model + pub fn idempotency_key(&self) -> ::std::option::Option<&str> { + self.idempotency_key.as_deref() + } + #[allow(missing_docs)] // documentation missing in model + pub fn config_tags(&self) -> ::std::option::Option<&str> { + self.config_tags.as_deref() + } } impl CreateExperimentInput { /// Creates a new builder-style object to manufacture [`CreateExperimentInput`](crate::operation::create_experiment::CreateExperimentInput). @@ -90,6 +102,8 @@ pub struct CreateExperimentInputBuilder { pub(crate) change_reason: ::std::option::Option<::std::string::String>, pub(crate) metrics: ::std::option::Option<::aws_smithy_types::Document>, pub(crate) experiment_group_id: ::std::option::Option<::std::string::String>, + pub(crate) idempotency_key: ::std::option::Option<::std::string::String>, + pub(crate) config_tags: ::std::option::Option<::std::string::String>, } impl CreateExperimentInputBuilder { #[allow(missing_docs)] // documentation missing in model @@ -238,6 +252,32 @@ impl CreateExperimentInputBuilder { pub fn get_experiment_group_id(&self) -> &::std::option::Option<::std::string::String> { &self.experiment_group_id } + #[allow(missing_docs)] // documentation missing in model + pub fn idempotency_key(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { + self.idempotency_key = ::std::option::Option::Some(input.into()); + self + } + #[allow(missing_docs)] // documentation missing in model + pub fn set_idempotency_key(mut self, input: ::std::option::Option<::std::string::String>) -> Self { + self.idempotency_key = input; self + } + #[allow(missing_docs)] // documentation missing in model + pub fn get_idempotency_key(&self) -> &::std::option::Option<::std::string::String> { + &self.idempotency_key + } + #[allow(missing_docs)] // documentation missing in model + pub fn config_tags(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { + self.config_tags = ::std::option::Option::Some(input.into()); + self + } + #[allow(missing_docs)] // documentation missing in model + pub fn set_config_tags(mut self, input: ::std::option::Option<::std::string::String>) -> Self { + self.config_tags = input; self + } + #[allow(missing_docs)] // documentation missing in model + pub fn get_config_tags(&self) -> &::std::option::Option<::std::string::String> { + &self.config_tags + } /// Consumes the builder and constructs a [`CreateExperimentInput`](crate::operation::create_experiment::CreateExperimentInput). pub fn build(self) -> ::std::result::Result { ::std::result::Result::Ok( @@ -262,6 +302,10 @@ impl CreateExperimentInputBuilder { , experiment_group_id: self.experiment_group_id , + idempotency_key: self.idempotency_key + , + config_tags: self.config_tags + , } ) } diff --git a/crates/superposition_sdk/src/operation/create_experiment/builders.rs b/crates/superposition_sdk/src/operation/create_experiment/builders.rs index f299ec083..3b3003c9d 100644 --- a/crates/superposition_sdk/src/operation/create_experiment/builders.rs +++ b/crates/superposition_sdk/src/operation/create_experiment/builders.rs @@ -246,5 +246,33 @@ impl CreateExperimentFluentBuilder { pub fn get_experiment_group_id(&self) -> &::std::option::Option<::std::string::String> { self.inner.get_experiment_group_id() } + #[allow(missing_docs)] // documentation missing in model + pub fn idempotency_key(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { + self.inner = self.inner.idempotency_key(input.into()); + self + } + #[allow(missing_docs)] // documentation missing in model + pub fn set_idempotency_key(mut self, input: ::std::option::Option<::std::string::String>) -> Self { + self.inner = self.inner.set_idempotency_key(input); + self + } + #[allow(missing_docs)] // documentation missing in model + pub fn get_idempotency_key(&self) -> &::std::option::Option<::std::string::String> { + self.inner.get_idempotency_key() + } + #[allow(missing_docs)] // documentation missing in model + pub fn config_tags(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { + self.inner = self.inner.config_tags(input.into()); + self + } + #[allow(missing_docs)] // documentation missing in model + pub fn set_config_tags(mut self, input: ::std::option::Option<::std::string::String>) -> Self { + self.inner = self.inner.set_config_tags(input); + self + } + #[allow(missing_docs)] // documentation missing in model + pub fn get_config_tags(&self) -> &::std::option::Option<::std::string::String> { + self.inner.get_config_tags() + } } diff --git a/crates/superposition_sdk/src/operation/discard_experiment/_discard_experiment_input.rs b/crates/superposition_sdk/src/operation/discard_experiment/_discard_experiment_input.rs index 3ad163393..2384db503 100644 --- a/crates/superposition_sdk/src/operation/discard_experiment/_discard_experiment_input.rs +++ b/crates/superposition_sdk/src/operation/discard_experiment/_discard_experiment_input.rs @@ -11,6 +11,8 @@ pub struct DiscardExperimentInput { pub id: ::std::option::Option<::std::string::String>, #[allow(missing_docs)] // documentation missing in model pub change_reason: ::std::option::Option<::std::string::String>, + #[allow(missing_docs)] // documentation missing in model + pub config_tags: ::std::option::Option<::std::string::String>, } impl DiscardExperimentInput { #[allow(missing_docs)] // documentation missing in model @@ -29,6 +31,10 @@ impl DiscardExperimentInput { pub fn change_reason(&self) -> ::std::option::Option<&str> { self.change_reason.as_deref() } + #[allow(missing_docs)] // documentation missing in model + pub fn config_tags(&self) -> ::std::option::Option<&str> { + self.config_tags.as_deref() + } } impl DiscardExperimentInput { /// Creates a new builder-style object to manufacture [`DiscardExperimentInput`](crate::operation::discard_experiment::DiscardExperimentInput). @@ -45,6 +51,7 @@ pub struct DiscardExperimentInputBuilder { pub(crate) org_id: ::std::option::Option<::std::string::String>, pub(crate) id: ::std::option::Option<::std::string::String>, pub(crate) change_reason: ::std::option::Option<::std::string::String>, + pub(crate) config_tags: ::std::option::Option<::std::string::String>, } impl DiscardExperimentInputBuilder { #[allow(missing_docs)] // documentation missing in model @@ -103,6 +110,19 @@ impl DiscardExperimentInputBuilder { pub fn get_change_reason(&self) -> &::std::option::Option<::std::string::String> { &self.change_reason } + #[allow(missing_docs)] // documentation missing in model + pub fn config_tags(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { + self.config_tags = ::std::option::Option::Some(input.into()); + self + } + #[allow(missing_docs)] // documentation missing in model + pub fn set_config_tags(mut self, input: ::std::option::Option<::std::string::String>) -> Self { + self.config_tags = input; self + } + #[allow(missing_docs)] // documentation missing in model + pub fn get_config_tags(&self) -> &::std::option::Option<::std::string::String> { + &self.config_tags + } /// Consumes the builder and constructs a [`DiscardExperimentInput`](crate::operation::discard_experiment::DiscardExperimentInput). pub fn build(self) -> ::std::result::Result { ::std::result::Result::Ok( @@ -115,6 +135,8 @@ impl DiscardExperimentInputBuilder { , change_reason: self.change_reason , + config_tags: self.config_tags + , } ) } diff --git a/crates/superposition_sdk/src/operation/discard_experiment/builders.rs b/crates/superposition_sdk/src/operation/discard_experiment/builders.rs index f62039c72..dea1c29b5 100644 --- a/crates/superposition_sdk/src/operation/discard_experiment/builders.rs +++ b/crates/superposition_sdk/src/operation/discard_experiment/builders.rs @@ -152,5 +152,19 @@ impl DiscardExperimentFluentBuilder { pub fn get_change_reason(&self) -> &::std::option::Option<::std::string::String> { self.inner.get_change_reason() } + #[allow(missing_docs)] // documentation missing in model + pub fn config_tags(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { + self.inner = self.inner.config_tags(input.into()); + self + } + #[allow(missing_docs)] // documentation missing in model + pub fn set_config_tags(mut self, input: ::std::option::Option<::std::string::String>) -> Self { + self.inner = self.inner.set_config_tags(input); + self + } + #[allow(missing_docs)] // documentation missing in model + pub fn get_config_tags(&self) -> &::std::option::Option<::std::string::String> { + self.inner.get_config_tags() + } } diff --git a/crates/superposition_sdk/src/operation/update_overrides_experiment/_update_overrides_experiment_input.rs b/crates/superposition_sdk/src/operation/update_overrides_experiment/_update_overrides_experiment_input.rs index d19d918cf..c6a57615e 100644 --- a/crates/superposition_sdk/src/operation/update_overrides_experiment/_update_overrides_experiment_input.rs +++ b/crates/superposition_sdk/src/operation/update_overrides_experiment/_update_overrides_experiment_input.rs @@ -19,6 +19,8 @@ pub struct UpdateOverridesExperimentInput { pub metrics: ::std::option::Option<::aws_smithy_types::Document>, /// To unset experiment group, pass "null" string. pub experiment_group_id: ::std::option::Option<::std::string::String>, + #[allow(missing_docs)] // documentation missing in model + pub config_tags: ::std::option::Option<::std::string::String>, } impl UpdateOverridesExperimentInput { #[allow(missing_docs)] // documentation missing in model @@ -56,6 +58,10 @@ impl UpdateOverridesExperimentInput { pub fn experiment_group_id(&self) -> ::std::option::Option<&str> { self.experiment_group_id.as_deref() } + #[allow(missing_docs)] // documentation missing in model + pub fn config_tags(&self) -> ::std::option::Option<&str> { + self.config_tags.as_deref() + } } impl UpdateOverridesExperimentInput { /// Creates a new builder-style object to manufacture [`UpdateOverridesExperimentInput`](crate::operation::update_overrides_experiment::UpdateOverridesExperimentInput). @@ -76,6 +82,7 @@ pub struct UpdateOverridesExperimentInputBuilder { pub(crate) change_reason: ::std::option::Option<::std::string::String>, pub(crate) metrics: ::std::option::Option<::aws_smithy_types::Document>, pub(crate) experiment_group_id: ::std::option::Option<::std::string::String>, + pub(crate) config_tags: ::std::option::Option<::std::string::String>, } impl UpdateOverridesExperimentInputBuilder { #[allow(missing_docs)] // documentation missing in model @@ -191,6 +198,19 @@ impl UpdateOverridesExperimentInputBuilder { pub fn get_experiment_group_id(&self) -> &::std::option::Option<::std::string::String> { &self.experiment_group_id } + #[allow(missing_docs)] // documentation missing in model + pub fn config_tags(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { + self.config_tags = ::std::option::Option::Some(input.into()); + self + } + #[allow(missing_docs)] // documentation missing in model + pub fn set_config_tags(mut self, input: ::std::option::Option<::std::string::String>) -> Self { + self.config_tags = input; self + } + #[allow(missing_docs)] // documentation missing in model + pub fn get_config_tags(&self) -> &::std::option::Option<::std::string::String> { + &self.config_tags + } /// Consumes the builder and constructs a [`UpdateOverridesExperimentInput`](crate::operation::update_overrides_experiment::UpdateOverridesExperimentInput). pub fn build(self) -> ::std::result::Result { ::std::result::Result::Ok( @@ -211,6 +231,8 @@ impl UpdateOverridesExperimentInputBuilder { , experiment_group_id: self.experiment_group_id , + config_tags: self.config_tags + , } ) } diff --git a/crates/superposition_sdk/src/operation/update_overrides_experiment/builders.rs b/crates/superposition_sdk/src/operation/update_overrides_experiment/builders.rs index 657064a51..c4fb0333f 100644 --- a/crates/superposition_sdk/src/operation/update_overrides_experiment/builders.rs +++ b/crates/superposition_sdk/src/operation/update_overrides_experiment/builders.rs @@ -213,5 +213,19 @@ impl UpdateOverridesExperimentFluentBuilder { pub fn get_experiment_group_id(&self) -> &::std::option::Option<::std::string::String> { self.inner.get_experiment_group_id() } + #[allow(missing_docs)] // documentation missing in model + pub fn config_tags(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self { + self.inner = self.inner.config_tags(input.into()); + self + } + #[allow(missing_docs)] // documentation missing in model + pub fn set_config_tags(mut self, input: ::std::option::Option<::std::string::String>) -> Self { + self.inner = self.inner.set_config_tags(input); + self + } + #[allow(missing_docs)] // documentation missing in model + pub fn get_config_tags(&self) -> &::std::option::Option<::std::string::String> { + self.inner.get_config_tags() + } } diff --git a/crates/superposition_sdk/src/protocol_serde/shape_conclude_experiment.rs b/crates/superposition_sdk/src/protocol_serde/shape_conclude_experiment.rs index c82bcc0d9..c157c8702 100644 --- a/crates/superposition_sdk/src/protocol_serde/shape_conclude_experiment.rs +++ b/crates/superposition_sdk/src/protocol_serde/shape_conclude_experiment.rs @@ -101,6 +101,18 @@ pub fn ser_conclude_experiment_headers( })?; builder = builder.header("x-org-id", header_value); } + if let ::std::option::Option::Some(inner_5) = &input.config_tags { + let formatted_6 = inner_5.as_str(); + let header_value = formatted_6; + let header_value: ::http::HeaderValue = header_value.parse().map_err(|err| { + ::aws_smithy_types::error::operation::BuildError::invalid_field("config_tags", format!( + "`{}` cannot be used as a header value: {}", + &header_value, + err + )) + })?; + builder = builder.header("x-config-tags", header_value); + } Ok(builder) } diff --git a/crates/superposition_sdk/src/protocol_serde/shape_create_experiment.rs b/crates/superposition_sdk/src/protocol_serde/shape_create_experiment.rs index 3e1d53e33..6d7afaafe 100644 --- a/crates/superposition_sdk/src/protocol_serde/shape_create_experiment.rs +++ b/crates/superposition_sdk/src/protocol_serde/shape_create_experiment.rs @@ -85,6 +85,30 @@ pub fn ser_create_experiment_headers( })?; builder = builder.header("x-org-id", header_value); } + if let ::std::option::Option::Some(inner_5) = &input.idempotency_key { + let formatted_6 = inner_5.as_str(); + let header_value = formatted_6; + let header_value: ::http::HeaderValue = header_value.parse().map_err(|err| { + ::aws_smithy_types::error::operation::BuildError::invalid_field("idempotency_key", format!( + "`{}` cannot be used as a header value: {}", + &header_value, + err + )) + })?; + builder = builder.header("idempotency-key", header_value); + } + if let ::std::option::Option::Some(inner_7) = &input.config_tags { + let formatted_8 = inner_7.as_str(); + let header_value = formatted_8; + let header_value: ::http::HeaderValue = header_value.parse().map_err(|err| { + ::aws_smithy_types::error::operation::BuildError::invalid_field("config_tags", format!( + "`{}` cannot be used as a header value: {}", + &header_value, + err + )) + })?; + builder = builder.header("x-config-tags", header_value); + } Ok(builder) } diff --git a/crates/superposition_sdk/src/protocol_serde/shape_discard_experiment.rs b/crates/superposition_sdk/src/protocol_serde/shape_discard_experiment.rs index 9b399932d..b8f0e1ae1 100644 --- a/crates/superposition_sdk/src/protocol_serde/shape_discard_experiment.rs +++ b/crates/superposition_sdk/src/protocol_serde/shape_discard_experiment.rs @@ -101,6 +101,18 @@ pub fn ser_discard_experiment_headers( })?; builder = builder.header("x-org-id", header_value); } + if let ::std::option::Option::Some(inner_5) = &input.config_tags { + let formatted_6 = inner_5.as_str(); + let header_value = formatted_6; + let header_value: ::http::HeaderValue = header_value.parse().map_err(|err| { + ::aws_smithy_types::error::operation::BuildError::invalid_field("config_tags", format!( + "`{}` cannot be used as a header value: {}", + &header_value, + err + )) + })?; + builder = builder.header("x-config-tags", header_value); + } Ok(builder) } diff --git a/crates/superposition_sdk/src/protocol_serde/shape_update_overrides_experiment.rs b/crates/superposition_sdk/src/protocol_serde/shape_update_overrides_experiment.rs index 9c6b37264..9b8939238 100644 --- a/crates/superposition_sdk/src/protocol_serde/shape_update_overrides_experiment.rs +++ b/crates/superposition_sdk/src/protocol_serde/shape_update_overrides_experiment.rs @@ -101,6 +101,18 @@ pub fn ser_update_overrides_experiment_headers( })?; builder = builder.header("x-org-id", header_value); } + if let ::std::option::Option::Some(inner_5) = &input.config_tags { + let formatted_6 = inner_5.as_str(); + let header_value = formatted_6; + let header_value: ::http::HeaderValue = header_value.parse().map_err(|err| { + ::aws_smithy_types::error::operation::BuildError::invalid_field("config_tags", format!( + "`{}` cannot be used as a header value: {}", + &header_value, + err + )) + })?; + builder = builder.header("x-config-tags", header_value); + } Ok(builder) } diff --git a/docs/docs/api/Superposition.openapi.json b/docs/docs/api/Superposition.openapi.json index bde380748..12be4d59e 100644 --- a/docs/docs/api/Superposition.openapi.json +++ b/docs/docs/api/Superposition.openapi.json @@ -2673,6 +2673,20 @@ "required": true }, "parameters": [ + { + "name": "idempotency-key", + "in": "header", + "schema": { + "type": "string" + } + }, + { + "name": "x-config-tags", + "in": "header", + "schema": { + "type": "string" + } + }, { "name": "x-org-id", "in": "header", @@ -3104,6 +3118,13 @@ }, "required": true }, + { + "name": "x-config-tags", + "in": "header", + "schema": { + "type": "string" + } + }, { "name": "x-org-id", "in": "header", @@ -3184,6 +3205,13 @@ }, "required": true }, + { + "name": "x-config-tags", + "in": "header", + "schema": { + "type": "string" + } + }, { "name": "x-org-id", "in": "header", @@ -3264,6 +3292,13 @@ }, "required": true }, + { + "name": "x-config-tags", + "in": "header", + "schema": { + "type": "string" + } + }, { "name": "x-org-id", "in": "header", diff --git a/docs/docs/api/conclude-experiment.ParamsDetails.json b/docs/docs/api/conclude-experiment.ParamsDetails.json index 1f3ecdd1e..b254829e3 100644 --- a/docs/docs/api/conclude-experiment.ParamsDetails.json +++ b/docs/docs/api/conclude-experiment.ParamsDetails.json @@ -1 +1 @@ -{"parameters":[{"name":"id","in":"path","schema":{"type":"string"},"required":true},{"name":"x-org-id","in":"header","schema":{"type":"string"},"required":true},{"name":"x-workspace","in":"header","schema":{"type":"string"},"required":true}]} \ No newline at end of file +{"parameters":[{"name":"id","in":"path","schema":{"type":"string"},"required":true},{"name":"x-config-tags","in":"header","schema":{"type":"string"}},{"name":"x-org-id","in":"header","schema":{"type":"string"},"required":true},{"name":"x-workspace","in":"header","schema":{"type":"string"},"required":true}]} \ No newline at end of file diff --git a/docs/docs/api/conclude-experiment.api.mdx b/docs/docs/api/conclude-experiment.api.mdx index 922461392..a32a3fbb6 100644 --- a/docs/docs/api/conclude-experiment.api.mdx +++ b/docs/docs/api/conclude-experiment.api.mdx @@ -5,7 +5,7 @@ description: "Concludes an inprogress experiment by selecting a winning variant sidebar_label: "ConcludeExperiment" hide_title: true hide_table_of_contents: true -api: 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 +api: eJzFWFtv2zYU/iuEXrYBzmVd85I311HXbFkS2E43IAgMWqIttrKokVQSz/B/33dIXW05abFu60NKk+d+Dr/Do00QCxNpmVupsuA8GKksSgvsMZ4xmeVaLbUwhonnXGi5Epll8zUzIhWRldmScfYks4xWj1xLjmOexcxqnhlJIunEJqLNbxW4olJPzIzlVhwHg0CBghPPZdwyJKwZQaLFn4Uw9p2K18H5JoAQSwdY8jxPZeTYTz4ZcmUTmCgRK04ru84FZKr5J5gNOXALUq0UxolJlBHZrHSgRW+shv3BdtANUs95lPBsKWZacNNLsfW2Sy3g2/0O+WDXgodBYKVNRW8Yxj4Go9L3bVe21YXARs41XwkrNBy83wQZfkCYjKFLUppzbhOs9yLUeLQrshbyfISwL+TyyPKlqeQlgsdCvySxI0Hp5VFjzOvML5rzpPRnk/NI/AN5D7RjcpUZXxJvTk/pv/670eSCgY5VjJTHb1OQCE1vkaFerIhnvKdGB8FC6RWdBDGIjizsa/PM170iU27sbKViuZCiR+khqT72PfKaaz7zZ/sSRVas6A5chO+Hd1dT7FyEV+E0nN18DMfjy4tw0q7/JtZTkgMV6lFoLWMx+yzWpqWAa83XVAJWrEz/FSSoKXrOGqNG43A4DS+wM7q5Hl3dXbj15fXt+ObncTiZkLWXk9Fw7A9uh3cTLHrtnThlldVAxMVCRjOcRjjky3ZsoHyOgt2WBfRs+0qEx7FDVJ7etotlF5yCschRkdBhCGQrHgYKwIHkrDAAXaSVlboY8hslCMMx+xURZbFYyEywmJww4GWUbONg/ZGngB5mchHJxdrhei3WJhyiCoP+IBighxC9BWLeDnKxBLkvSd3XXY9S8KuFh8xOxzdX2An/uA3Hl7+F19PhVTuJH72kKndloGYH9NYF+cp5r2dfmtWRw9zCN0hWi/Rh1yJPgX+UOl6ktsrTUyKyOst1LSCV2mfI51tX9cKijg66Xu2sExdlvNLNgAi8neWb2s/dduegvgnDTqr2A+8EdKDpEH79B63bwYb+WtyteA7YjfBrGZlZodOXzn0ltEB1qVWR9xfaa0+MElk6baTTH7qh2sfygc9jt2X05KlsD7tIXcNvLxi2cOGV149vtq3nDxx/e/p2v12DVBVQcK3se1WgkEHVNGtwnfU1+UvI1biOE6Fhfqg1kPLsX+nyQFXT7QOtVFYR6DGnPwRnP77Zd+Z3MU+U+vyeyxSgD5Jv4sZuwGJirbDIQUT1kmemiCIh6Jk/L/zZkzeJRTxN2cIZdsymOKgsY3O87h1scZkZx+OkGLMoUqICwg1qcVEqCbpMooo0ptbDnzxQwZRKVaYsitO7h74W0wYUrPJU+MmjmxfCtf1QTrt2NC56i0qNzoqEP8ILIejMFjqD90/SJuzDdHpLL8YB5ifUeir/wgl3k1aRUZDjE82f2C+Tm2sWq6igevexQWEUEUQJlqqlpNBRhLQPWWxopOrE/TsDHwFLsLOwOYUK0n3QpGG4rCL1qi9KNczILKKw4RjLZYqJzZU+/U4QUVBHWmEQXMFZicg1yoz3DgCwEJpklTrBlwtzvIdMLr6tS94p0r7iputAswZ4GyBwqkkMoDJRsZ9pIhpq3GxzHpw0+GVONjLenlQzJ0GRiAq8XNZuOjIr2L8+5rk8TqzN33Ejo2FBQu4faNLYPReIh64JHhppE7oyvogOy6zvE+3v3SZXI46acZDD+LJwq3GGOOd07rrMYcu+RI0jf0mPI3AJJFQYN9N3+Mzp+vRNz01n7Kqst3cabqvryWyhnOVlZUwKZDBX/ksCtQjMs17Ym9M3Z0enPx2dnhEfSOyKO9Qqp8KqcbDO54Odp0ANgP/nV48yS9SbT/CKk+6NXD4LfCXftzoxdc9z14brYkb9IQOW6DYbVIa40+l2S9vIlqYKfyib65yCinqPpaE17syCp0a8EJfvx+W9/YEdMrV6wmdr18PxVMQvLNHz/ReHLe5QNZJ/nfZDKr3o3e8QtW66st/UxUpf/dXi31fV/qbR0eYJSnQ8mvp3WUWx18YbjiE6V25fpG1j6e1wOvoA6nn5pY1aBrbRnugrHP667CjnpMM7t7fBYzBbFu5RE3ih9O9v1oIqFw== sidebar_class_name: "patch api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/create-experiment.ParamsDetails.json b/docs/docs/api/create-experiment.ParamsDetails.json index 925614fb4..e279c4600 100644 --- a/docs/docs/api/create-experiment.ParamsDetails.json +++ b/docs/docs/api/create-experiment.ParamsDetails.json @@ -1 +1 @@ -{"parameters":[{"name":"x-org-id","in":"header","schema":{"type":"string"},"required":true},{"name":"x-workspace","in":"header","schema":{"type":"string"},"required":true}]} \ No newline at end of file +{"parameters":[{"name":"idempotency-key","in":"header","schema":{"type":"string"}},{"name":"x-config-tags","in":"header","schema":{"type":"string"}},{"name":"x-org-id","in":"header","schema":{"type":"string"},"required":true},{"name":"x-workspace","in":"header","schema":{"type":"string"},"required":true}]} \ No newline at end of file diff --git a/docs/docs/api/create-experiment.api.mdx b/docs/docs/api/create-experiment.api.mdx index 6daa5a09b..d0108ee0f 100644 --- a/docs/docs/api/create-experiment.api.mdx +++ b/docs/docs/api/create-experiment.api.mdx @@ -5,7 +5,7 @@ description: "Creates a new experiment with variants, context and conditions. Yo sidebar_label: "CreateExperiment" hide_title: true hide_table_of_contents: true -api: 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 +api: eJztWFtT4zYU/isav7SdSQKlw8u+ZcHb0lLCJGHbDsNkFPkk1uLYriQTUob/3nMkX+TEAbrstn1gH1jHOvfLd471EESghZK5kVkavAtOFHADmnGWwprBfQ5KriA1bC1NzO64kjw1usdElhq4N4ynET1Hkvj1gP2RFUzwlGVWIE+SDdM5CLnYsBUYJYW2LJ7gpcqKnC0yxYzi4lamS0vBkXmjpR4EvSBDYk7yzqLaxLCWgAQK/ixAm/dZtAnePQTWODzAR57niRSW+eCTJhcfAi1iWHF6MpscUGI2/wSC5OSKVBkJmk5TvgKPSqP56TJ47AWN9TN3tk2DJGmxCt5dB6fhh+HV+RTfnIbn4TScjT6G4/HZaTgJbnqBkSYhtsaZKclBFWV8u4zkkYs2Ty59c5Gpncox5Ao0ytRNhnjCkMKgMs4KDZGNe5XLFTciRvMH7BfYaBbBQqbAIrJLIy+jeLj03fEE411n1sTQiDUxR1GFNmwOlHNKYOXnSWUHuVgVk+cjV4pvkB5FrfTzCZJRZ3pKwc/m5mR0MR2PzvFN+PtlOD77NbyYDs/9vHx0kraSMtujN7sDpWQEz513evbSrGIIF3JZuH5gtUgXdgV5wgVQ6niRmCpP6xjSOstNtzKuXIZcvlVVL0Ti6bilQy/rxEUZr3SziBvuZ3lU+/n46HpTKogo4hgYPwxbqdoNvBXQ8r8jrCLm6RJmiAp6D0WJPC6cXvNa6OnO1pbhbR1Ne7at6znI8Erbc2kbtsYOs05KrHpsqzSqAHyRc4USsbHQ+OsKkTCMsMozZBObPmaHGoZKIwYegcJfOwDXeFXLuO+7LPcNX+rPlJCpZd+m9IXMuw56wtaZutU5Vu8r5N3QG51jbbsmOzo8pP+6RlyTCIZUrGKrcvv66bEHBITVHs246YImhOMVnQTYU9A3aJ/PM990iky4NrNVFsmFhA6l+6T+l+OthkoClxcMAK8tteGm6DjzcH0cDqfhKb5BhD85vzq1z2cXl+PRj+NwMiFrzyYnw7E7uBxeTfCh096JVVZZjQvKYiHFDE8FHvKlHxtUPsdyfZvdb7P7bXZXs7sFTfvwS8QZmj4r5XWSvH4HQNhQ/xR3K549dpdrxaxQyb++dnhjpDUftheSbSzvuTy2R0ZHnupVpo3UNfx2guFLFx83ar3NB90+7hrVZ0ihsK0moNCMUClEvOOvMq0RHXUbz72UVJ50mLPHme+Pdp35DeZxlt1+4DJB8EaSL+LGdsAiYq0wxbZ69fHMdCEEQITK54U7WzuT8Is9SdjCGjZgUzyoLGNz/KS28MNlqi2PlaL1okiICpGqV4sTiSQI0nFWJBGNEL52gIOmVKrSzGCROfdwPkX0AhWs8gTX3MFOXgifdkM5bdvRuOgsKjVaK2J+h14A0JkpVIre26uMn6bTS9r8ekzT6EvkX3jCCSxZkVKQowPF1+znyeiCRZkoqHJdbLAwCoGigCXZUgp7xyEy5UIWYZCydty/0egjwgvaWZicQoXSXdCkZth0kDjVp6UapmUqKGx4jI/LBBjY0qffMUYUqYXKNDKjsxIj1yjTzjts5AUoklXqRL4c9GAHYWx8vWZtFWlXcVM70BcD8jYtbVWTGIS8OKNLmjzTtsm4ifHXQQNDFkNAFLhybOw3jV6hwZsBz+UgNiZ/z7UUw4LYrm/oA2H7HDAAqia4aaRNqEdc1eyXWTcQvd9pH1sUlppxJEdzy0qtvkKIc07ndjzst+wlaiz5U3osgc0YwcC4ueMK7zn1S3NH5e1H27u7t6I3e2lrg7t2y1gjo72DeauWv0M15K3Vafe1nX+Up3YMarqt0d0cPD8+vVkr00Vmw17W8aRAeixCWUYVjdFO8dHh0XH/8If+4THxUZ2ueOqF0o0r1rpf3Fo/arD+f16XlnkjhQe4U0q7sZdLimvI68BvSMxNTO2Krx8esLrhSiWPj/QaK05Rl96URTGn2FJbVh/nVDyR1HSA+VjwRMMT0dpnG91hdN1q2KWV+AgHvpSa7YuPz1Ty7bhE0e/Yc/rqa5Kvr8q/RGlpcwQlkPenbhWsKHY2joZjiEM2N0/S+rB/OZoQ0szLi3gabvgWByld0uNfmxxX7Bao7bsHXD/TZWHXr8DJpH9/A3f/pxo= sidebar_class_name: "post api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/discard-experiment.ParamsDetails.json b/docs/docs/api/discard-experiment.ParamsDetails.json index 1f3ecdd1e..b254829e3 100644 --- a/docs/docs/api/discard-experiment.ParamsDetails.json +++ b/docs/docs/api/discard-experiment.ParamsDetails.json @@ -1 +1 @@ -{"parameters":[{"name":"id","in":"path","schema":{"type":"string"},"required":true},{"name":"x-org-id","in":"header","schema":{"type":"string"},"required":true},{"name":"x-workspace","in":"header","schema":{"type":"string"},"required":true}]} \ No newline at end of file +{"parameters":[{"name":"id","in":"path","schema":{"type":"string"},"required":true},{"name":"x-config-tags","in":"header","schema":{"type":"string"}},{"name":"x-org-id","in":"header","schema":{"type":"string"},"required":true},{"name":"x-workspace","in":"header","schema":{"type":"string"},"required":true}]} \ No newline at end of file diff --git a/docs/docs/api/discard-experiment.api.mdx b/docs/docs/api/discard-experiment.api.mdx index 046eac172..3d969c77d 100644 --- a/docs/docs/api/discard-experiment.api.mdx +++ b/docs/docs/api/discard-experiment.api.mdx @@ -5,7 +5,7 @@ description: "Discards an experiment without selecting a winner, effectively can sidebar_label: "DiscardExperiment" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "patch api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/update-overrides-experiment.ParamsDetails.json b/docs/docs/api/update-overrides-experiment.ParamsDetails.json index 1f3ecdd1e..b254829e3 100644 --- a/docs/docs/api/update-overrides-experiment.ParamsDetails.json +++ b/docs/docs/api/update-overrides-experiment.ParamsDetails.json @@ -1 +1 @@ -{"parameters":[{"name":"id","in":"path","schema":{"type":"string"},"required":true},{"name":"x-org-id","in":"header","schema":{"type":"string"},"required":true},{"name":"x-workspace","in":"header","schema":{"type":"string"},"required":true}]} \ No newline at end of file +{"parameters":[{"name":"id","in":"path","schema":{"type":"string"},"required":true},{"name":"x-config-tags","in":"header","schema":{"type":"string"}},{"name":"x-org-id","in":"header","schema":{"type":"string"},"required":true},{"name":"x-workspace","in":"header","schema":{"type":"string"},"required":true}]} \ No newline at end of file diff --git a/docs/docs/api/update-overrides-experiment.api.mdx b/docs/docs/api/update-overrides-experiment.api.mdx index f6fb6e2a3..af4e260d5 100644 --- a/docs/docs/api/update-overrides-experiment.api.mdx +++ b/docs/docs/api/update-overrides-experiment.api.mdx @@ -5,7 +5,7 @@ description: "Updates the overrides for specific variants within an experiment, sidebar_label: "UpdateOverridesExperiment" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "patch api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/smithy/models/experiments.smithy b/smithy/models/experiments.smithy index f63a97fe2..cc893951c 100644 --- a/smithy/models/experiments.smithy +++ b/smithy/models/experiments.smithy @@ -28,6 +28,7 @@ resource Experiments { metrics_url: String metrics: Document experiment_group_id: String + idempotency_key: String } read: GetExperiment create: CreateExperiment @@ -178,6 +179,14 @@ structure CreateExperimentRequest for Experiments with [WorkspaceMixin] { $metrics $experiment_group_id + + @httpHeader("idempotency-key") + @notProperty + $idempotency_key + + @httpHeader("x-config-tags") + @notProperty + config_tags: String } structure VariantUpdateRequest { @@ -211,6 +220,10 @@ structure UpdateOverrideRequest for Experiments with [WorkspaceMixin] { @documentation("To unset experiment group, pass \"null\" string.") $experiment_group_id + + @httpHeader("x-config-tags") + @notProperty + config_tags: String } list ExperimentList { @@ -266,6 +279,10 @@ operation ConcludeExperiment with [GetOperation, WebhookOperation] { @required $change_reason + + @httpHeader("x-config-tags") + @notProperty + config_tags: String } output: ExperimentResponse @@ -283,6 +300,10 @@ operation DiscardExperiment with [GetOperation, WebhookOperation] { @required $change_reason + + @httpHeader("x-config-tags") + @notProperty + config_tags: String } output: ExperimentResponse diff --git a/smithy/patches/java.patch b/smithy/patches/java.patch index 96ea81f8e..5e941ac84 100644 --- a/smithy/patches/java.patch +++ b/smithy/patches/java.patch @@ -74,10 +74,10 @@ index 002b1991..8be02229 100644 private static final List$COLLECTION_OPERATIONS = List.of(AddMembersToGroup.$SCHEMA, RemoveMembersFromGroup.$SCHEMA); diff --git a/clients/java/sdk/src/main/java/io/juspay/superposition/model/Experiments.java b/clients/java/sdk/src/main/java/io/juspay/superposition/model/Experiments.java -index 5b0dd5e8..05445da7 100644 +index f94708a5..33b89f09 100644 --- a/clients/java/sdk/src/main/java/io/juspay/superposition/model/Experiments.java +++ b/clients/java/sdk/src/main/java/io/juspay/superposition/model/Experiments.java -@@ -16,25 +16,26 @@ public final class Experiments implements ApiResource { +@@ -16,26 +16,27 @@ public final class Experiments implements ApiResource { private static final Map $IDENTIFIERS = Map.of("workspace_id", PreludeSchemas.STRING, "org_id", PreludeSchemas.STRING, "id", PreludeSchemas.STRING); @@ -96,6 +96,7 @@ index 5b0dd5e8..05445da7 100644 - "context", SharedSchemas.CONDITION, - "started_at", SharedSchemas.DATE_TIME, - "experiment_group_id", PreludeSchemas.STRING, +- "idempotency_key", PreludeSchemas.STRING, - "metrics", PreludeSchemas.DOCUMENT, - "last_modified", SharedSchemas.DATE_TIME, - "started_by", PreludeSchemas.STRING, @@ -116,6 +117,7 @@ index 5b0dd5e8..05445da7 100644 + Map.entry("context", SharedSchemas.CONDITION), + Map.entry("started_at", SharedSchemas.DATE_TIME), + Map.entry("experiment_group_id", PreludeSchemas.STRING), ++ Map.entry("idempotency_key", PreludeSchemas.STRING), + Map.entry("metrics", PreludeSchemas.DOCUMENT), + Map.entry("last_modified", SharedSchemas.DATE_TIME), + Map.entry("started_by", PreludeSchemas.STRING), @@ -123,6 +125,7 @@ index 5b0dd5e8..05445da7 100644 private static final List$COLLECTION_OPERATIONS = List.of(UpdateOverridesExperiment.$SCHEMA, ConcludeExperiment.$SCHEMA, + diff --git a/clients/java/sdk/src/main/java/io/juspay/superposition/model/Function.java b/clients/java/sdk/src/main/java/io/juspay/superposition/model/Function.java index 813c9e17..d0a445a7 100644 --- a/clients/java/sdk/src/main/java/io/juspay/superposition/model/Function.java diff --git a/smithy/patches/python.patch b/smithy/patches/python.patch index 43c41b7de..76bd423b0 100644 --- a/smithy/patches/python.patch +++ b/smithy/patches/python.patch @@ -24,771 +24,771 @@ index 7c295b28..b7a7bd7e 100644 reportPrivateUsage = false diff --git a/clients/python/sdk/superposition_sdk/models.py b/clients/python/sdk/superposition_sdk/models.py -index a3da84d9..fab5e493 100644 +index b973e774..14eb3f95 100644 --- a/clients/python/sdk/superposition_sdk/models.py +++ b/clients/python/sdk/superposition_sdk/models.py -@@ -682,7 +682,7 @@ ADD_MEMBERS_TO_GROUP = APIOperation( +@@ -683,7 +683,7 @@ ADD_MEMBERS_TO_GROUP = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -884,7 +884,7 @@ APPLICABLE_VARIANTS = APIOperation( +@@ -886,7 +886,7 @@ APPLICABLE_VARIANTS = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -1158,7 +1158,7 @@ LIST_AUDIT_LOGS = APIOperation( +@@ -1160,7 +1160,7 @@ LIST_AUDIT_LOGS = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -1965,7 +1965,7 @@ ShapeID("io.superposition#WebhookFailed"): WebhookFailed, - ShapeID("io.superposition#ResourceNotFound"): ResourceNotFound, +@@ -1969,7 +1969,7 @@ ShapeID("io.superposition#WebhookFailed"): WebhookFailed, + ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -2255,7 +2255,7 @@ ShapeID("io.superposition#WebhookFailed"): WebhookFailed, +@@ -2263,7 +2263,7 @@ ShapeID("io.superposition#WebhookFailed"): WebhookFailed, ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -2772,7 +2772,7 @@ GET_CONFIG = APIOperation( +@@ -2780,7 +2780,7 @@ GET_CONFIG = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -2869,7 +2869,7 @@ GET_CONFIG_JSON = APIOperation( +@@ -2877,7 +2877,7 @@ GET_CONFIG_JSON = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -2966,7 +2966,7 @@ GET_CONFIG_TOML = APIOperation( +@@ -2974,7 +2974,7 @@ GET_CONFIG_TOML = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -3103,7 +3103,7 @@ GET_RESOLVED_CONFIG = APIOperation( +@@ -3111,7 +3111,7 @@ GET_RESOLVED_CONFIG = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -3240,7 +3240,7 @@ GET_RESOLVED_CONFIG_WITH_IDENTIFIER = APIOperation( +@@ -3248,7 +3248,7 @@ GET_RESOLVED_CONFIG_WITH_IDENTIFIER = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -3355,7 +3355,7 @@ GET_VERSION = APIOperation( +@@ -3418,7 +3418,7 @@ GET_VERSION = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -3535,7 +3535,7 @@ LIST_VERSIONS = APIOperation( +@@ -3598,7 +3598,7 @@ LIST_VERSIONS = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -3700,7 +3700,7 @@ ShapeID("io.superposition#WebhookFailed"): WebhookFailed, +@@ -3763,7 +3763,7 @@ ShapeID("io.superposition#WebhookFailed"): WebhookFailed, ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -3785,7 +3785,7 @@ ShapeID("io.superposition#WebhookFailed"): WebhookFailed, +@@ -3848,7 +3848,7 @@ ShapeID("io.superposition#WebhookFailed"): WebhookFailed, ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -3945,7 +3945,7 @@ GET_CONTEXT = APIOperation( +@@ -4008,7 +4008,7 @@ GET_CONTEXT = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -4106,7 +4106,7 @@ ShapeID("io.superposition#WebhookFailed"): WebhookFailed, +@@ -4168,7 +4168,7 @@ GET_CONTEXT_FROM_CONDITION = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -4294,7 +4294,7 @@ LIST_CONTEXTS = APIOperation( +@@ -4356,7 +4356,7 @@ LIST_CONTEXTS = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -4459,7 +4459,7 @@ ShapeID("io.superposition#WebhookFailed"): WebhookFailed, +@@ -4521,7 +4521,7 @@ ShapeID("io.superposition#WebhookFailed"): WebhookFailed, ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -4624,7 +4624,7 @@ ShapeID("io.superposition#WebhookFailed"): WebhookFailed, +@@ -4686,7 +4686,7 @@ ShapeID("io.superposition#WebhookFailed"): WebhookFailed, ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -4711,7 +4711,7 @@ VALIDATE_CONTEXT = APIOperation( +@@ -4773,7 +4773,7 @@ VALIDATE_CONTEXT = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -4876,7 +4876,7 @@ WEIGHT_RECOMPUTE = APIOperation( - ShapeID("io.superposition#WebhookFailed"): WebhookFailed, +@@ -4938,7 +4938,7 @@ WEIGHT_RECOMPUTE = APIOperation( + ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -5110,7 +5110,7 @@ CREATE_DEFAULT_CONFIG = APIOperation( +@@ -5172,7 +5172,7 @@ CREATE_DEFAULT_CONFIG = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -5339,7 +5339,7 @@ CREATE_DIMENSION = APIOperation( +@@ -5401,7 +5401,7 @@ CREATE_DIMENSION = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -5607,7 +5607,7 @@ CREATE_EXPERIMENT = APIOperation( +@@ -5677,7 +5677,7 @@ CREATE_EXPERIMENT = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -5826,7 +5826,7 @@ CREATE_EXPERIMENT_GROUP = APIOperation( +@@ -5896,7 +5896,7 @@ CREATE_EXPERIMENT_GROUP = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -6037,7 +6037,7 @@ CREATE_FUNCTION = APIOperation( +@@ -6107,7 +6107,7 @@ CREATE_FUNCTION = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -6224,7 +6224,7 @@ CREATE_ORGANISATION = APIOperation( +@@ -6294,7 +6294,7 @@ CREATE_ORGANISATION = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -6376,7 +6376,7 @@ CREATE_SECRET = APIOperation( +@@ -6446,7 +6446,7 @@ CREATE_SECRET = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -6537,7 +6537,7 @@ CREATE_TYPE_TEMPLATES = APIOperation( +@@ -6607,7 +6607,7 @@ CREATE_TYPE_TEMPLATES = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -6684,7 +6684,7 @@ CREATE_VARIABLE = APIOperation( +@@ -6754,7 +6754,7 @@ CREATE_VARIABLE = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -6954,7 +6954,7 @@ CREATE_WEBHOOK = APIOperation( +@@ -7024,7 +7024,7 @@ CREATE_WEBHOOK = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -7204,7 +7204,7 @@ CREATE_WORKSPACE = APIOperation( +@@ -7274,7 +7274,7 @@ CREATE_WORKSPACE = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -7285,7 +7285,7 @@ ShapeID("io.superposition#WebhookFailed"): WebhookFailed, +@@ -7355,7 +7355,7 @@ ShapeID("io.superposition#WebhookFailed"): WebhookFailed, ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -7439,7 +7439,7 @@ GET_DEFAULT_CONFIG = APIOperation( +@@ -7509,7 +7509,7 @@ GET_DEFAULT_CONFIG = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -7676,7 +7676,7 @@ LIST_DEFAULT_CONFIGS = APIOperation( +@@ -7746,7 +7746,7 @@ LIST_DEFAULT_CONFIGS = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -7884,7 +7884,7 @@ ShapeID("io.superposition#WebhookFailed"): WebhookFailed, +@@ -7954,7 +7954,7 @@ ShapeID("io.superposition#WebhookFailed"): WebhookFailed, ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -7965,7 +7965,7 @@ ShapeID("io.superposition#WebhookFailed"): WebhookFailed, +@@ -8035,7 +8035,7 @@ ShapeID("io.superposition#WebhookFailed"): WebhookFailed, ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -8135,7 +8135,7 @@ DELETE_EXPERIMENT_GROUP = APIOperation( +@@ -8205,7 +8205,7 @@ DELETE_EXPERIMENT_GROUP = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -8215,7 +8215,7 @@ DELETE_FUNCTION = APIOperation( +@@ -8285,7 +8285,7 @@ DELETE_FUNCTION = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -8340,7 +8340,7 @@ DELETE_SECRET = APIOperation( +@@ -8410,7 +8410,7 @@ DELETE_SECRET = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -8473,7 +8473,7 @@ DELETE_TYPE_TEMPLATES = APIOperation( +@@ -8543,7 +8543,7 @@ DELETE_TYPE_TEMPLATES = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -8599,7 +8599,7 @@ DELETE_VARIABLE = APIOperation( +@@ -8669,7 +8669,7 @@ DELETE_VARIABLE = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -8679,7 +8679,7 @@ DELETE_WEBHOOK = APIOperation( +@@ -8749,7 +8749,7 @@ DELETE_WEBHOOK = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -8851,7 +8851,7 @@ GET_DIMENSION = APIOperation( +@@ -8921,7 +8921,7 @@ GET_DIMENSION = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -9102,7 +9102,7 @@ LIST_DIMENSIONS = APIOperation( +@@ -9172,7 +9172,7 @@ LIST_DIMENSIONS = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -9328,7 +9328,7 @@ ShapeID("io.superposition#WebhookFailed"): WebhookFailed, +@@ -9398,7 +9398,7 @@ ShapeID("io.superposition#WebhookFailed"): WebhookFailed, ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -9545,7 +9545,7 @@ ShapeID("io.superposition#WebhookFailed"): WebhookFailed, +@@ -9619,7 +9619,7 @@ ShapeID("io.superposition#WebhookFailed"): WebhookFailed, ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -9980,7 +9980,7 @@ GET_EXPERIMENT_CONFIG = APIOperation( +@@ -10054,7 +10054,7 @@ GET_EXPERIMENT_CONFIG = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -10150,7 +10150,7 @@ GET_EXPERIMENT_GROUP = APIOperation( +@@ -10224,7 +10224,7 @@ GET_EXPERIMENT_GROUP = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -10380,7 +10380,7 @@ LIST_EXPERIMENT_GROUPS = APIOperation( +@@ -10454,7 +10454,7 @@ LIST_EXPERIMENT_GROUPS = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -10572,7 +10572,7 @@ REMOVE_MEMBERS_FROM_GROUP = APIOperation( +@@ -10646,7 +10646,7 @@ REMOVE_MEMBERS_FROM_GROUP = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -10774,7 +10774,7 @@ UPDATE_EXPERIMENT_GROUP = APIOperation( +@@ -10848,7 +10848,7 @@ UPDATE_EXPERIMENT_GROUP = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -10985,7 +10985,7 @@ GET_EXPERIMENT = APIOperation( +@@ -11059,7 +11059,7 @@ GET_EXPERIMENT = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -11200,7 +11200,7 @@ LIST_EXPERIMENT = APIOperation( +@@ -11274,7 +11274,7 @@ LIST_EXPERIMENT = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -11417,7 +11417,7 @@ ShapeID("io.superposition#WebhookFailed"): WebhookFailed, +@@ -11491,7 +11491,7 @@ ShapeID("io.superposition#WebhookFailed"): WebhookFailed, ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -11641,7 +11641,7 @@ ShapeID("io.superposition#WebhookFailed"): WebhookFailed, +@@ -11715,7 +11715,7 @@ ShapeID("io.superposition#WebhookFailed"): WebhookFailed, ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -11858,7 +11858,7 @@ ShapeID("io.superposition#WebhookFailed"): WebhookFailed, +@@ -11932,7 +11932,7 @@ ShapeID("io.superposition#WebhookFailed"): WebhookFailed, ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -12170,7 +12170,7 @@ ShapeID("io.superposition#WebhookFailed"): WebhookFailed, +@@ -12248,7 +12248,7 @@ ShapeID("io.superposition#WebhookFailed"): WebhookFailed, ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -12337,7 +12337,7 @@ GET_FUNCTION = APIOperation( +@@ -12415,7 +12415,7 @@ GET_FUNCTION = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -12605,7 +12605,7 @@ LIST_FUNCTION = APIOperation( +@@ -12683,7 +12683,7 @@ LIST_FUNCTION = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -12777,7 +12777,7 @@ PUBLISH = APIOperation( +@@ -12855,7 +12855,7 @@ PUBLISH = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -13099,7 +13099,7 @@ TEST = APIOperation( +@@ -13177,7 +13177,7 @@ TEST = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -13292,7 +13292,7 @@ UPDATE_FUNCTION = APIOperation( +@@ -13370,7 +13370,7 @@ UPDATE_FUNCTION = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -13439,7 +13439,7 @@ GET_ORGANISATION = APIOperation( +@@ -13517,7 +13517,7 @@ GET_ORGANISATION = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -13564,7 +13564,7 @@ GET_SECRET = APIOperation( +@@ -13642,7 +13642,7 @@ GET_SECRET = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -13697,7 +13697,7 @@ GET_TYPE_TEMPLATE = APIOperation( +@@ -13775,7 +13775,7 @@ GET_TYPE_TEMPLATE = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -13909,7 +13909,7 @@ GET_TYPE_TEMPLATES_LIST = APIOperation( +@@ -13987,7 +13987,7 @@ GET_TYPE_TEMPLATES_LIST = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -14035,7 +14035,7 @@ GET_VARIABLE = APIOperation( +@@ -14113,7 +14113,7 @@ GET_VARIABLE = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -14213,7 +14213,7 @@ GET_WEBHOOK = APIOperation( +@@ -14291,7 +14291,7 @@ GET_WEBHOOK = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -14391,7 +14391,7 @@ GET_WEBHOOK_BY_EVENT = APIOperation( +@@ -14469,7 +14469,7 @@ GET_WEBHOOK_BY_EVENT = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -14570,7 +14570,7 @@ GET_WORKSPACE = APIOperation( +@@ -14648,7 +14648,7 @@ GET_WORKSPACE = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -14796,7 +14796,7 @@ LIST_ORGANISATION = APIOperation( +@@ -14874,7 +14874,7 @@ LIST_ORGANISATION = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -15040,7 +15040,7 @@ LIST_SECRETS = APIOperation( +@@ -15118,7 +15118,7 @@ LIST_SECRETS = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -15286,7 +15286,7 @@ LIST_VARIABLES = APIOperation( +@@ -15364,7 +15364,7 @@ LIST_VARIABLES = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -15543,7 +15543,7 @@ LIST_WEBHOOK = APIOperation( +@@ -15621,7 +15621,7 @@ LIST_WEBHOOK = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -15801,7 +15801,7 @@ LIST_WORKSPACE = APIOperation( +@@ -15879,7 +15879,7 @@ LIST_WORKSPACE = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -15878,7 +15878,7 @@ ROTATE_MASTER_ENCRYPTION_KEY = APIOperation( +@@ -15956,7 +15956,7 @@ ROTATE_MASTER_ENCRYPTION_KEY = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -16057,7 +16057,7 @@ MIGRATE_WORKSPACE_SCHEMA = APIOperation( +@@ -16135,7 +16135,7 @@ MIGRATE_WORKSPACE_SCHEMA = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -16244,7 +16244,7 @@ UPDATE_ORGANISATION = APIOperation( +@@ -16322,7 +16322,7 @@ UPDATE_ORGANISATION = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -16329,7 +16329,7 @@ ROTATE_WORKSPACE_ENCRYPTION_KEY = APIOperation( +@@ -16407,7 +16407,7 @@ ROTATE_WORKSPACE_ENCRYPTION_KEY = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -16480,7 +16480,7 @@ UPDATE_SECRET = APIOperation( +@@ -16558,7 +16558,7 @@ UPDATE_SECRET = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -16639,7 +16639,7 @@ UPDATE_TYPE_TEMPLATES = APIOperation( +@@ -16717,7 +16717,7 @@ UPDATE_TYPE_TEMPLATES = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -16784,7 +16784,7 @@ UPDATE_VARIABLE = APIOperation( +@@ -16862,7 +16862,7 @@ UPDATE_VARIABLE = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -17023,7 +17023,7 @@ UPDATE_WEBHOOK = APIOperation( +@@ -17101,7 +17101,7 @@ UPDATE_WEBHOOK = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) -@@ -17269,7 +17269,7 @@ UPDATE_WORKSPACE = APIOperation( +@@ -17347,7 +17347,7 @@ UPDATE_WORKSPACE = APIOperation( ShapeID("io.superposition#InternalServerError"): InternalServerError, }), effective_auth_schemes = [ - ShapeID("smithy.api#httpBasicAuth") -+ ShapeID("smithy.api#httpBasicAuth"), ++ ShapeID("smithy.api#httpBasicAuth"), ShapeID("smithy.api#httpBearerAuth") ] ) From 85d5de59921e517450274d702d7f3a5502e4d834 Mon Sep 17 00:00:00 2001 From: "ayush.jain@juspay.in" Date: Tue, 5 May 2026 17:08:27 +0530 Subject: [PATCH 3/3] fix: smithy generation --- .../client/SuperpositionAsyncClientImpl.java | 2 +- .../client/SuperpositionClientImpl.java | 2 +- .../src/operation/add_members_to_group.rs | 4 +- .../add_members_to_group/builders.rs | 4 +- .../src/operation/applicable_variants.rs | 4 +- .../operation/applicable_variants/builders.rs | 4 +- .../src/operation/bulk_operation.rs | 4 +- .../src/operation/bulk_operation/builders.rs | 4 +- .../src/operation/conclude_experiment.rs | 4 +- .../operation/conclude_experiment/builders.rs | 4 +- .../src/operation/create_context.rs | 4 +- .../src/operation/create_context/builders.rs | 4 +- .../src/operation/create_default_config.rs | 4 +- .../create_default_config/builders.rs | 4 +- .../src/operation/create_dimension.rs | 4 +- .../operation/create_dimension/builders.rs | 4 +- .../src/operation/create_experiment.rs | 4 +- .../operation/create_experiment/builders.rs | 4 +- .../src/operation/create_experiment_group.rs | 4 +- .../create_experiment_group/builders.rs | 4 +- .../src/operation/create_function.rs | 4 +- .../src/operation/create_function/builders.rs | 4 +- .../src/operation/create_organisation.rs | 4 +- .../operation/create_organisation/builders.rs | 4 +- .../src/operation/create_secret.rs | 4 +- .../src/operation/create_secret/builders.rs | 4 +- .../src/operation/create_type_templates.rs | 4 +- .../create_type_templates/builders.rs | 4 +- .../src/operation/create_variable.rs | 4 +- .../src/operation/create_variable/builders.rs | 4 +- .../src/operation/create_webhook.rs | 4 +- .../src/operation/create_webhook/builders.rs | 4 +- .../src/operation/create_workspace.rs | 4 +- .../operation/create_workspace/builders.rs | 4 +- .../src/operation/delete_context.rs | 4 +- .../src/operation/delete_context/builders.rs | 4 +- .../src/operation/delete_default_config.rs | 4 +- .../delete_default_config/builders.rs | 4 +- .../src/operation/delete_dimension.rs | 4 +- .../operation/delete_dimension/builders.rs | 4 +- .../src/operation/delete_experiment_group.rs | 4 +- .../delete_experiment_group/builders.rs | 4 +- .../src/operation/delete_function.rs | 4 +- .../src/operation/delete_function/builders.rs | 4 +- .../src/operation/delete_secret.rs | 4 +- .../src/operation/delete_secret/builders.rs | 4 +- .../src/operation/delete_type_templates.rs | 4 +- .../delete_type_templates/builders.rs | 4 +- .../src/operation/delete_variable.rs | 4 +- .../src/operation/delete_variable/builders.rs | 4 +- .../src/operation/delete_webhook.rs | 4 +- .../src/operation/delete_webhook/builders.rs | 4 +- .../src/operation/discard_experiment.rs | 4 +- .../operation/discard_experiment/builders.rs | 4 +- .../src/operation/get_config.rs | 4 +- .../src/operation/get_config/builders.rs | 4 +- .../src/operation/get_config_json.rs | 4 +- .../src/operation/get_config_json/builders.rs | 4 +- .../src/operation/get_config_toml.rs | 4 +- .../src/operation/get_config_toml/builders.rs | 4 +- .../src/operation/get_context.rs | 4 +- .../src/operation/get_context/builders.rs | 4 +- .../operation/get_context_from_condition.rs | 4 +- .../get_context_from_condition/builders.rs | 4 +- .../src/operation/get_default_config.rs | 4 +- .../operation/get_default_config/builders.rs | 4 +- .../src/operation/get_dimension.rs | 4 +- .../src/operation/get_dimension/builders.rs | 4 +- .../src/operation/get_experiment.rs | 4 +- .../src/operation/get_experiment/builders.rs | 4 +- .../src/operation/get_experiment_config.rs | 4 +- .../get_experiment_config/builders.rs | 4 +- .../src/operation/get_experiment_group.rs | 4 +- .../get_experiment_group/builders.rs | 4 +- .../src/operation/get_function.rs | 4 +- .../src/operation/get_function/builders.rs | 4 +- .../src/operation/get_organisation.rs | 4 +- .../operation/get_organisation/builders.rs | 4 +- .../src/operation/get_resolved_config.rs | 4 +- .../operation/get_resolved_config/builders.rs | 4 +- .../get_resolved_config_with_identifier.rs | 4 +- .../builders.rs | 4 +- .../src/operation/get_secret.rs | 4 +- .../src/operation/get_secret/builders.rs | 4 +- .../src/operation/get_type_template.rs | 4 +- .../operation/get_type_template/builders.rs | 4 +- .../src/operation/get_type_templates_list.rs | 4 +- .../get_type_templates_list/builders.rs | 4 +- .../src/operation/get_variable.rs | 4 +- .../src/operation/get_variable/builders.rs | 4 +- .../src/operation/get_version.rs | 4 +- .../src/operation/get_version/builders.rs | 4 +- .../src/operation/get_webhook.rs | 4 +- .../src/operation/get_webhook/builders.rs | 4 +- .../src/operation/get_webhook_by_event.rs | 4 +- .../get_webhook_by_event/builders.rs | 4 +- .../src/operation/get_workspace.rs | 4 +- .../src/operation/get_workspace/builders.rs | 4 +- .../src/operation/list_audit_logs.rs | 4 +- .../src/operation/list_audit_logs/builders.rs | 4 +- .../src/operation/list_contexts.rs | 4 +- .../src/operation/list_contexts/builders.rs | 4 +- .../src/operation/list_default_configs.rs | 4 +- .../list_default_configs/builders.rs | 4 +- .../src/operation/list_dimensions.rs | 4 +- .../src/operation/list_dimensions/builders.rs | 4 +- .../src/operation/list_experiment.rs | 4 +- .../src/operation/list_experiment/builders.rs | 4 +- .../src/operation/list_experiment_groups.rs | 4 +- .../list_experiment_groups/builders.rs | 4 +- .../src/operation/list_function.rs | 4 +- .../src/operation/list_function/builders.rs | 4 +- .../src/operation/list_organisation.rs | 4 +- .../operation/list_organisation/builders.rs | 4 +- .../src/operation/list_secrets.rs | 4 +- .../src/operation/list_secrets/builders.rs | 4 +- .../src/operation/list_variables.rs | 4 +- .../src/operation/list_variables/builders.rs | 4 +- .../src/operation/list_versions.rs | 4 +- .../src/operation/list_versions/builders.rs | 4 +- .../src/operation/list_webhook.rs | 4 +- .../src/operation/list_webhook/builders.rs | 4 +- .../src/operation/list_workspace.rs | 4 +- .../src/operation/list_workspace/builders.rs | 4 +- .../src/operation/migrate_workspace_schema.rs | 4 +- .../migrate_workspace_schema/builders.rs | 4 +- .../src/operation/move_context.rs | 4 +- .../src/operation/move_context/builders.rs | 4 +- .../src/operation/pause_experiment.rs | 4 +- .../operation/pause_experiment/builders.rs | 4 +- .../src/operation/publish.rs | 4 +- .../src/operation/publish/builders.rs | 4 +- .../src/operation/ramp_experiment.rs | 4 +- .../src/operation/ramp_experiment/builders.rs | 4 +- .../operation/remove_members_from_group.rs | 4 +- .../remove_members_from_group/builders.rs | 4 +- .../src/operation/resume_experiment.rs | 4 +- .../operation/resume_experiment/builders.rs | 4 +- .../operation/rotate_master_encryption_key.rs | 4 +- .../rotate_master_encryption_key/builders.rs | 4 +- .../rotate_workspace_encryption_key.rs | 4 +- .../builders.rs | 4 +- .../superposition_sdk/src/operation/test.rs | 4 +- .../src/operation/test/builders.rs | 4 +- .../src/operation/update_default_config.rs | 4 +- .../update_default_config/builders.rs | 4 +- .../src/operation/update_dimension.rs | 4 +- .../operation/update_dimension/builders.rs | 4 +- .../src/operation/update_experiment_group.rs | 4 +- .../update_experiment_group/builders.rs | 4 +- .../src/operation/update_function.rs | 4 +- .../src/operation/update_function/builders.rs | 4 +- .../src/operation/update_organisation.rs | 4 +- .../operation/update_organisation/builders.rs | 4 +- .../src/operation/update_override.rs | 4 +- .../src/operation/update_override/builders.rs | 4 +- .../operation/update_overrides_experiment.rs | 4 +- .../update_overrides_experiment/builders.rs | 4 +- .../src/operation/update_secret.rs | 4 +- .../src/operation/update_secret/builders.rs | 4 +- .../src/operation/update_type_templates.rs | 4 +- .../update_type_templates/builders.rs | 4 +- .../src/operation/update_variable.rs | 4 +- .../src/operation/update_variable/builders.rs | 4 +- .../src/operation/update_webhook.rs | 4 +- .../src/operation/update_webhook/builders.rs | 4 +- .../src/operation/update_workspace.rs | 4 +- .../operation/update_workspace/builders.rs | 4 +- .../src/operation/validate_context.rs | 4 +- .../operation/validate_context/builders.rs | 4 +- .../src/operation/weight_recompute.rs | 4 +- .../operation/weight_recompute/builders.rs | 4 +- crates/superposition_sdk/src/types.rs | 110 +++++++++--------- .../superposition_sdk/src/types/builders.rs | 58 ++++----- docs/docs/api/add-members-to-group.api.mdx | 2 +- docs/docs/api/applicable-variants.api.mdx | 2 +- docs/docs/api/bulk-operation.api.mdx | 2 +- docs/docs/api/conclude-experiment.api.mdx | 2 +- docs/docs/api/create-context.api.mdx | 2 +- docs/docs/api/create-default-config.api.mdx | 2 +- docs/docs/api/create-dimension.api.mdx | 2 +- docs/docs/api/create-experiment-group.api.mdx | 2 +- docs/docs/api/create-experiment.api.mdx | 2 +- docs/docs/api/create-function.api.mdx | 2 +- docs/docs/api/create-organisation.api.mdx | 2 +- docs/docs/api/create-secret.api.mdx | 2 +- docs/docs/api/create-type-templates.api.mdx | 2 +- docs/docs/api/create-variable.api.mdx | 2 +- docs/docs/api/create-webhook.api.mdx | 2 +- docs/docs/api/create-workspace.api.mdx | 2 +- docs/docs/api/delete-context.api.mdx | 2 +- docs/docs/api/delete-default-config.api.mdx | 2 +- docs/docs/api/delete-dimension.api.mdx | 2 +- docs/docs/api/delete-experiment-group.api.mdx | 2 +- docs/docs/api/delete-function.api.mdx | 2 +- docs/docs/api/delete-secret.api.mdx | 2 +- docs/docs/api/delete-type-templates.api.mdx | 2 +- docs/docs/api/delete-variable.api.mdx | 2 +- docs/docs/api/delete-webhook.api.mdx | 2 +- docs/docs/api/discard-experiment.api.mdx | 2 +- docs/docs/api/get-config-json.api.mdx | 2 +- docs/docs/api/get-config-toml.api.mdx | 2 +- docs/docs/api/get-config.api.mdx | 2 +- .../api/get-context-from-condition.api.mdx | 2 +- docs/docs/api/get-context.api.mdx | 2 +- docs/docs/api/get-default-config.api.mdx | 2 +- docs/docs/api/get-dimension.api.mdx | 2 +- docs/docs/api/get-experiment-config.api.mdx | 2 +- docs/docs/api/get-experiment-group.api.mdx | 2 +- docs/docs/api/get-experiment.api.mdx | 2 +- docs/docs/api/get-function.api.mdx | 2 +- docs/docs/api/get-organisation.api.mdx | 2 +- ...et-resolved-config-with-identifier.api.mdx | 2 +- docs/docs/api/get-resolved-config.api.mdx | 2 +- docs/docs/api/get-secret.api.mdx | 2 +- docs/docs/api/get-type-template.api.mdx | 2 +- docs/docs/api/get-type-templates-list.api.mdx | 2 +- docs/docs/api/get-variable.api.mdx | 2 +- docs/docs/api/get-version.api.mdx | 2 +- docs/docs/api/get-webhook-by-event.api.mdx | 2 +- docs/docs/api/get-webhook.api.mdx | 2 +- docs/docs/api/get-workspace.api.mdx | 2 +- docs/docs/api/list-audit-logs.api.mdx | 2 +- docs/docs/api/list-contexts.api.mdx | 2 +- docs/docs/api/list-default-configs.api.mdx | 2 +- docs/docs/api/list-dimensions.api.mdx | 2 +- docs/docs/api/list-experiment-groups.api.mdx | 2 +- docs/docs/api/list-experiment.api.mdx | 2 +- docs/docs/api/list-function.api.mdx | 2 +- docs/docs/api/list-organisation.api.mdx | 2 +- docs/docs/api/list-secrets.api.mdx | 2 +- docs/docs/api/list-variables.api.mdx | 2 +- docs/docs/api/list-versions.api.mdx | 2 +- docs/docs/api/list-webhook.api.mdx | 2 +- docs/docs/api/list-workspace.api.mdx | 2 +- .../docs/api/migrate-workspace-schema.api.mdx | 2 +- docs/docs/api/move-context.api.mdx | 2 +- docs/docs/api/pause-experiment.api.mdx | 2 +- docs/docs/api/publish.api.mdx | 2 +- docs/docs/api/ramp-experiment.api.mdx | 2 +- .../api/remove-members-from-group.api.mdx | 2 +- docs/docs/api/resume-experiment.api.mdx | 2 +- .../api/rotate-master-encryption-key.api.mdx | 2 +- .../rotate-workspace-encryption-key.api.mdx | 2 +- docs/docs/api/test.api.mdx | 2 +- docs/docs/api/update-default-config.api.mdx | 2 +- docs/docs/api/update-dimension.api.mdx | 2 +- docs/docs/api/update-experiment-group.api.mdx | 2 +- docs/docs/api/update-function.api.mdx | 2 +- docs/docs/api/update-organisation.api.mdx | 2 +- docs/docs/api/update-override.api.mdx | 2 +- .../api/update-overrides-experiment.api.mdx | 2 +- docs/docs/api/update-secret.api.mdx | 2 +- docs/docs/api/update-type-templates.api.mdx | 2 +- docs/docs/api/update-variable.api.mdx | 2 +- docs/docs/api/update-webhook.api.mdx | 2 +- docs/docs/api/update-workspace.api.mdx | 2 +- docs/docs/api/validate-context.api.mdx | 2 +- docs/docs/api/weight-recompute.api.mdx | 2 +- smithy/patches/python.patch | 2 +- 260 files changed, 512 insertions(+), 512 deletions(-) diff --git a/clients/java/sdk/src/main/java/io/juspay/superposition/client/SuperpositionAsyncClientImpl.java b/clients/java/sdk/src/main/java/io/juspay/superposition/client/SuperpositionAsyncClientImpl.java index 79b07bff2..fd126b5fe 100644 --- a/clients/java/sdk/src/main/java/io/juspay/superposition/client/SuperpositionAsyncClientImpl.java +++ b/clients/java/sdk/src/main/java/io/juspay/superposition/client/SuperpositionAsyncClientImpl.java @@ -272,8 +272,8 @@ @SmithyGenerated final class SuperpositionAsyncClientImpl extends Client implements SuperpositionAsyncClient { private static final TypeRegistry TYPE_REGISTRY = TypeRegistry.builder() - .putType(ValidationException.$ID, ValidationException.class, ValidationException::builder) .putType(AccessDeniedException.$ID, AccessDeniedException.class, AccessDeniedException::builder) + .putType(ValidationException.$ID, ValidationException.class, ValidationException::builder) .putType(NotAuthorizedException.$ID, NotAuthorizedException.class, NotAuthorizedException::builder) .putType(InternalFailureException.$ID, InternalFailureException.class, InternalFailureException::builder) .putType(UnknownOperationException.$ID, UnknownOperationException.class, UnknownOperationException::builder) diff --git a/clients/java/sdk/src/main/java/io/juspay/superposition/client/SuperpositionClientImpl.java b/clients/java/sdk/src/main/java/io/juspay/superposition/client/SuperpositionClientImpl.java index a5c489143..1872bd8f9 100644 --- a/clients/java/sdk/src/main/java/io/juspay/superposition/client/SuperpositionClientImpl.java +++ b/clients/java/sdk/src/main/java/io/juspay/superposition/client/SuperpositionClientImpl.java @@ -272,8 +272,8 @@ @SmithyGenerated final class SuperpositionClientImpl extends Client implements SuperpositionClient { private static final TypeRegistry TYPE_REGISTRY = TypeRegistry.builder() - .putType(ValidationException.$ID, ValidationException.class, ValidationException::builder) .putType(AccessDeniedException.$ID, AccessDeniedException.class, AccessDeniedException::builder) + .putType(ValidationException.$ID, ValidationException.class, ValidationException::builder) .putType(NotAuthorizedException.$ID, NotAuthorizedException.class, NotAuthorizedException::builder) .putType(InternalFailureException.$ID, InternalFailureException.class, InternalFailureException::builder) .putType(UnknownOperationException.$ID, UnknownOperationException.class, UnknownOperationException::builder) diff --git a/crates/superposition_sdk/src/operation/add_members_to_group.rs b/crates/superposition_sdk/src/operation/add_members_to_group.rs index fc296e7e8..b5f0ea2e6 100644 --- a/crates/superposition_sdk/src/operation/add_members_to_group.rs +++ b/crates/superposition_sdk/src/operation/add_members_to_group.rs @@ -308,10 +308,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for AddMembe } } -pub use crate::operation::add_members_to_group::_add_members_to_group_output::AddMembersToGroupOutput; - pub use crate::operation::add_members_to_group::_add_members_to_group_input::AddMembersToGroupInput; +pub use crate::operation::add_members_to_group::_add_members_to_group_output::AddMembersToGroupOutput; + mod _add_members_to_group_input; mod _add_members_to_group_output; diff --git a/crates/superposition_sdk/src/operation/add_members_to_group/builders.rs b/crates/superposition_sdk/src/operation/add_members_to_group/builders.rs index 4dfac95f9..8fb5513d5 100644 --- a/crates/superposition_sdk/src/operation/add_members_to_group/builders.rs +++ b/crates/superposition_sdk/src/operation/add_members_to_group/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::add_members_to_group::_add_members_to_group_output::AddMembersToGroupOutputBuilder; - pub use crate::operation::add_members_to_group::_add_members_to_group_input::AddMembersToGroupInputBuilder; +pub use crate::operation::add_members_to_group::_add_members_to_group_output::AddMembersToGroupOutputBuilder; + impl crate::operation::add_members_to_group::builders::AddMembersToGroupInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/applicable_variants.rs b/crates/superposition_sdk/src/operation/applicable_variants.rs index c9451ba0d..c19ebde1f 100644 --- a/crates/superposition_sdk/src/operation/applicable_variants.rs +++ b/crates/superposition_sdk/src/operation/applicable_variants.rs @@ -304,10 +304,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for Applicab } } -pub use crate::operation::applicable_variants::_applicable_variants_output::ApplicableVariantsOutput; - pub use crate::operation::applicable_variants::_applicable_variants_input::ApplicableVariantsInput; +pub use crate::operation::applicable_variants::_applicable_variants_output::ApplicableVariantsOutput; + mod _applicable_variants_input; mod _applicable_variants_output; diff --git a/crates/superposition_sdk/src/operation/applicable_variants/builders.rs b/crates/superposition_sdk/src/operation/applicable_variants/builders.rs index dbffde4f0..dc013659a 100644 --- a/crates/superposition_sdk/src/operation/applicable_variants/builders.rs +++ b/crates/superposition_sdk/src/operation/applicable_variants/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::applicable_variants::_applicable_variants_output::ApplicableVariantsOutputBuilder; - pub use crate::operation::applicable_variants::_applicable_variants_input::ApplicableVariantsInputBuilder; +pub use crate::operation::applicable_variants::_applicable_variants_output::ApplicableVariantsOutputBuilder; + impl crate::operation::applicable_variants::builders::ApplicableVariantsInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/bulk_operation.rs b/crates/superposition_sdk/src/operation/bulk_operation.rs index 5f2564e2c..da3d70d55 100644 --- a/crates/superposition_sdk/src/operation/bulk_operation.rs +++ b/crates/superposition_sdk/src/operation/bulk_operation.rs @@ -318,10 +318,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for BulkOper } } -pub use crate::operation::bulk_operation::_bulk_operation_output::BulkOperationOutput; - pub use crate::operation::bulk_operation::_bulk_operation_input::BulkOperationInput; +pub use crate::operation::bulk_operation::_bulk_operation_output::BulkOperationOutput; + mod _bulk_operation_input; mod _bulk_operation_output; diff --git a/crates/superposition_sdk/src/operation/bulk_operation/builders.rs b/crates/superposition_sdk/src/operation/bulk_operation/builders.rs index 823d72463..62335d60a 100644 --- a/crates/superposition_sdk/src/operation/bulk_operation/builders.rs +++ b/crates/superposition_sdk/src/operation/bulk_operation/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::bulk_operation::_bulk_operation_output::BulkOperationOutputBuilder; - pub use crate::operation::bulk_operation::_bulk_operation_input::BulkOperationInputBuilder; +pub use crate::operation::bulk_operation::_bulk_operation_output::BulkOperationOutputBuilder; + impl crate::operation::bulk_operation::builders::BulkOperationInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/conclude_experiment.rs b/crates/superposition_sdk/src/operation/conclude_experiment.rs index c2250ddb0..3a8e93b6e 100644 --- a/crates/superposition_sdk/src/operation/conclude_experiment.rs +++ b/crates/superposition_sdk/src/operation/conclude_experiment.rs @@ -324,10 +324,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for Conclude } } -pub use crate::operation::conclude_experiment::_conclude_experiment_output::ConcludeExperimentOutput; - pub use crate::operation::conclude_experiment::_conclude_experiment_input::ConcludeExperimentInput; +pub use crate::operation::conclude_experiment::_conclude_experiment_output::ConcludeExperimentOutput; + mod _conclude_experiment_input; mod _conclude_experiment_output; diff --git a/crates/superposition_sdk/src/operation/conclude_experiment/builders.rs b/crates/superposition_sdk/src/operation/conclude_experiment/builders.rs index a14cf15fe..e86174700 100644 --- a/crates/superposition_sdk/src/operation/conclude_experiment/builders.rs +++ b/crates/superposition_sdk/src/operation/conclude_experiment/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::conclude_experiment::_conclude_experiment_output::ConcludeExperimentOutputBuilder; - pub use crate::operation::conclude_experiment::_conclude_experiment_input::ConcludeExperimentInputBuilder; +pub use crate::operation::conclude_experiment::_conclude_experiment_output::ConcludeExperimentOutputBuilder; + impl crate::operation::conclude_experiment::builders::ConcludeExperimentInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/create_context.rs b/crates/superposition_sdk/src/operation/create_context.rs index 58a413290..aeedd6c6d 100644 --- a/crates/superposition_sdk/src/operation/create_context.rs +++ b/crates/superposition_sdk/src/operation/create_context.rs @@ -318,10 +318,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for CreateCo } } -pub use crate::operation::create_context::_create_context_output::CreateContextOutput; - pub use crate::operation::create_context::_create_context_input::CreateContextInput; +pub use crate::operation::create_context::_create_context_output::CreateContextOutput; + mod _create_context_input; mod _create_context_output; diff --git a/crates/superposition_sdk/src/operation/create_context/builders.rs b/crates/superposition_sdk/src/operation/create_context/builders.rs index a56c015ee..eb044d606 100644 --- a/crates/superposition_sdk/src/operation/create_context/builders.rs +++ b/crates/superposition_sdk/src/operation/create_context/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::create_context::_create_context_output::CreateContextOutputBuilder; - pub use crate::operation::create_context::_create_context_input::CreateContextInputBuilder; +pub use crate::operation::create_context::_create_context_output::CreateContextOutputBuilder; + impl crate::operation::create_context::builders::CreateContextInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/create_default_config.rs b/crates/superposition_sdk/src/operation/create_default_config.rs index e66ddc49b..ba69033b1 100644 --- a/crates/superposition_sdk/src/operation/create_default_config.rs +++ b/crates/superposition_sdk/src/operation/create_default_config.rs @@ -302,10 +302,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for CreateDe } } -pub use crate::operation::create_default_config::_create_default_config_output::CreateDefaultConfigOutput; - pub use crate::operation::create_default_config::_create_default_config_input::CreateDefaultConfigInput; +pub use crate::operation::create_default_config::_create_default_config_output::CreateDefaultConfigOutput; + mod _create_default_config_input; mod _create_default_config_output; diff --git a/crates/superposition_sdk/src/operation/create_default_config/builders.rs b/crates/superposition_sdk/src/operation/create_default_config/builders.rs index 8b3e5ca3d..f20c44ad3 100644 --- a/crates/superposition_sdk/src/operation/create_default_config/builders.rs +++ b/crates/superposition_sdk/src/operation/create_default_config/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::create_default_config::_create_default_config_output::CreateDefaultConfigOutputBuilder; - pub use crate::operation::create_default_config::_create_default_config_input::CreateDefaultConfigInputBuilder; +pub use crate::operation::create_default_config::_create_default_config_output::CreateDefaultConfigOutputBuilder; + impl crate::operation::create_default_config::builders::CreateDefaultConfigInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/create_dimension.rs b/crates/superposition_sdk/src/operation/create_dimension.rs index d4b96cbbc..abfbdecdd 100644 --- a/crates/superposition_sdk/src/operation/create_dimension.rs +++ b/crates/superposition_sdk/src/operation/create_dimension.rs @@ -302,10 +302,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for CreateDi } } -pub use crate::operation::create_dimension::_create_dimension_output::CreateDimensionOutput; - pub use crate::operation::create_dimension::_create_dimension_input::CreateDimensionInput; +pub use crate::operation::create_dimension::_create_dimension_output::CreateDimensionOutput; + mod _create_dimension_input; mod _create_dimension_output; diff --git a/crates/superposition_sdk/src/operation/create_dimension/builders.rs b/crates/superposition_sdk/src/operation/create_dimension/builders.rs index d8e6befb9..ac06bb21a 100644 --- a/crates/superposition_sdk/src/operation/create_dimension/builders.rs +++ b/crates/superposition_sdk/src/operation/create_dimension/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::create_dimension::_create_dimension_output::CreateDimensionOutputBuilder; - pub use crate::operation::create_dimension::_create_dimension_input::CreateDimensionInputBuilder; +pub use crate::operation::create_dimension::_create_dimension_output::CreateDimensionOutputBuilder; + impl crate::operation::create_dimension::builders::CreateDimensionInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/create_experiment.rs b/crates/superposition_sdk/src/operation/create_experiment.rs index c1aa041b1..a3fa73942 100644 --- a/crates/superposition_sdk/src/operation/create_experiment.rs +++ b/crates/superposition_sdk/src/operation/create_experiment.rs @@ -302,10 +302,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for CreateEx } } -pub use crate::operation::create_experiment::_create_experiment_output::CreateExperimentOutput; - pub use crate::operation::create_experiment::_create_experiment_input::CreateExperimentInput; +pub use crate::operation::create_experiment::_create_experiment_output::CreateExperimentOutput; + mod _create_experiment_input; mod _create_experiment_output; diff --git a/crates/superposition_sdk/src/operation/create_experiment/builders.rs b/crates/superposition_sdk/src/operation/create_experiment/builders.rs index 3b3003c9d..f4fd50a87 100644 --- a/crates/superposition_sdk/src/operation/create_experiment/builders.rs +++ b/crates/superposition_sdk/src/operation/create_experiment/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::create_experiment::_create_experiment_output::CreateExperimentOutputBuilder; - pub use crate::operation::create_experiment::_create_experiment_input::CreateExperimentInputBuilder; +pub use crate::operation::create_experiment::_create_experiment_output::CreateExperimentOutputBuilder; + impl crate::operation::create_experiment::builders::CreateExperimentInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/create_experiment_group.rs b/crates/superposition_sdk/src/operation/create_experiment_group.rs index 5755c5208..dc9cfd27b 100644 --- a/crates/superposition_sdk/src/operation/create_experiment_group.rs +++ b/crates/superposition_sdk/src/operation/create_experiment_group.rs @@ -286,10 +286,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for CreateEx } } -pub use crate::operation::create_experiment_group::_create_experiment_group_output::CreateExperimentGroupOutput; - pub use crate::operation::create_experiment_group::_create_experiment_group_input::CreateExperimentGroupInput; +pub use crate::operation::create_experiment_group::_create_experiment_group_output::CreateExperimentGroupOutput; + mod _create_experiment_group_input; mod _create_experiment_group_output; diff --git a/crates/superposition_sdk/src/operation/create_experiment_group/builders.rs b/crates/superposition_sdk/src/operation/create_experiment_group/builders.rs index cebf5a6c0..c9ca157e9 100644 --- a/crates/superposition_sdk/src/operation/create_experiment_group/builders.rs +++ b/crates/superposition_sdk/src/operation/create_experiment_group/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::create_experiment_group::_create_experiment_group_output::CreateExperimentGroupOutputBuilder; - pub use crate::operation::create_experiment_group::_create_experiment_group_input::CreateExperimentGroupInputBuilder; +pub use crate::operation::create_experiment_group::_create_experiment_group_output::CreateExperimentGroupOutputBuilder; + impl crate::operation::create_experiment_group::builders::CreateExperimentGroupInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/create_function.rs b/crates/superposition_sdk/src/operation/create_function.rs index 2fd305423..db52a2c91 100644 --- a/crates/superposition_sdk/src/operation/create_function.rs +++ b/crates/superposition_sdk/src/operation/create_function.rs @@ -286,10 +286,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for CreateFu } } -pub use crate::operation::create_function::_create_function_output::CreateFunctionOutput; - pub use crate::operation::create_function::_create_function_input::CreateFunctionInput; +pub use crate::operation::create_function::_create_function_output::CreateFunctionOutput; + mod _create_function_input; mod _create_function_output; diff --git a/crates/superposition_sdk/src/operation/create_function/builders.rs b/crates/superposition_sdk/src/operation/create_function/builders.rs index f72bb7d8c..5499c1072 100644 --- a/crates/superposition_sdk/src/operation/create_function/builders.rs +++ b/crates/superposition_sdk/src/operation/create_function/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::create_function::_create_function_output::CreateFunctionOutputBuilder; - pub use crate::operation::create_function::_create_function_input::CreateFunctionInputBuilder; +pub use crate::operation::create_function::_create_function_output::CreateFunctionOutputBuilder; + impl crate::operation::create_function::builders::CreateFunctionInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/create_organisation.rs b/crates/superposition_sdk/src/operation/create_organisation.rs index 99cd51630..7a4ccf7bb 100644 --- a/crates/superposition_sdk/src/operation/create_organisation.rs +++ b/crates/superposition_sdk/src/operation/create_organisation.rs @@ -285,10 +285,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for CreateOr } } -pub use crate::operation::create_organisation::_create_organisation_output::CreateOrganisationOutput; - pub use crate::operation::create_organisation::_create_organisation_input::CreateOrganisationInput; +pub use crate::operation::create_organisation::_create_organisation_output::CreateOrganisationOutput; + mod _create_organisation_input; mod _create_organisation_output; diff --git a/crates/superposition_sdk/src/operation/create_organisation/builders.rs b/crates/superposition_sdk/src/operation/create_organisation/builders.rs index bd8dcd84e..98a1d6e5c 100644 --- a/crates/superposition_sdk/src/operation/create_organisation/builders.rs +++ b/crates/superposition_sdk/src/operation/create_organisation/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::create_organisation::_create_organisation_output::CreateOrganisationOutputBuilder; - pub use crate::operation::create_organisation::_create_organisation_input::CreateOrganisationInputBuilder; +pub use crate::operation::create_organisation::_create_organisation_output::CreateOrganisationOutputBuilder; + impl crate::operation::create_organisation::builders::CreateOrganisationInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/create_secret.rs b/crates/superposition_sdk/src/operation/create_secret.rs index 5efb802da..bdc039e23 100644 --- a/crates/superposition_sdk/src/operation/create_secret.rs +++ b/crates/superposition_sdk/src/operation/create_secret.rs @@ -286,10 +286,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for CreateSe } } -pub use crate::operation::create_secret::_create_secret_output::CreateSecretOutput; - pub use crate::operation::create_secret::_create_secret_input::CreateSecretInput; +pub use crate::operation::create_secret::_create_secret_output::CreateSecretOutput; + mod _create_secret_input; mod _create_secret_output; diff --git a/crates/superposition_sdk/src/operation/create_secret/builders.rs b/crates/superposition_sdk/src/operation/create_secret/builders.rs index 36f7ae209..701d75519 100644 --- a/crates/superposition_sdk/src/operation/create_secret/builders.rs +++ b/crates/superposition_sdk/src/operation/create_secret/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::create_secret::_create_secret_output::CreateSecretOutputBuilder; - pub use crate::operation::create_secret::_create_secret_input::CreateSecretInputBuilder; +pub use crate::operation::create_secret::_create_secret_output::CreateSecretOutputBuilder; + impl crate::operation::create_secret::builders::CreateSecretInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/create_type_templates.rs b/crates/superposition_sdk/src/operation/create_type_templates.rs index c50d85647..21c19da59 100644 --- a/crates/superposition_sdk/src/operation/create_type_templates.rs +++ b/crates/superposition_sdk/src/operation/create_type_templates.rs @@ -286,10 +286,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for CreateTy } } -pub use crate::operation::create_type_templates::_create_type_templates_output::CreateTypeTemplatesOutput; - pub use crate::operation::create_type_templates::_create_type_templates_input::CreateTypeTemplatesInput; +pub use crate::operation::create_type_templates::_create_type_templates_output::CreateTypeTemplatesOutput; + mod _create_type_templates_input; mod _create_type_templates_output; diff --git a/crates/superposition_sdk/src/operation/create_type_templates/builders.rs b/crates/superposition_sdk/src/operation/create_type_templates/builders.rs index a7ac37223..969e0e2db 100644 --- a/crates/superposition_sdk/src/operation/create_type_templates/builders.rs +++ b/crates/superposition_sdk/src/operation/create_type_templates/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::create_type_templates::_create_type_templates_output::CreateTypeTemplatesOutputBuilder; - pub use crate::operation::create_type_templates::_create_type_templates_input::CreateTypeTemplatesInputBuilder; +pub use crate::operation::create_type_templates::_create_type_templates_output::CreateTypeTemplatesOutputBuilder; + impl crate::operation::create_type_templates::builders::CreateTypeTemplatesInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/create_variable.rs b/crates/superposition_sdk/src/operation/create_variable.rs index 211d3b082..01c2fa3e1 100644 --- a/crates/superposition_sdk/src/operation/create_variable.rs +++ b/crates/superposition_sdk/src/operation/create_variable.rs @@ -286,10 +286,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for CreateVa } } -pub use crate::operation::create_variable::_create_variable_output::CreateVariableOutput; - pub use crate::operation::create_variable::_create_variable_input::CreateVariableInput; +pub use crate::operation::create_variable::_create_variable_output::CreateVariableOutput; + mod _create_variable_input; mod _create_variable_output; diff --git a/crates/superposition_sdk/src/operation/create_variable/builders.rs b/crates/superposition_sdk/src/operation/create_variable/builders.rs index 5f1728d20..3bc32ce15 100644 --- a/crates/superposition_sdk/src/operation/create_variable/builders.rs +++ b/crates/superposition_sdk/src/operation/create_variable/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::create_variable::_create_variable_output::CreateVariableOutputBuilder; - pub use crate::operation::create_variable::_create_variable_input::CreateVariableInputBuilder; +pub use crate::operation::create_variable::_create_variable_output::CreateVariableOutputBuilder; + impl crate::operation::create_variable::builders::CreateVariableInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/create_webhook.rs b/crates/superposition_sdk/src/operation/create_webhook.rs index 621dd548a..533d3f58f 100644 --- a/crates/superposition_sdk/src/operation/create_webhook.rs +++ b/crates/superposition_sdk/src/operation/create_webhook.rs @@ -286,10 +286,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for CreateWe } } -pub use crate::operation::create_webhook::_create_webhook_output::CreateWebhookOutput; - pub use crate::operation::create_webhook::_create_webhook_input::CreateWebhookInput; +pub use crate::operation::create_webhook::_create_webhook_output::CreateWebhookOutput; + mod _create_webhook_input; mod _create_webhook_output; diff --git a/crates/superposition_sdk/src/operation/create_webhook/builders.rs b/crates/superposition_sdk/src/operation/create_webhook/builders.rs index 5abf21a9b..565cf65f5 100644 --- a/crates/superposition_sdk/src/operation/create_webhook/builders.rs +++ b/crates/superposition_sdk/src/operation/create_webhook/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::create_webhook::_create_webhook_output::CreateWebhookOutputBuilder; - pub use crate::operation::create_webhook::_create_webhook_input::CreateWebhookInputBuilder; +pub use crate::operation::create_webhook::_create_webhook_output::CreateWebhookOutputBuilder; + impl crate::operation::create_webhook::builders::CreateWebhookInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/create_workspace.rs b/crates/superposition_sdk/src/operation/create_workspace.rs index e015abddd..92dc88f8f 100644 --- a/crates/superposition_sdk/src/operation/create_workspace.rs +++ b/crates/superposition_sdk/src/operation/create_workspace.rs @@ -286,10 +286,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for CreateWo } } -pub use crate::operation::create_workspace::_create_workspace_output::CreateWorkspaceOutput; - pub use crate::operation::create_workspace::_create_workspace_input::CreateWorkspaceInput; +pub use crate::operation::create_workspace::_create_workspace_output::CreateWorkspaceOutput; + mod _create_workspace_input; mod _create_workspace_output; diff --git a/crates/superposition_sdk/src/operation/create_workspace/builders.rs b/crates/superposition_sdk/src/operation/create_workspace/builders.rs index 6136c5472..2fe9ddb1a 100644 --- a/crates/superposition_sdk/src/operation/create_workspace/builders.rs +++ b/crates/superposition_sdk/src/operation/create_workspace/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::create_workspace::_create_workspace_output::CreateWorkspaceOutputBuilder; - pub use crate::operation::create_workspace::_create_workspace_input::CreateWorkspaceInputBuilder; +pub use crate::operation::create_workspace::_create_workspace_output::CreateWorkspaceOutputBuilder; + impl crate::operation::create_workspace::builders::CreateWorkspaceInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/delete_context.rs b/crates/superposition_sdk/src/operation/delete_context.rs index e2ec30b5f..908e951f7 100644 --- a/crates/superposition_sdk/src/operation/delete_context.rs +++ b/crates/superposition_sdk/src/operation/delete_context.rs @@ -320,10 +320,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for DeleteCo } } -pub use crate::operation::delete_context::_delete_context_output::DeleteContextOutput; - pub use crate::operation::delete_context::_delete_context_input::DeleteContextInput; +pub use crate::operation::delete_context::_delete_context_output::DeleteContextOutput; + mod _delete_context_input; mod _delete_context_output; diff --git a/crates/superposition_sdk/src/operation/delete_context/builders.rs b/crates/superposition_sdk/src/operation/delete_context/builders.rs index 4760f2441..0c4da5ef0 100644 --- a/crates/superposition_sdk/src/operation/delete_context/builders.rs +++ b/crates/superposition_sdk/src/operation/delete_context/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::delete_context::_delete_context_output::DeleteContextOutputBuilder; - pub use crate::operation::delete_context::_delete_context_input::DeleteContextInputBuilder; +pub use crate::operation::delete_context::_delete_context_output::DeleteContextOutputBuilder; + impl crate::operation::delete_context::builders::DeleteContextInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/delete_default_config.rs b/crates/superposition_sdk/src/operation/delete_default_config.rs index 94f7f2bc0..8913c750c 100644 --- a/crates/superposition_sdk/src/operation/delete_default_config.rs +++ b/crates/superposition_sdk/src/operation/delete_default_config.rs @@ -320,10 +320,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for DeleteDe } } -pub use crate::operation::delete_default_config::_delete_default_config_output::DeleteDefaultConfigOutput; - pub use crate::operation::delete_default_config::_delete_default_config_input::DeleteDefaultConfigInput; +pub use crate::operation::delete_default_config::_delete_default_config_output::DeleteDefaultConfigOutput; + mod _delete_default_config_input; mod _delete_default_config_output; diff --git a/crates/superposition_sdk/src/operation/delete_default_config/builders.rs b/crates/superposition_sdk/src/operation/delete_default_config/builders.rs index 783d25203..9f79f333b 100644 --- a/crates/superposition_sdk/src/operation/delete_default_config/builders.rs +++ b/crates/superposition_sdk/src/operation/delete_default_config/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::delete_default_config::_delete_default_config_output::DeleteDefaultConfigOutputBuilder; - pub use crate::operation::delete_default_config::_delete_default_config_input::DeleteDefaultConfigInputBuilder; +pub use crate::operation::delete_default_config::_delete_default_config_output::DeleteDefaultConfigOutputBuilder; + impl crate::operation::delete_default_config::builders::DeleteDefaultConfigInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/delete_dimension.rs b/crates/superposition_sdk/src/operation/delete_dimension.rs index e116c14cd..793706513 100644 --- a/crates/superposition_sdk/src/operation/delete_dimension.rs +++ b/crates/superposition_sdk/src/operation/delete_dimension.rs @@ -320,10 +320,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for DeleteDi } } -pub use crate::operation::delete_dimension::_delete_dimension_output::DeleteDimensionOutput; - pub use crate::operation::delete_dimension::_delete_dimension_input::DeleteDimensionInput; +pub use crate::operation::delete_dimension::_delete_dimension_output::DeleteDimensionOutput; + mod _delete_dimension_input; mod _delete_dimension_output; diff --git a/crates/superposition_sdk/src/operation/delete_dimension/builders.rs b/crates/superposition_sdk/src/operation/delete_dimension/builders.rs index d4103e88f..c5a355c24 100644 --- a/crates/superposition_sdk/src/operation/delete_dimension/builders.rs +++ b/crates/superposition_sdk/src/operation/delete_dimension/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::delete_dimension::_delete_dimension_output::DeleteDimensionOutputBuilder; - pub use crate::operation::delete_dimension::_delete_dimension_input::DeleteDimensionInputBuilder; +pub use crate::operation::delete_dimension::_delete_dimension_output::DeleteDimensionOutputBuilder; + impl crate::operation::delete_dimension::builders::DeleteDimensionInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/delete_experiment_group.rs b/crates/superposition_sdk/src/operation/delete_experiment_group.rs index 064fea4f7..77f0b10b7 100644 --- a/crates/superposition_sdk/src/operation/delete_experiment_group.rs +++ b/crates/superposition_sdk/src/operation/delete_experiment_group.rs @@ -304,10 +304,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for DeleteEx } } -pub use crate::operation::delete_experiment_group::_delete_experiment_group_output::DeleteExperimentGroupOutput; - pub use crate::operation::delete_experiment_group::_delete_experiment_group_input::DeleteExperimentGroupInput; +pub use crate::operation::delete_experiment_group::_delete_experiment_group_output::DeleteExperimentGroupOutput; + mod _delete_experiment_group_input; mod _delete_experiment_group_output; diff --git a/crates/superposition_sdk/src/operation/delete_experiment_group/builders.rs b/crates/superposition_sdk/src/operation/delete_experiment_group/builders.rs index f6d3ad43b..aa18b86fb 100644 --- a/crates/superposition_sdk/src/operation/delete_experiment_group/builders.rs +++ b/crates/superposition_sdk/src/operation/delete_experiment_group/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::delete_experiment_group::_delete_experiment_group_output::DeleteExperimentGroupOutputBuilder; - pub use crate::operation::delete_experiment_group::_delete_experiment_group_input::DeleteExperimentGroupInputBuilder; +pub use crate::operation::delete_experiment_group::_delete_experiment_group_output::DeleteExperimentGroupOutputBuilder; + impl crate::operation::delete_experiment_group::builders::DeleteExperimentGroupInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/delete_function.rs b/crates/superposition_sdk/src/operation/delete_function.rs index 2cb499e97..cb64ab40d 100644 --- a/crates/superposition_sdk/src/operation/delete_function.rs +++ b/crates/superposition_sdk/src/operation/delete_function.rs @@ -304,10 +304,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for DeleteFu } } -pub use crate::operation::delete_function::_delete_function_output::DeleteFunctionOutput; - pub use crate::operation::delete_function::_delete_function_input::DeleteFunctionInput; +pub use crate::operation::delete_function::_delete_function_output::DeleteFunctionOutput; + mod _delete_function_input; mod _delete_function_output; diff --git a/crates/superposition_sdk/src/operation/delete_function/builders.rs b/crates/superposition_sdk/src/operation/delete_function/builders.rs index 1ac0f19ad..e5b50348c 100644 --- a/crates/superposition_sdk/src/operation/delete_function/builders.rs +++ b/crates/superposition_sdk/src/operation/delete_function/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::delete_function::_delete_function_output::DeleteFunctionOutputBuilder; - pub use crate::operation::delete_function::_delete_function_input::DeleteFunctionInputBuilder; +pub use crate::operation::delete_function::_delete_function_output::DeleteFunctionOutputBuilder; + impl crate::operation::delete_function::builders::DeleteFunctionInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/delete_secret.rs b/crates/superposition_sdk/src/operation/delete_secret.rs index bb8e6d8d8..b419a0c48 100644 --- a/crates/superposition_sdk/src/operation/delete_secret.rs +++ b/crates/superposition_sdk/src/operation/delete_secret.rs @@ -304,10 +304,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for DeleteSe } } -pub use crate::operation::delete_secret::_delete_secret_output::DeleteSecretOutput; - pub use crate::operation::delete_secret::_delete_secret_input::DeleteSecretInput; +pub use crate::operation::delete_secret::_delete_secret_output::DeleteSecretOutput; + mod _delete_secret_input; mod _delete_secret_output; diff --git a/crates/superposition_sdk/src/operation/delete_secret/builders.rs b/crates/superposition_sdk/src/operation/delete_secret/builders.rs index 1a78b7ecd..56f74f37d 100644 --- a/crates/superposition_sdk/src/operation/delete_secret/builders.rs +++ b/crates/superposition_sdk/src/operation/delete_secret/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::delete_secret::_delete_secret_output::DeleteSecretOutputBuilder; - pub use crate::operation::delete_secret::_delete_secret_input::DeleteSecretInputBuilder; +pub use crate::operation::delete_secret::_delete_secret_output::DeleteSecretOutputBuilder; + impl crate::operation::delete_secret::builders::DeleteSecretInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/delete_type_templates.rs b/crates/superposition_sdk/src/operation/delete_type_templates.rs index bfc9cd8ba..61628b5ea 100644 --- a/crates/superposition_sdk/src/operation/delete_type_templates.rs +++ b/crates/superposition_sdk/src/operation/delete_type_templates.rs @@ -304,10 +304,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for DeleteTy } } -pub use crate::operation::delete_type_templates::_delete_type_templates_output::DeleteTypeTemplatesOutput; - pub use crate::operation::delete_type_templates::_delete_type_templates_input::DeleteTypeTemplatesInput; +pub use crate::operation::delete_type_templates::_delete_type_templates_output::DeleteTypeTemplatesOutput; + mod _delete_type_templates_input; mod _delete_type_templates_output; diff --git a/crates/superposition_sdk/src/operation/delete_type_templates/builders.rs b/crates/superposition_sdk/src/operation/delete_type_templates/builders.rs index 193106896..8421e25f2 100644 --- a/crates/superposition_sdk/src/operation/delete_type_templates/builders.rs +++ b/crates/superposition_sdk/src/operation/delete_type_templates/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::delete_type_templates::_delete_type_templates_output::DeleteTypeTemplatesOutputBuilder; - pub use crate::operation::delete_type_templates::_delete_type_templates_input::DeleteTypeTemplatesInputBuilder; +pub use crate::operation::delete_type_templates::_delete_type_templates_output::DeleteTypeTemplatesOutputBuilder; + impl crate::operation::delete_type_templates::builders::DeleteTypeTemplatesInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/delete_variable.rs b/crates/superposition_sdk/src/operation/delete_variable.rs index 9bb62e52f..0de644f8f 100644 --- a/crates/superposition_sdk/src/operation/delete_variable.rs +++ b/crates/superposition_sdk/src/operation/delete_variable.rs @@ -304,10 +304,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for DeleteVa } } -pub use crate::operation::delete_variable::_delete_variable_output::DeleteVariableOutput; - pub use crate::operation::delete_variable::_delete_variable_input::DeleteVariableInput; +pub use crate::operation::delete_variable::_delete_variable_output::DeleteVariableOutput; + mod _delete_variable_input; mod _delete_variable_output; diff --git a/crates/superposition_sdk/src/operation/delete_variable/builders.rs b/crates/superposition_sdk/src/operation/delete_variable/builders.rs index 8618237c8..426e98ecb 100644 --- a/crates/superposition_sdk/src/operation/delete_variable/builders.rs +++ b/crates/superposition_sdk/src/operation/delete_variable/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::delete_variable::_delete_variable_output::DeleteVariableOutputBuilder; - pub use crate::operation::delete_variable::_delete_variable_input::DeleteVariableInputBuilder; +pub use crate::operation::delete_variable::_delete_variable_output::DeleteVariableOutputBuilder; + impl crate::operation::delete_variable::builders::DeleteVariableInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/delete_webhook.rs b/crates/superposition_sdk/src/operation/delete_webhook.rs index fa5c3138b..ed8c11f2e 100644 --- a/crates/superposition_sdk/src/operation/delete_webhook.rs +++ b/crates/superposition_sdk/src/operation/delete_webhook.rs @@ -304,10 +304,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for DeleteWe } } -pub use crate::operation::delete_webhook::_delete_webhook_output::DeleteWebhookOutput; - pub use crate::operation::delete_webhook::_delete_webhook_input::DeleteWebhookInput; +pub use crate::operation::delete_webhook::_delete_webhook_output::DeleteWebhookOutput; + mod _delete_webhook_input; mod _delete_webhook_output; diff --git a/crates/superposition_sdk/src/operation/delete_webhook/builders.rs b/crates/superposition_sdk/src/operation/delete_webhook/builders.rs index 4f5d0c147..0f6cafbd0 100644 --- a/crates/superposition_sdk/src/operation/delete_webhook/builders.rs +++ b/crates/superposition_sdk/src/operation/delete_webhook/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::delete_webhook::_delete_webhook_output::DeleteWebhookOutputBuilder; - pub use crate::operation::delete_webhook::_delete_webhook_input::DeleteWebhookInputBuilder; +pub use crate::operation::delete_webhook::_delete_webhook_output::DeleteWebhookOutputBuilder; + impl crate::operation::delete_webhook::builders::DeleteWebhookInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/discard_experiment.rs b/crates/superposition_sdk/src/operation/discard_experiment.rs index 7853bf57d..f3fb7500b 100644 --- a/crates/superposition_sdk/src/operation/discard_experiment.rs +++ b/crates/superposition_sdk/src/operation/discard_experiment.rs @@ -324,10 +324,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for DiscardE } } -pub use crate::operation::discard_experiment::_discard_experiment_output::DiscardExperimentOutput; - pub use crate::operation::discard_experiment::_discard_experiment_input::DiscardExperimentInput; +pub use crate::operation::discard_experiment::_discard_experiment_output::DiscardExperimentOutput; + mod _discard_experiment_input; mod _discard_experiment_output; diff --git a/crates/superposition_sdk/src/operation/discard_experiment/builders.rs b/crates/superposition_sdk/src/operation/discard_experiment/builders.rs index dea1c29b5..4f845f2ea 100644 --- a/crates/superposition_sdk/src/operation/discard_experiment/builders.rs +++ b/crates/superposition_sdk/src/operation/discard_experiment/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::discard_experiment::_discard_experiment_output::DiscardExperimentOutputBuilder; - pub use crate::operation::discard_experiment::_discard_experiment_input::DiscardExperimentInputBuilder; +pub use crate::operation::discard_experiment::_discard_experiment_output::DiscardExperimentOutputBuilder; + impl crate::operation::discard_experiment::builders::DiscardExperimentInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/get_config.rs b/crates/superposition_sdk/src/operation/get_config.rs index 847c64c9f..d003e2d10 100644 --- a/crates/superposition_sdk/src/operation/get_config.rs +++ b/crates/superposition_sdk/src/operation/get_config.rs @@ -303,10 +303,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for GetConfi } } -pub use crate::operation::get_config::_get_config_output::GetConfigOutput; - pub use crate::operation::get_config::_get_config_input::GetConfigInput; +pub use crate::operation::get_config::_get_config_output::GetConfigOutput; + mod _get_config_input; mod _get_config_output; diff --git a/crates/superposition_sdk/src/operation/get_config/builders.rs b/crates/superposition_sdk/src/operation/get_config/builders.rs index 88769fb6c..a6acac273 100644 --- a/crates/superposition_sdk/src/operation/get_config/builders.rs +++ b/crates/superposition_sdk/src/operation/get_config/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::get_config::_get_config_output::GetConfigOutputBuilder; - pub use crate::operation::get_config::_get_config_input::GetConfigInputBuilder; +pub use crate::operation::get_config::_get_config_output::GetConfigOutputBuilder; + impl crate::operation::get_config::builders::GetConfigInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/get_config_json.rs b/crates/superposition_sdk/src/operation/get_config_json.rs index 4f9338b95..f4818227a 100644 --- a/crates/superposition_sdk/src/operation/get_config_json.rs +++ b/crates/superposition_sdk/src/operation/get_config_json.rs @@ -282,10 +282,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for GetConfi } } -pub use crate::operation::get_config_json::_get_config_json_output::GetConfigJsonOutput; - pub use crate::operation::get_config_json::_get_config_json_input::GetConfigJsonInput; +pub use crate::operation::get_config_json::_get_config_json_output::GetConfigJsonOutput; + mod _get_config_json_input; mod _get_config_json_output; diff --git a/crates/superposition_sdk/src/operation/get_config_json/builders.rs b/crates/superposition_sdk/src/operation/get_config_json/builders.rs index d1e0ba1a3..8f87813de 100644 --- a/crates/superposition_sdk/src/operation/get_config_json/builders.rs +++ b/crates/superposition_sdk/src/operation/get_config_json/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::get_config_json::_get_config_json_output::GetConfigJsonOutputBuilder; - pub use crate::operation::get_config_json::_get_config_json_input::GetConfigJsonInputBuilder; +pub use crate::operation::get_config_json::_get_config_json_output::GetConfigJsonOutputBuilder; + impl crate::operation::get_config_json::builders::GetConfigJsonInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/get_config_toml.rs b/crates/superposition_sdk/src/operation/get_config_toml.rs index 973cc8c7c..17b808dd5 100644 --- a/crates/superposition_sdk/src/operation/get_config_toml.rs +++ b/crates/superposition_sdk/src/operation/get_config_toml.rs @@ -282,10 +282,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for GetConfi } } -pub use crate::operation::get_config_toml::_get_config_toml_output::GetConfigTomlOutput; - pub use crate::operation::get_config_toml::_get_config_toml_input::GetConfigTomlInput; +pub use crate::operation::get_config_toml::_get_config_toml_output::GetConfigTomlOutput; + mod _get_config_toml_input; mod _get_config_toml_output; diff --git a/crates/superposition_sdk/src/operation/get_config_toml/builders.rs b/crates/superposition_sdk/src/operation/get_config_toml/builders.rs index 29f9ed52a..e52f963cf 100644 --- a/crates/superposition_sdk/src/operation/get_config_toml/builders.rs +++ b/crates/superposition_sdk/src/operation/get_config_toml/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::get_config_toml::_get_config_toml_output::GetConfigTomlOutputBuilder; - pub use crate::operation::get_config_toml::_get_config_toml_input::GetConfigTomlInputBuilder; +pub use crate::operation::get_config_toml::_get_config_toml_output::GetConfigTomlOutputBuilder; + impl crate::operation::get_config_toml::builders::GetConfigTomlInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/get_context.rs b/crates/superposition_sdk/src/operation/get_context.rs index d056f433b..fd31df803 100644 --- a/crates/superposition_sdk/src/operation/get_context.rs +++ b/crates/superposition_sdk/src/operation/get_context.rs @@ -304,10 +304,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for GetConte } } -pub use crate::operation::get_context::_get_context_output::GetContextOutput; - pub use crate::operation::get_context::_get_context_input::GetContextInput; +pub use crate::operation::get_context::_get_context_output::GetContextOutput; + mod _get_context_input; mod _get_context_output; diff --git a/crates/superposition_sdk/src/operation/get_context/builders.rs b/crates/superposition_sdk/src/operation/get_context/builders.rs index 059a207a3..f612603ff 100644 --- a/crates/superposition_sdk/src/operation/get_context/builders.rs +++ b/crates/superposition_sdk/src/operation/get_context/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::get_context::_get_context_output::GetContextOutputBuilder; - pub use crate::operation::get_context::_get_context_input::GetContextInputBuilder; +pub use crate::operation::get_context::_get_context_output::GetContextOutputBuilder; + impl crate::operation::get_context::builders::GetContextInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/get_context_from_condition.rs b/crates/superposition_sdk/src/operation/get_context_from_condition.rs index ff1f47e3b..aa13ad527 100644 --- a/crates/superposition_sdk/src/operation/get_context_from_condition.rs +++ b/crates/superposition_sdk/src/operation/get_context_from_condition.rs @@ -302,10 +302,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for GetConte } } -pub use crate::operation::get_context_from_condition::_get_context_from_condition_output::GetContextFromConditionOutput; - pub use crate::operation::get_context_from_condition::_get_context_from_condition_input::GetContextFromConditionInput; +pub use crate::operation::get_context_from_condition::_get_context_from_condition_output::GetContextFromConditionOutput; + mod _get_context_from_condition_input; mod _get_context_from_condition_output; diff --git a/crates/superposition_sdk/src/operation/get_context_from_condition/builders.rs b/crates/superposition_sdk/src/operation/get_context_from_condition/builders.rs index 2c0aced18..5fbd7c50a 100644 --- a/crates/superposition_sdk/src/operation/get_context_from_condition/builders.rs +++ b/crates/superposition_sdk/src/operation/get_context_from_condition/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::get_context_from_condition::_get_context_from_condition_output::GetContextFromConditionOutputBuilder; - pub use crate::operation::get_context_from_condition::_get_context_from_condition_input::GetContextFromConditionInputBuilder; +pub use crate::operation::get_context_from_condition::_get_context_from_condition_output::GetContextFromConditionOutputBuilder; + impl crate::operation::get_context_from_condition::builders::GetContextFromConditionInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/get_default_config.rs b/crates/superposition_sdk/src/operation/get_default_config.rs index cc1cf7eb8..930bce6c1 100644 --- a/crates/superposition_sdk/src/operation/get_default_config.rs +++ b/crates/superposition_sdk/src/operation/get_default_config.rs @@ -304,10 +304,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for GetDefau } } -pub use crate::operation::get_default_config::_get_default_config_output::GetDefaultConfigOutput; - pub use crate::operation::get_default_config::_get_default_config_input::GetDefaultConfigInput; +pub use crate::operation::get_default_config::_get_default_config_output::GetDefaultConfigOutput; + mod _get_default_config_input; mod _get_default_config_output; diff --git a/crates/superposition_sdk/src/operation/get_default_config/builders.rs b/crates/superposition_sdk/src/operation/get_default_config/builders.rs index ac440435c..2c1133db6 100644 --- a/crates/superposition_sdk/src/operation/get_default_config/builders.rs +++ b/crates/superposition_sdk/src/operation/get_default_config/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::get_default_config::_get_default_config_output::GetDefaultConfigOutputBuilder; - pub use crate::operation::get_default_config::_get_default_config_input::GetDefaultConfigInputBuilder; +pub use crate::operation::get_default_config::_get_default_config_output::GetDefaultConfigOutputBuilder; + impl crate::operation::get_default_config::builders::GetDefaultConfigInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/get_dimension.rs b/crates/superposition_sdk/src/operation/get_dimension.rs index 9feac98a8..bfc8b2105 100644 --- a/crates/superposition_sdk/src/operation/get_dimension.rs +++ b/crates/superposition_sdk/src/operation/get_dimension.rs @@ -304,10 +304,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for GetDimen } } -pub use crate::operation::get_dimension::_get_dimension_output::GetDimensionOutput; - pub use crate::operation::get_dimension::_get_dimension_input::GetDimensionInput; +pub use crate::operation::get_dimension::_get_dimension_output::GetDimensionOutput; + mod _get_dimension_input; mod _get_dimension_output; diff --git a/crates/superposition_sdk/src/operation/get_dimension/builders.rs b/crates/superposition_sdk/src/operation/get_dimension/builders.rs index c0cb012e6..dd7965766 100644 --- a/crates/superposition_sdk/src/operation/get_dimension/builders.rs +++ b/crates/superposition_sdk/src/operation/get_dimension/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::get_dimension::_get_dimension_output::GetDimensionOutputBuilder; - pub use crate::operation::get_dimension::_get_dimension_input::GetDimensionInputBuilder; +pub use crate::operation::get_dimension::_get_dimension_output::GetDimensionOutputBuilder; + impl crate::operation::get_dimension::builders::GetDimensionInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/get_experiment.rs b/crates/superposition_sdk/src/operation/get_experiment.rs index ab47e9008..6bd154951 100644 --- a/crates/superposition_sdk/src/operation/get_experiment.rs +++ b/crates/superposition_sdk/src/operation/get_experiment.rs @@ -304,10 +304,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for GetExper } } -pub use crate::operation::get_experiment::_get_experiment_output::GetExperimentOutput; - pub use crate::operation::get_experiment::_get_experiment_input::GetExperimentInput; +pub use crate::operation::get_experiment::_get_experiment_output::GetExperimentOutput; + mod _get_experiment_input; mod _get_experiment_output; diff --git a/crates/superposition_sdk/src/operation/get_experiment/builders.rs b/crates/superposition_sdk/src/operation/get_experiment/builders.rs index fe77c0901..f1fd6b990 100644 --- a/crates/superposition_sdk/src/operation/get_experiment/builders.rs +++ b/crates/superposition_sdk/src/operation/get_experiment/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::get_experiment::_get_experiment_output::GetExperimentOutputBuilder; - pub use crate::operation::get_experiment::_get_experiment_input::GetExperimentInputBuilder; +pub use crate::operation::get_experiment::_get_experiment_output::GetExperimentOutputBuilder; + impl crate::operation::get_experiment::builders::GetExperimentInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/get_experiment_config.rs b/crates/superposition_sdk/src/operation/get_experiment_config.rs index 4504a9d36..a71e093bc 100644 --- a/crates/superposition_sdk/src/operation/get_experiment_config.rs +++ b/crates/superposition_sdk/src/operation/get_experiment_config.rs @@ -303,10 +303,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for GetExper } } -pub use crate::operation::get_experiment_config::_get_experiment_config_output::GetExperimentConfigOutput; - pub use crate::operation::get_experiment_config::_get_experiment_config_input::GetExperimentConfigInput; +pub use crate::operation::get_experiment_config::_get_experiment_config_output::GetExperimentConfigOutput; + mod _get_experiment_config_input; mod _get_experiment_config_output; diff --git a/crates/superposition_sdk/src/operation/get_experiment_config/builders.rs b/crates/superposition_sdk/src/operation/get_experiment_config/builders.rs index 522d273ef..e0653be6b 100644 --- a/crates/superposition_sdk/src/operation/get_experiment_config/builders.rs +++ b/crates/superposition_sdk/src/operation/get_experiment_config/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::get_experiment_config::_get_experiment_config_output::GetExperimentConfigOutputBuilder; - pub use crate::operation::get_experiment_config::_get_experiment_config_input::GetExperimentConfigInputBuilder; +pub use crate::operation::get_experiment_config::_get_experiment_config_output::GetExperimentConfigOutputBuilder; + impl crate::operation::get_experiment_config::builders::GetExperimentConfigInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/get_experiment_group.rs b/crates/superposition_sdk/src/operation/get_experiment_group.rs index a7c7844bc..12578540b 100644 --- a/crates/superposition_sdk/src/operation/get_experiment_group.rs +++ b/crates/superposition_sdk/src/operation/get_experiment_group.rs @@ -304,10 +304,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for GetExper } } -pub use crate::operation::get_experiment_group::_get_experiment_group_output::GetExperimentGroupOutput; - pub use crate::operation::get_experiment_group::_get_experiment_group_input::GetExperimentGroupInput; +pub use crate::operation::get_experiment_group::_get_experiment_group_output::GetExperimentGroupOutput; + mod _get_experiment_group_input; mod _get_experiment_group_output; diff --git a/crates/superposition_sdk/src/operation/get_experiment_group/builders.rs b/crates/superposition_sdk/src/operation/get_experiment_group/builders.rs index 23ae291f9..9aa45c64b 100644 --- a/crates/superposition_sdk/src/operation/get_experiment_group/builders.rs +++ b/crates/superposition_sdk/src/operation/get_experiment_group/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::get_experiment_group::_get_experiment_group_output::GetExperimentGroupOutputBuilder; - pub use crate::operation::get_experiment_group::_get_experiment_group_input::GetExperimentGroupInputBuilder; +pub use crate::operation::get_experiment_group::_get_experiment_group_output::GetExperimentGroupOutputBuilder; + impl crate::operation::get_experiment_group::builders::GetExperimentGroupInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/get_function.rs b/crates/superposition_sdk/src/operation/get_function.rs index 19afbc739..124fbf5f1 100644 --- a/crates/superposition_sdk/src/operation/get_function.rs +++ b/crates/superposition_sdk/src/operation/get_function.rs @@ -304,10 +304,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for GetFunct } } -pub use crate::operation::get_function::_get_function_output::GetFunctionOutput; - pub use crate::operation::get_function::_get_function_input::GetFunctionInput; +pub use crate::operation::get_function::_get_function_output::GetFunctionOutput; + mod _get_function_input; mod _get_function_output; diff --git a/crates/superposition_sdk/src/operation/get_function/builders.rs b/crates/superposition_sdk/src/operation/get_function/builders.rs index 2cb6f40c8..13caeadb7 100644 --- a/crates/superposition_sdk/src/operation/get_function/builders.rs +++ b/crates/superposition_sdk/src/operation/get_function/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::get_function::_get_function_output::GetFunctionOutputBuilder; - pub use crate::operation::get_function::_get_function_input::GetFunctionInputBuilder; +pub use crate::operation::get_function::_get_function_output::GetFunctionOutputBuilder; + impl crate::operation::get_function::builders::GetFunctionInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/get_organisation.rs b/crates/superposition_sdk/src/operation/get_organisation.rs index a3bdc509b..c8d4631a0 100644 --- a/crates/superposition_sdk/src/operation/get_organisation.rs +++ b/crates/superposition_sdk/src/operation/get_organisation.rs @@ -303,10 +303,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for GetOrgan } } -pub use crate::operation::get_organisation::_get_organisation_output::GetOrganisationOutput; - pub use crate::operation::get_organisation::_get_organisation_input::GetOrganisationInput; +pub use crate::operation::get_organisation::_get_organisation_output::GetOrganisationOutput; + mod _get_organisation_input; mod _get_organisation_output; diff --git a/crates/superposition_sdk/src/operation/get_organisation/builders.rs b/crates/superposition_sdk/src/operation/get_organisation/builders.rs index a4066a4cd..99a183d92 100644 --- a/crates/superposition_sdk/src/operation/get_organisation/builders.rs +++ b/crates/superposition_sdk/src/operation/get_organisation/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::get_organisation::_get_organisation_output::GetOrganisationOutputBuilder; - pub use crate::operation::get_organisation::_get_organisation_input::GetOrganisationInputBuilder; +pub use crate::operation::get_organisation::_get_organisation_output::GetOrganisationOutputBuilder; + impl crate::operation::get_organisation::builders::GetOrganisationInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/get_resolved_config.rs b/crates/superposition_sdk/src/operation/get_resolved_config.rs index d0ab762bc..97c375f54 100644 --- a/crates/superposition_sdk/src/operation/get_resolved_config.rs +++ b/crates/superposition_sdk/src/operation/get_resolved_config.rs @@ -318,10 +318,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for GetResol } } -pub use crate::operation::get_resolved_config::_get_resolved_config_output::GetResolvedConfigOutput; - pub use crate::operation::get_resolved_config::_get_resolved_config_input::GetResolvedConfigInput; +pub use crate::operation::get_resolved_config::_get_resolved_config_output::GetResolvedConfigOutput; + mod _get_resolved_config_input; mod _get_resolved_config_output; diff --git a/crates/superposition_sdk/src/operation/get_resolved_config/builders.rs b/crates/superposition_sdk/src/operation/get_resolved_config/builders.rs index 0070c77a5..e3bdaf675 100644 --- a/crates/superposition_sdk/src/operation/get_resolved_config/builders.rs +++ b/crates/superposition_sdk/src/operation/get_resolved_config/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::get_resolved_config::_get_resolved_config_output::GetResolvedConfigOutputBuilder; - pub use crate::operation::get_resolved_config::_get_resolved_config_input::GetResolvedConfigInputBuilder; +pub use crate::operation::get_resolved_config::_get_resolved_config_output::GetResolvedConfigOutputBuilder; + impl crate::operation::get_resolved_config::builders::GetResolvedConfigInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/get_resolved_config_with_identifier.rs b/crates/superposition_sdk/src/operation/get_resolved_config_with_identifier.rs index 3fbba61d6..f988af304 100644 --- a/crates/superposition_sdk/src/operation/get_resolved_config_with_identifier.rs +++ b/crates/superposition_sdk/src/operation/get_resolved_config_with_identifier.rs @@ -323,10 +323,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for GetResol } } -pub use crate::operation::get_resolved_config_with_identifier::_get_resolved_config_with_identifier_output::GetResolvedConfigWithIdentifierOutput; - pub use crate::operation::get_resolved_config_with_identifier::_get_resolved_config_with_identifier_input::GetResolvedConfigWithIdentifierInput; +pub use crate::operation::get_resolved_config_with_identifier::_get_resolved_config_with_identifier_output::GetResolvedConfigWithIdentifierOutput; + mod _get_resolved_config_with_identifier_input; mod _get_resolved_config_with_identifier_output; diff --git a/crates/superposition_sdk/src/operation/get_resolved_config_with_identifier/builders.rs b/crates/superposition_sdk/src/operation/get_resolved_config_with_identifier/builders.rs index 9d6d1105f..eed2b536f 100644 --- a/crates/superposition_sdk/src/operation/get_resolved_config_with_identifier/builders.rs +++ b/crates/superposition_sdk/src/operation/get_resolved_config_with_identifier/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::get_resolved_config_with_identifier::_get_resolved_config_with_identifier_output::GetResolvedConfigWithIdentifierOutputBuilder; - pub use crate::operation::get_resolved_config_with_identifier::_get_resolved_config_with_identifier_input::GetResolvedConfigWithIdentifierInputBuilder; +pub use crate::operation::get_resolved_config_with_identifier::_get_resolved_config_with_identifier_output::GetResolvedConfigWithIdentifierOutputBuilder; + impl crate::operation::get_resolved_config_with_identifier::builders::GetResolvedConfigWithIdentifierInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/get_secret.rs b/crates/superposition_sdk/src/operation/get_secret.rs index d53aa5e49..a07100523 100644 --- a/crates/superposition_sdk/src/operation/get_secret.rs +++ b/crates/superposition_sdk/src/operation/get_secret.rs @@ -304,10 +304,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for GetSecre } } -pub use crate::operation::get_secret::_get_secret_output::GetSecretOutput; - pub use crate::operation::get_secret::_get_secret_input::GetSecretInput; +pub use crate::operation::get_secret::_get_secret_output::GetSecretOutput; + mod _get_secret_input; mod _get_secret_output; diff --git a/crates/superposition_sdk/src/operation/get_secret/builders.rs b/crates/superposition_sdk/src/operation/get_secret/builders.rs index b98879a8d..916aa59ae 100644 --- a/crates/superposition_sdk/src/operation/get_secret/builders.rs +++ b/crates/superposition_sdk/src/operation/get_secret/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::get_secret::_get_secret_output::GetSecretOutputBuilder; - pub use crate::operation::get_secret::_get_secret_input::GetSecretInputBuilder; +pub use crate::operation::get_secret::_get_secret_output::GetSecretOutputBuilder; + impl crate::operation::get_secret::builders::GetSecretInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/get_type_template.rs b/crates/superposition_sdk/src/operation/get_type_template.rs index 2c214fe9c..8adabf261 100644 --- a/crates/superposition_sdk/src/operation/get_type_template.rs +++ b/crates/superposition_sdk/src/operation/get_type_template.rs @@ -304,10 +304,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for GetTypeT } } -pub use crate::operation::get_type_template::_get_type_template_output::GetTypeTemplateOutput; - pub use crate::operation::get_type_template::_get_type_template_input::GetTypeTemplateInput; +pub use crate::operation::get_type_template::_get_type_template_output::GetTypeTemplateOutput; + mod _get_type_template_input; mod _get_type_template_output; diff --git a/crates/superposition_sdk/src/operation/get_type_template/builders.rs b/crates/superposition_sdk/src/operation/get_type_template/builders.rs index c86dafaab..05a4f7082 100644 --- a/crates/superposition_sdk/src/operation/get_type_template/builders.rs +++ b/crates/superposition_sdk/src/operation/get_type_template/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::get_type_template::_get_type_template_output::GetTypeTemplateOutputBuilder; - pub use crate::operation::get_type_template::_get_type_template_input::GetTypeTemplateInputBuilder; +pub use crate::operation::get_type_template::_get_type_template_output::GetTypeTemplateOutputBuilder; + impl crate::operation::get_type_template::builders::GetTypeTemplateInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/get_type_templates_list.rs b/crates/superposition_sdk/src/operation/get_type_templates_list.rs index 96b844ec1..87a31f5bf 100644 --- a/crates/superposition_sdk/src/operation/get_type_templates_list.rs +++ b/crates/superposition_sdk/src/operation/get_type_templates_list.rs @@ -302,10 +302,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for GetTypeT } } -pub use crate::operation::get_type_templates_list::_get_type_templates_list_output::GetTypeTemplatesListOutput; - pub use crate::operation::get_type_templates_list::_get_type_templates_list_input::GetTypeTemplatesListInput; +pub use crate::operation::get_type_templates_list::_get_type_templates_list_output::GetTypeTemplatesListOutput; + mod _get_type_templates_list_input; mod _get_type_templates_list_output; diff --git a/crates/superposition_sdk/src/operation/get_type_templates_list/builders.rs b/crates/superposition_sdk/src/operation/get_type_templates_list/builders.rs index 6529b2e2c..3247cb769 100644 --- a/crates/superposition_sdk/src/operation/get_type_templates_list/builders.rs +++ b/crates/superposition_sdk/src/operation/get_type_templates_list/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::get_type_templates_list::_get_type_templates_list_output::GetTypeTemplatesListOutputBuilder; - pub use crate::operation::get_type_templates_list::_get_type_templates_list_input::GetTypeTemplatesListInputBuilder; +pub use crate::operation::get_type_templates_list::_get_type_templates_list_output::GetTypeTemplatesListOutputBuilder; + impl crate::operation::get_type_templates_list::builders::GetTypeTemplatesListInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/get_variable.rs b/crates/superposition_sdk/src/operation/get_variable.rs index af8a7f3d5..62a64b715 100644 --- a/crates/superposition_sdk/src/operation/get_variable.rs +++ b/crates/superposition_sdk/src/operation/get_variable.rs @@ -304,10 +304,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for GetVaria } } -pub use crate::operation::get_variable::_get_variable_output::GetVariableOutput; - pub use crate::operation::get_variable::_get_variable_input::GetVariableInput; +pub use crate::operation::get_variable::_get_variable_output::GetVariableOutput; + mod _get_variable_input; mod _get_variable_output; diff --git a/crates/superposition_sdk/src/operation/get_variable/builders.rs b/crates/superposition_sdk/src/operation/get_variable/builders.rs index 0c77fed20..39360cdf5 100644 --- a/crates/superposition_sdk/src/operation/get_variable/builders.rs +++ b/crates/superposition_sdk/src/operation/get_variable/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::get_variable::_get_variable_output::GetVariableOutputBuilder; - pub use crate::operation::get_variable::_get_variable_input::GetVariableInputBuilder; +pub use crate::operation::get_variable::_get_variable_output::GetVariableOutputBuilder; + impl crate::operation::get_variable::builders::GetVariableInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/get_version.rs b/crates/superposition_sdk/src/operation/get_version.rs index 666ed8dda..af77b2584 100644 --- a/crates/superposition_sdk/src/operation/get_version.rs +++ b/crates/superposition_sdk/src/operation/get_version.rs @@ -304,10 +304,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for GetVersi } } -pub use crate::operation::get_version::_get_version_output::GetVersionOutput; - pub use crate::operation::get_version::_get_version_input::GetVersionInput; +pub use crate::operation::get_version::_get_version_output::GetVersionOutput; + mod _get_version_input; mod _get_version_output; diff --git a/crates/superposition_sdk/src/operation/get_version/builders.rs b/crates/superposition_sdk/src/operation/get_version/builders.rs index 94628ad72..62d3df5e4 100644 --- a/crates/superposition_sdk/src/operation/get_version/builders.rs +++ b/crates/superposition_sdk/src/operation/get_version/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::get_version::_get_version_output::GetVersionOutputBuilder; - pub use crate::operation::get_version::_get_version_input::GetVersionInputBuilder; +pub use crate::operation::get_version::_get_version_output::GetVersionOutputBuilder; + impl crate::operation::get_version::builders::GetVersionInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/get_webhook.rs b/crates/superposition_sdk/src/operation/get_webhook.rs index 6a6b5a025..356e45f46 100644 --- a/crates/superposition_sdk/src/operation/get_webhook.rs +++ b/crates/superposition_sdk/src/operation/get_webhook.rs @@ -304,10 +304,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for GetWebho } } -pub use crate::operation::get_webhook::_get_webhook_output::GetWebhookOutput; - pub use crate::operation::get_webhook::_get_webhook_input::GetWebhookInput; +pub use crate::operation::get_webhook::_get_webhook_output::GetWebhookOutput; + mod _get_webhook_input; mod _get_webhook_output; diff --git a/crates/superposition_sdk/src/operation/get_webhook/builders.rs b/crates/superposition_sdk/src/operation/get_webhook/builders.rs index 8dea99ed1..628dedf60 100644 --- a/crates/superposition_sdk/src/operation/get_webhook/builders.rs +++ b/crates/superposition_sdk/src/operation/get_webhook/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::get_webhook::_get_webhook_output::GetWebhookOutputBuilder; - pub use crate::operation::get_webhook::_get_webhook_input::GetWebhookInputBuilder; +pub use crate::operation::get_webhook::_get_webhook_output::GetWebhookOutputBuilder; + impl crate::operation::get_webhook::builders::GetWebhookInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/get_webhook_by_event.rs b/crates/superposition_sdk/src/operation/get_webhook_by_event.rs index 6e9c31a7e..4e9eba469 100644 --- a/crates/superposition_sdk/src/operation/get_webhook_by_event.rs +++ b/crates/superposition_sdk/src/operation/get_webhook_by_event.rs @@ -304,10 +304,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for GetWebho } } -pub use crate::operation::get_webhook_by_event::_get_webhook_by_event_output::GetWebhookByEventOutput; - pub use crate::operation::get_webhook_by_event::_get_webhook_by_event_input::GetWebhookByEventInput; +pub use crate::operation::get_webhook_by_event::_get_webhook_by_event_output::GetWebhookByEventOutput; + mod _get_webhook_by_event_input; mod _get_webhook_by_event_output; diff --git a/crates/superposition_sdk/src/operation/get_webhook_by_event/builders.rs b/crates/superposition_sdk/src/operation/get_webhook_by_event/builders.rs index b9f22c55b..bbba34727 100644 --- a/crates/superposition_sdk/src/operation/get_webhook_by_event/builders.rs +++ b/crates/superposition_sdk/src/operation/get_webhook_by_event/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::get_webhook_by_event::_get_webhook_by_event_output::GetWebhookByEventOutputBuilder; - pub use crate::operation::get_webhook_by_event::_get_webhook_by_event_input::GetWebhookByEventInputBuilder; +pub use crate::operation::get_webhook_by_event::_get_webhook_by_event_output::GetWebhookByEventOutputBuilder; + impl crate::operation::get_webhook_by_event::builders::GetWebhookByEventInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/get_workspace.rs b/crates/superposition_sdk/src/operation/get_workspace.rs index 177afb420..07e2c4e2e 100644 --- a/crates/superposition_sdk/src/operation/get_workspace.rs +++ b/crates/superposition_sdk/src/operation/get_workspace.rs @@ -304,10 +304,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for GetWorks } } -pub use crate::operation::get_workspace::_get_workspace_output::GetWorkspaceOutput; - pub use crate::operation::get_workspace::_get_workspace_input::GetWorkspaceInput; +pub use crate::operation::get_workspace::_get_workspace_output::GetWorkspaceOutput; + mod _get_workspace_input; mod _get_workspace_output; diff --git a/crates/superposition_sdk/src/operation/get_workspace/builders.rs b/crates/superposition_sdk/src/operation/get_workspace/builders.rs index c38966c3e..acea61fe0 100644 --- a/crates/superposition_sdk/src/operation/get_workspace/builders.rs +++ b/crates/superposition_sdk/src/operation/get_workspace/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::get_workspace::_get_workspace_output::GetWorkspaceOutputBuilder; - pub use crate::operation::get_workspace::_get_workspace_input::GetWorkspaceInputBuilder; +pub use crate::operation::get_workspace::_get_workspace_output::GetWorkspaceOutputBuilder; + impl crate::operation::get_workspace::builders::GetWorkspaceInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/list_audit_logs.rs b/crates/superposition_sdk/src/operation/list_audit_logs.rs index a2a5bcddd..c49ca35f5 100644 --- a/crates/superposition_sdk/src/operation/list_audit_logs.rs +++ b/crates/superposition_sdk/src/operation/list_audit_logs.rs @@ -336,10 +336,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for ListAudi } } -pub use crate::operation::list_audit_logs::_list_audit_logs_output::ListAuditLogsOutput; - pub use crate::operation::list_audit_logs::_list_audit_logs_input::ListAuditLogsInput; +pub use crate::operation::list_audit_logs::_list_audit_logs_output::ListAuditLogsOutput; + mod _list_audit_logs_input; mod _list_audit_logs_output; diff --git a/crates/superposition_sdk/src/operation/list_audit_logs/builders.rs b/crates/superposition_sdk/src/operation/list_audit_logs/builders.rs index aa68387ef..83d78ee73 100644 --- a/crates/superposition_sdk/src/operation/list_audit_logs/builders.rs +++ b/crates/superposition_sdk/src/operation/list_audit_logs/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::list_audit_logs::_list_audit_logs_output::ListAuditLogsOutputBuilder; - pub use crate::operation::list_audit_logs::_list_audit_logs_input::ListAuditLogsInputBuilder; +pub use crate::operation::list_audit_logs::_list_audit_logs_output::ListAuditLogsOutputBuilder; + impl crate::operation::list_audit_logs::builders::ListAuditLogsInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/list_contexts.rs b/crates/superposition_sdk/src/operation/list_contexts.rs index 81905da43..12ff0af27 100644 --- a/crates/superposition_sdk/src/operation/list_contexts.rs +++ b/crates/superposition_sdk/src/operation/list_contexts.rs @@ -343,10 +343,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for ListCont } } -pub use crate::operation::list_contexts::_list_contexts_output::ListContextsOutput; - pub use crate::operation::list_contexts::_list_contexts_input::ListContextsInput; +pub use crate::operation::list_contexts::_list_contexts_output::ListContextsOutput; + mod _list_contexts_input; mod _list_contexts_output; diff --git a/crates/superposition_sdk/src/operation/list_contexts/builders.rs b/crates/superposition_sdk/src/operation/list_contexts/builders.rs index 80fceb230..5df1c79c1 100644 --- a/crates/superposition_sdk/src/operation/list_contexts/builders.rs +++ b/crates/superposition_sdk/src/operation/list_contexts/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::list_contexts::_list_contexts_output::ListContextsOutputBuilder; - pub use crate::operation::list_contexts::_list_contexts_input::ListContextsInputBuilder; +pub use crate::operation::list_contexts::_list_contexts_output::ListContextsOutputBuilder; + impl crate::operation::list_contexts::builders::ListContextsInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/list_default_configs.rs b/crates/superposition_sdk/src/operation/list_default_configs.rs index 772b7e49f..d19329699 100644 --- a/crates/superposition_sdk/src/operation/list_default_configs.rs +++ b/crates/superposition_sdk/src/operation/list_default_configs.rs @@ -307,10 +307,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for ListDefa } } -pub use crate::operation::list_default_configs::_list_default_configs_output::ListDefaultConfigsOutput; - pub use crate::operation::list_default_configs::_list_default_configs_input::ListDefaultConfigsInput; +pub use crate::operation::list_default_configs::_list_default_configs_output::ListDefaultConfigsOutput; + mod _list_default_configs_input; mod _list_default_configs_output; diff --git a/crates/superposition_sdk/src/operation/list_default_configs/builders.rs b/crates/superposition_sdk/src/operation/list_default_configs/builders.rs index 5b4b75464..988a7eb84 100644 --- a/crates/superposition_sdk/src/operation/list_default_configs/builders.rs +++ b/crates/superposition_sdk/src/operation/list_default_configs/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::list_default_configs::_list_default_configs_output::ListDefaultConfigsOutputBuilder; - pub use crate::operation::list_default_configs::_list_default_configs_input::ListDefaultConfigsInputBuilder; +pub use crate::operation::list_default_configs::_list_default_configs_output::ListDefaultConfigsOutputBuilder; + impl crate::operation::list_default_configs::builders::ListDefaultConfigsInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/list_dimensions.rs b/crates/superposition_sdk/src/operation/list_dimensions.rs index 2addc2aa7..7df362f9e 100644 --- a/crates/superposition_sdk/src/operation/list_dimensions.rs +++ b/crates/superposition_sdk/src/operation/list_dimensions.rs @@ -302,10 +302,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for ListDime } } -pub use crate::operation::list_dimensions::_list_dimensions_output::ListDimensionsOutput; - pub use crate::operation::list_dimensions::_list_dimensions_input::ListDimensionsInput; +pub use crate::operation::list_dimensions::_list_dimensions_output::ListDimensionsOutput; + mod _list_dimensions_input; mod _list_dimensions_output; diff --git a/crates/superposition_sdk/src/operation/list_dimensions/builders.rs b/crates/superposition_sdk/src/operation/list_dimensions/builders.rs index bb1b11ecd..d81bbf481 100644 --- a/crates/superposition_sdk/src/operation/list_dimensions/builders.rs +++ b/crates/superposition_sdk/src/operation/list_dimensions/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::list_dimensions::_list_dimensions_output::ListDimensionsOutputBuilder; - pub use crate::operation::list_dimensions::_list_dimensions_input::ListDimensionsInputBuilder; +pub use crate::operation::list_dimensions::_list_dimensions_output::ListDimensionsOutputBuilder; + impl crate::operation::list_dimensions::builders::ListDimensionsInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/list_experiment.rs b/crates/superposition_sdk/src/operation/list_experiment.rs index 522762e0f..6417b09a9 100644 --- a/crates/superposition_sdk/src/operation/list_experiment.rs +++ b/crates/superposition_sdk/src/operation/list_experiment.rs @@ -376,10 +376,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for ListExpe } } -pub use crate::operation::list_experiment::_list_experiment_output::ListExperimentOutput; - pub use crate::operation::list_experiment::_list_experiment_input::ListExperimentInput; +pub use crate::operation::list_experiment::_list_experiment_output::ListExperimentOutput; + mod _list_experiment_input; mod _list_experiment_output; diff --git a/crates/superposition_sdk/src/operation/list_experiment/builders.rs b/crates/superposition_sdk/src/operation/list_experiment/builders.rs index 68e8b7d3e..754f0d56e 100644 --- a/crates/superposition_sdk/src/operation/list_experiment/builders.rs +++ b/crates/superposition_sdk/src/operation/list_experiment/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::list_experiment::_list_experiment_output::ListExperimentOutputBuilder; - pub use crate::operation::list_experiment::_list_experiment_input::ListExperimentInputBuilder; +pub use crate::operation::list_experiment::_list_experiment_output::ListExperimentOutputBuilder; + impl crate::operation::list_experiment::builders::ListExperimentInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/list_experiment_groups.rs b/crates/superposition_sdk/src/operation/list_experiment_groups.rs index 799b612b1..a7505ac09 100644 --- a/crates/superposition_sdk/src/operation/list_experiment_groups.rs +++ b/crates/superposition_sdk/src/operation/list_experiment_groups.rs @@ -343,10 +343,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for ListExpe } } -pub use crate::operation::list_experiment_groups::_list_experiment_groups_output::ListExperimentGroupsOutput; - pub use crate::operation::list_experiment_groups::_list_experiment_groups_input::ListExperimentGroupsInput; +pub use crate::operation::list_experiment_groups::_list_experiment_groups_output::ListExperimentGroupsOutput; + mod _list_experiment_groups_input; mod _list_experiment_groups_output; diff --git a/crates/superposition_sdk/src/operation/list_experiment_groups/builders.rs b/crates/superposition_sdk/src/operation/list_experiment_groups/builders.rs index 820a00e2a..162bbb3a9 100644 --- a/crates/superposition_sdk/src/operation/list_experiment_groups/builders.rs +++ b/crates/superposition_sdk/src/operation/list_experiment_groups/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::list_experiment_groups::_list_experiment_groups_output::ListExperimentGroupsOutputBuilder; - pub use crate::operation::list_experiment_groups::_list_experiment_groups_input::ListExperimentGroupsInputBuilder; +pub use crate::operation::list_experiment_groups::_list_experiment_groups_output::ListExperimentGroupsOutputBuilder; + impl crate::operation::list_experiment_groups::builders::ListExperimentGroupsInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/list_function.rs b/crates/superposition_sdk/src/operation/list_function.rs index 2935cbbee..020f41de8 100644 --- a/crates/superposition_sdk/src/operation/list_function.rs +++ b/crates/superposition_sdk/src/operation/list_function.rs @@ -309,10 +309,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for ListFunc } } -pub use crate::operation::list_function::_list_function_output::ListFunctionOutput; - pub use crate::operation::list_function::_list_function_input::ListFunctionInput; +pub use crate::operation::list_function::_list_function_output::ListFunctionOutput; + mod _list_function_input; mod _list_function_output; diff --git a/crates/superposition_sdk/src/operation/list_function/builders.rs b/crates/superposition_sdk/src/operation/list_function/builders.rs index 9c8d0c63e..544df23e7 100644 --- a/crates/superposition_sdk/src/operation/list_function/builders.rs +++ b/crates/superposition_sdk/src/operation/list_function/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::list_function::_list_function_output::ListFunctionOutputBuilder; - pub use crate::operation::list_function::_list_function_input::ListFunctionInputBuilder; +pub use crate::operation::list_function::_list_function_output::ListFunctionOutputBuilder; + impl crate::operation::list_function::builders::ListFunctionInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/list_organisation.rs b/crates/superposition_sdk/src/operation/list_organisation.rs index 1e54849cb..b91b4c43e 100644 --- a/crates/superposition_sdk/src/operation/list_organisation.rs +++ b/crates/superposition_sdk/src/operation/list_organisation.rs @@ -301,10 +301,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for ListOrga } } -pub use crate::operation::list_organisation::_list_organisation_output::ListOrganisationOutput; - pub use crate::operation::list_organisation::_list_organisation_input::ListOrganisationInput; +pub use crate::operation::list_organisation::_list_organisation_output::ListOrganisationOutput; + mod _list_organisation_input; mod _list_organisation_output; diff --git a/crates/superposition_sdk/src/operation/list_organisation/builders.rs b/crates/superposition_sdk/src/operation/list_organisation/builders.rs index d86ee7a48..94bcf7ca7 100644 --- a/crates/superposition_sdk/src/operation/list_organisation/builders.rs +++ b/crates/superposition_sdk/src/operation/list_organisation/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::list_organisation::_list_organisation_output::ListOrganisationOutputBuilder; - pub use crate::operation::list_organisation::_list_organisation_input::ListOrganisationInputBuilder; +pub use crate::operation::list_organisation::_list_organisation_output::ListOrganisationOutputBuilder; + impl crate::operation::list_organisation::builders::ListOrganisationInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/list_secrets.rs b/crates/superposition_sdk/src/operation/list_secrets.rs index 4bdabee0d..dca5fdbc2 100644 --- a/crates/superposition_sdk/src/operation/list_secrets.rs +++ b/crates/superposition_sdk/src/operation/list_secrets.rs @@ -333,10 +333,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for ListSecr } } -pub use crate::operation::list_secrets::_list_secrets_output::ListSecretsOutput; - pub use crate::operation::list_secrets::_list_secrets_input::ListSecretsInput; +pub use crate::operation::list_secrets::_list_secrets_output::ListSecretsOutput; + mod _list_secrets_input; mod _list_secrets_output; diff --git a/crates/superposition_sdk/src/operation/list_secrets/builders.rs b/crates/superposition_sdk/src/operation/list_secrets/builders.rs index 9c0c4844a..7290bf53b 100644 --- a/crates/superposition_sdk/src/operation/list_secrets/builders.rs +++ b/crates/superposition_sdk/src/operation/list_secrets/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::list_secrets::_list_secrets_output::ListSecretsOutputBuilder; - pub use crate::operation::list_secrets::_list_secrets_input::ListSecretsInputBuilder; +pub use crate::operation::list_secrets::_list_secrets_output::ListSecretsOutputBuilder; + impl crate::operation::list_secrets::builders::ListSecretsInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/list_variables.rs b/crates/superposition_sdk/src/operation/list_variables.rs index 7b41c8699..4e2600e8a 100644 --- a/crates/superposition_sdk/src/operation/list_variables.rs +++ b/crates/superposition_sdk/src/operation/list_variables.rs @@ -333,10 +333,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for ListVari } } -pub use crate::operation::list_variables::_list_variables_output::ListVariablesOutput; - pub use crate::operation::list_variables::_list_variables_input::ListVariablesInput; +pub use crate::operation::list_variables::_list_variables_output::ListVariablesOutput; + mod _list_variables_input; mod _list_variables_output; diff --git a/crates/superposition_sdk/src/operation/list_variables/builders.rs b/crates/superposition_sdk/src/operation/list_variables/builders.rs index 9fd0b838c..1983a78d7 100644 --- a/crates/superposition_sdk/src/operation/list_variables/builders.rs +++ b/crates/superposition_sdk/src/operation/list_variables/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::list_variables::_list_variables_output::ListVariablesOutputBuilder; - pub use crate::operation::list_variables::_list_variables_input::ListVariablesInputBuilder; +pub use crate::operation::list_variables::_list_variables_output::ListVariablesOutputBuilder; + impl crate::operation::list_variables::builders::ListVariablesInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/list_versions.rs b/crates/superposition_sdk/src/operation/list_versions.rs index 1f21968bf..fdd32f5e0 100644 --- a/crates/superposition_sdk/src/operation/list_versions.rs +++ b/crates/superposition_sdk/src/operation/list_versions.rs @@ -297,10 +297,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for ListVers } } -pub use crate::operation::list_versions::_list_versions_output::ListVersionsOutput; - pub use crate::operation::list_versions::_list_versions_input::ListVersionsInput; +pub use crate::operation::list_versions::_list_versions_output::ListVersionsOutput; + mod _list_versions_input; mod _list_versions_output; diff --git a/crates/superposition_sdk/src/operation/list_versions/builders.rs b/crates/superposition_sdk/src/operation/list_versions/builders.rs index 612d5aa3f..19245847b 100644 --- a/crates/superposition_sdk/src/operation/list_versions/builders.rs +++ b/crates/superposition_sdk/src/operation/list_versions/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::list_versions::_list_versions_output::ListVersionsOutputBuilder; - pub use crate::operation::list_versions::_list_versions_input::ListVersionsInputBuilder; +pub use crate::operation::list_versions::_list_versions_output::ListVersionsOutputBuilder; + impl crate::operation::list_versions::builders::ListVersionsInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/list_webhook.rs b/crates/superposition_sdk/src/operation/list_webhook.rs index bda5b5e59..8a5ddd796 100644 --- a/crates/superposition_sdk/src/operation/list_webhook.rs +++ b/crates/superposition_sdk/src/operation/list_webhook.rs @@ -302,10 +302,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for ListWebh } } -pub use crate::operation::list_webhook::_list_webhook_output::ListWebhookOutput; - pub use crate::operation::list_webhook::_list_webhook_input::ListWebhookInput; +pub use crate::operation::list_webhook::_list_webhook_output::ListWebhookOutput; + mod _list_webhook_input; mod _list_webhook_output; diff --git a/crates/superposition_sdk/src/operation/list_webhook/builders.rs b/crates/superposition_sdk/src/operation/list_webhook/builders.rs index 1a9a838a5..a85d6edd0 100644 --- a/crates/superposition_sdk/src/operation/list_webhook/builders.rs +++ b/crates/superposition_sdk/src/operation/list_webhook/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::list_webhook::_list_webhook_output::ListWebhookOutputBuilder; - pub use crate::operation::list_webhook::_list_webhook_input::ListWebhookInputBuilder; +pub use crate::operation::list_webhook::_list_webhook_output::ListWebhookOutputBuilder; + impl crate::operation::list_webhook::builders::ListWebhookInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/list_workspace.rs b/crates/superposition_sdk/src/operation/list_workspace.rs index 03de06fc2..e47d66fc9 100644 --- a/crates/superposition_sdk/src/operation/list_workspace.rs +++ b/crates/superposition_sdk/src/operation/list_workspace.rs @@ -302,10 +302,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for ListWork } } -pub use crate::operation::list_workspace::_list_workspace_output::ListWorkspaceOutput; - pub use crate::operation::list_workspace::_list_workspace_input::ListWorkspaceInput; +pub use crate::operation::list_workspace::_list_workspace_output::ListWorkspaceOutput; + mod _list_workspace_input; mod _list_workspace_output; diff --git a/crates/superposition_sdk/src/operation/list_workspace/builders.rs b/crates/superposition_sdk/src/operation/list_workspace/builders.rs index 770f993b8..70aea167f 100644 --- a/crates/superposition_sdk/src/operation/list_workspace/builders.rs +++ b/crates/superposition_sdk/src/operation/list_workspace/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::list_workspace::_list_workspace_output::ListWorkspaceOutputBuilder; - pub use crate::operation::list_workspace::_list_workspace_input::ListWorkspaceInputBuilder; +pub use crate::operation::list_workspace::_list_workspace_output::ListWorkspaceOutputBuilder; + impl crate::operation::list_workspace::builders::ListWorkspaceInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/migrate_workspace_schema.rs b/crates/superposition_sdk/src/operation/migrate_workspace_schema.rs index a020fd190..66237a4e0 100644 --- a/crates/superposition_sdk/src/operation/migrate_workspace_schema.rs +++ b/crates/superposition_sdk/src/operation/migrate_workspace_schema.rs @@ -304,10 +304,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for MigrateW } } -pub use crate::operation::migrate_workspace_schema::_migrate_workspace_schema_output::MigrateWorkspaceSchemaOutput; - pub use crate::operation::migrate_workspace_schema::_migrate_workspace_schema_input::MigrateWorkspaceSchemaInput; +pub use crate::operation::migrate_workspace_schema::_migrate_workspace_schema_output::MigrateWorkspaceSchemaOutput; + mod _migrate_workspace_schema_input; mod _migrate_workspace_schema_output; diff --git a/crates/superposition_sdk/src/operation/migrate_workspace_schema/builders.rs b/crates/superposition_sdk/src/operation/migrate_workspace_schema/builders.rs index c86369a59..1574746de 100644 --- a/crates/superposition_sdk/src/operation/migrate_workspace_schema/builders.rs +++ b/crates/superposition_sdk/src/operation/migrate_workspace_schema/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::migrate_workspace_schema::_migrate_workspace_schema_output::MigrateWorkspaceSchemaOutputBuilder; - pub use crate::operation::migrate_workspace_schema::_migrate_workspace_schema_input::MigrateWorkspaceSchemaInputBuilder; +pub use crate::operation::migrate_workspace_schema::_migrate_workspace_schema_output::MigrateWorkspaceSchemaOutputBuilder; + impl crate::operation::migrate_workspace_schema::builders::MigrateWorkspaceSchemaInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/move_context.rs b/crates/superposition_sdk/src/operation/move_context.rs index ef13d0a6b..ab47c6d46 100644 --- a/crates/superposition_sdk/src/operation/move_context.rs +++ b/crates/superposition_sdk/src/operation/move_context.rs @@ -324,10 +324,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for MoveCont } } -pub use crate::operation::move_context::_move_context_output::MoveContextOutput; - pub use crate::operation::move_context::_move_context_input::MoveContextInput; +pub use crate::operation::move_context::_move_context_output::MoveContextOutput; + mod _move_context_input; mod _move_context_output; diff --git a/crates/superposition_sdk/src/operation/move_context/builders.rs b/crates/superposition_sdk/src/operation/move_context/builders.rs index 0cf85bb00..6f54f6d8c 100644 --- a/crates/superposition_sdk/src/operation/move_context/builders.rs +++ b/crates/superposition_sdk/src/operation/move_context/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::move_context::_move_context_output::MoveContextOutputBuilder; - pub use crate::operation::move_context::_move_context_input::MoveContextInputBuilder; +pub use crate::operation::move_context::_move_context_output::MoveContextOutputBuilder; + impl crate::operation::move_context::builders::MoveContextInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/pause_experiment.rs b/crates/superposition_sdk/src/operation/pause_experiment.rs index b3bdef20a..3ece791a7 100644 --- a/crates/superposition_sdk/src/operation/pause_experiment.rs +++ b/crates/superposition_sdk/src/operation/pause_experiment.rs @@ -324,10 +324,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for PauseExp } } -pub use crate::operation::pause_experiment::_pause_experiment_output::PauseExperimentOutput; - pub use crate::operation::pause_experiment::_pause_experiment_input::PauseExperimentInput; +pub use crate::operation::pause_experiment::_pause_experiment_output::PauseExperimentOutput; + mod _pause_experiment_input; mod _pause_experiment_output; diff --git a/crates/superposition_sdk/src/operation/pause_experiment/builders.rs b/crates/superposition_sdk/src/operation/pause_experiment/builders.rs index 5c846feb6..361e2bb1d 100644 --- a/crates/superposition_sdk/src/operation/pause_experiment/builders.rs +++ b/crates/superposition_sdk/src/operation/pause_experiment/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::pause_experiment::_pause_experiment_output::PauseExperimentOutputBuilder; - pub use crate::operation::pause_experiment::_pause_experiment_input::PauseExperimentInputBuilder; +pub use crate::operation::pause_experiment::_pause_experiment_output::PauseExperimentOutputBuilder; + impl crate::operation::pause_experiment::builders::PauseExperimentInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/publish.rs b/crates/superposition_sdk/src/operation/publish.rs index f921576ef..14c4f0a46 100644 --- a/crates/superposition_sdk/src/operation/publish.rs +++ b/crates/superposition_sdk/src/operation/publish.rs @@ -308,10 +308,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for PublishE } } -pub use crate::operation::publish::_publish_output::PublishOutput; - pub use crate::operation::publish::_publish_input::PublishInput; +pub use crate::operation::publish::_publish_output::PublishOutput; + mod _publish_input; mod _publish_output; diff --git a/crates/superposition_sdk/src/operation/publish/builders.rs b/crates/superposition_sdk/src/operation/publish/builders.rs index cdb0c7a4c..9c70dec5f 100644 --- a/crates/superposition_sdk/src/operation/publish/builders.rs +++ b/crates/superposition_sdk/src/operation/publish/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::publish::_publish_output::PublishOutputBuilder; - pub use crate::operation::publish::_publish_input::PublishInputBuilder; +pub use crate::operation::publish::_publish_output::PublishOutputBuilder; + impl crate::operation::publish::builders::PublishInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/ramp_experiment.rs b/crates/superposition_sdk/src/operation/ramp_experiment.rs index ba73610df..f0695d914 100644 --- a/crates/superposition_sdk/src/operation/ramp_experiment.rs +++ b/crates/superposition_sdk/src/operation/ramp_experiment.rs @@ -324,10 +324,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for RampExpe } } -pub use crate::operation::ramp_experiment::_ramp_experiment_output::RampExperimentOutput; - pub use crate::operation::ramp_experiment::_ramp_experiment_input::RampExperimentInput; +pub use crate::operation::ramp_experiment::_ramp_experiment_output::RampExperimentOutput; + mod _ramp_experiment_input; mod _ramp_experiment_output; diff --git a/crates/superposition_sdk/src/operation/ramp_experiment/builders.rs b/crates/superposition_sdk/src/operation/ramp_experiment/builders.rs index 4bce84b5a..228f7521f 100644 --- a/crates/superposition_sdk/src/operation/ramp_experiment/builders.rs +++ b/crates/superposition_sdk/src/operation/ramp_experiment/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::ramp_experiment::_ramp_experiment_output::RampExperimentOutputBuilder; - pub use crate::operation::ramp_experiment::_ramp_experiment_input::RampExperimentInputBuilder; +pub use crate::operation::ramp_experiment::_ramp_experiment_output::RampExperimentOutputBuilder; + impl crate::operation::ramp_experiment::builders::RampExperimentInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/remove_members_from_group.rs b/crates/superposition_sdk/src/operation/remove_members_from_group.rs index fcf040840..39e3f5978 100644 --- a/crates/superposition_sdk/src/operation/remove_members_from_group.rs +++ b/crates/superposition_sdk/src/operation/remove_members_from_group.rs @@ -308,10 +308,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for RemoveMe } } -pub use crate::operation::remove_members_from_group::_remove_members_from_group_output::RemoveMembersFromGroupOutput; - pub use crate::operation::remove_members_from_group::_remove_members_from_group_input::RemoveMembersFromGroupInput; +pub use crate::operation::remove_members_from_group::_remove_members_from_group_output::RemoveMembersFromGroupOutput; + mod _remove_members_from_group_input; mod _remove_members_from_group_output; diff --git a/crates/superposition_sdk/src/operation/remove_members_from_group/builders.rs b/crates/superposition_sdk/src/operation/remove_members_from_group/builders.rs index f275643a0..6bb39a90e 100644 --- a/crates/superposition_sdk/src/operation/remove_members_from_group/builders.rs +++ b/crates/superposition_sdk/src/operation/remove_members_from_group/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::remove_members_from_group::_remove_members_from_group_output::RemoveMembersFromGroupOutputBuilder; - pub use crate::operation::remove_members_from_group::_remove_members_from_group_input::RemoveMembersFromGroupInputBuilder; +pub use crate::operation::remove_members_from_group::_remove_members_from_group_output::RemoveMembersFromGroupOutputBuilder; + impl crate::operation::remove_members_from_group::builders::RemoveMembersFromGroupInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/resume_experiment.rs b/crates/superposition_sdk/src/operation/resume_experiment.rs index 7030946bc..9a8b151be 100644 --- a/crates/superposition_sdk/src/operation/resume_experiment.rs +++ b/crates/superposition_sdk/src/operation/resume_experiment.rs @@ -324,10 +324,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for ResumeEx } } -pub use crate::operation::resume_experiment::_resume_experiment_output::ResumeExperimentOutput; - pub use crate::operation::resume_experiment::_resume_experiment_input::ResumeExperimentInput; +pub use crate::operation::resume_experiment::_resume_experiment_output::ResumeExperimentOutput; + mod _resume_experiment_input; mod _resume_experiment_output; diff --git a/crates/superposition_sdk/src/operation/resume_experiment/builders.rs b/crates/superposition_sdk/src/operation/resume_experiment/builders.rs index f7701c164..216c99d61 100644 --- a/crates/superposition_sdk/src/operation/resume_experiment/builders.rs +++ b/crates/superposition_sdk/src/operation/resume_experiment/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::resume_experiment::_resume_experiment_output::ResumeExperimentOutputBuilder; - pub use crate::operation::resume_experiment::_resume_experiment_input::ResumeExperimentInputBuilder; +pub use crate::operation::resume_experiment::_resume_experiment_output::ResumeExperimentOutputBuilder; + impl crate::operation::resume_experiment::builders::ResumeExperimentInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/rotate_master_encryption_key.rs b/crates/superposition_sdk/src/operation/rotate_master_encryption_key.rs index 0ec33abc8..32f258592 100644 --- a/crates/superposition_sdk/src/operation/rotate_master_encryption_key.rs +++ b/crates/superposition_sdk/src/operation/rotate_master_encryption_key.rs @@ -281,10 +281,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for RotateMa } } -pub use crate::operation::rotate_master_encryption_key::_rotate_master_encryption_key_output::RotateMasterEncryptionKeyOutput; - pub use crate::operation::rotate_master_encryption_key::_rotate_master_encryption_key_input::RotateMasterEncryptionKeyInput; +pub use crate::operation::rotate_master_encryption_key::_rotate_master_encryption_key_output::RotateMasterEncryptionKeyOutput; + mod _rotate_master_encryption_key_input; mod _rotate_master_encryption_key_output; diff --git a/crates/superposition_sdk/src/operation/rotate_master_encryption_key/builders.rs b/crates/superposition_sdk/src/operation/rotate_master_encryption_key/builders.rs index 8f55fce80..3d68afb3c 100644 --- a/crates/superposition_sdk/src/operation/rotate_master_encryption_key/builders.rs +++ b/crates/superposition_sdk/src/operation/rotate_master_encryption_key/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::rotate_master_encryption_key::_rotate_master_encryption_key_output::RotateMasterEncryptionKeyOutputBuilder; - pub use crate::operation::rotate_master_encryption_key::_rotate_master_encryption_key_input::RotateMasterEncryptionKeyInputBuilder; +pub use crate::operation::rotate_master_encryption_key::_rotate_master_encryption_key_output::RotateMasterEncryptionKeyOutputBuilder; + impl crate::operation::rotate_master_encryption_key::builders::RotateMasterEncryptionKeyInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/rotate_workspace_encryption_key.rs b/crates/superposition_sdk/src/operation/rotate_workspace_encryption_key.rs index 43e31590b..3b0314d96 100644 --- a/crates/superposition_sdk/src/operation/rotate_workspace_encryption_key.rs +++ b/crates/superposition_sdk/src/operation/rotate_workspace_encryption_key.rs @@ -288,10 +288,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for RotateWo } } -pub use crate::operation::rotate_workspace_encryption_key::_rotate_workspace_encryption_key_output::RotateWorkspaceEncryptionKeyOutput; - pub use crate::operation::rotate_workspace_encryption_key::_rotate_workspace_encryption_key_input::RotateWorkspaceEncryptionKeyInput; +pub use crate::operation::rotate_workspace_encryption_key::_rotate_workspace_encryption_key_output::RotateWorkspaceEncryptionKeyOutput; + mod _rotate_workspace_encryption_key_input; mod _rotate_workspace_encryption_key_output; diff --git a/crates/superposition_sdk/src/operation/rotate_workspace_encryption_key/builders.rs b/crates/superposition_sdk/src/operation/rotate_workspace_encryption_key/builders.rs index a197a2d33..30b5f5521 100644 --- a/crates/superposition_sdk/src/operation/rotate_workspace_encryption_key/builders.rs +++ b/crates/superposition_sdk/src/operation/rotate_workspace_encryption_key/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::rotate_workspace_encryption_key::_rotate_workspace_encryption_key_output::RotateWorkspaceEncryptionKeyOutputBuilder; - pub use crate::operation::rotate_workspace_encryption_key::_rotate_workspace_encryption_key_input::RotateWorkspaceEncryptionKeyInputBuilder; +pub use crate::operation::rotate_workspace_encryption_key::_rotate_workspace_encryption_key_output::RotateWorkspaceEncryptionKeyOutputBuilder; + impl crate::operation::rotate_workspace_encryption_key::builders::RotateWorkspaceEncryptionKeyInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/test.rs b/crates/superposition_sdk/src/operation/test.rs index f827cf0c3..9f909fc55 100644 --- a/crates/superposition_sdk/src/operation/test.rs +++ b/crates/superposition_sdk/src/operation/test.rs @@ -314,10 +314,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for TestErro } } -pub use crate::operation::test::_test_output::TestOutput; - pub use crate::operation::test::_test_input::TestInput; +pub use crate::operation::test::_test_output::TestOutput; + mod _test_input; mod _test_output; diff --git a/crates/superposition_sdk/src/operation/test/builders.rs b/crates/superposition_sdk/src/operation/test/builders.rs index 7af5789c3..18ed97901 100644 --- a/crates/superposition_sdk/src/operation/test/builders.rs +++ b/crates/superposition_sdk/src/operation/test/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::test::_test_output::TestOutputBuilder; - pub use crate::operation::test::_test_input::TestInputBuilder; +pub use crate::operation::test::_test_output::TestOutputBuilder; + impl crate::operation::test::builders::TestInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/update_default_config.rs b/crates/superposition_sdk/src/operation/update_default_config.rs index fc80a8416..d402caf77 100644 --- a/crates/superposition_sdk/src/operation/update_default_config.rs +++ b/crates/superposition_sdk/src/operation/update_default_config.rs @@ -324,10 +324,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for UpdateDe } } -pub use crate::operation::update_default_config::_update_default_config_output::UpdateDefaultConfigOutput; - pub use crate::operation::update_default_config::_update_default_config_input::UpdateDefaultConfigInput; +pub use crate::operation::update_default_config::_update_default_config_output::UpdateDefaultConfigOutput; + mod _update_default_config_input; mod _update_default_config_output; diff --git a/crates/superposition_sdk/src/operation/update_default_config/builders.rs b/crates/superposition_sdk/src/operation/update_default_config/builders.rs index 22464d3c6..77380d061 100644 --- a/crates/superposition_sdk/src/operation/update_default_config/builders.rs +++ b/crates/superposition_sdk/src/operation/update_default_config/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::update_default_config::_update_default_config_output::UpdateDefaultConfigOutputBuilder; - pub use crate::operation::update_default_config::_update_default_config_input::UpdateDefaultConfigInputBuilder; +pub use crate::operation::update_default_config::_update_default_config_output::UpdateDefaultConfigOutputBuilder; + impl crate::operation::update_default_config::builders::UpdateDefaultConfigInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/update_dimension.rs b/crates/superposition_sdk/src/operation/update_dimension.rs index 4b44da033..ff9a8daa6 100644 --- a/crates/superposition_sdk/src/operation/update_dimension.rs +++ b/crates/superposition_sdk/src/operation/update_dimension.rs @@ -324,10 +324,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for UpdateDi } } -pub use crate::operation::update_dimension::_update_dimension_output::UpdateDimensionOutput; - pub use crate::operation::update_dimension::_update_dimension_input::UpdateDimensionInput; +pub use crate::operation::update_dimension::_update_dimension_output::UpdateDimensionOutput; + mod _update_dimension_input; mod _update_dimension_output; diff --git a/crates/superposition_sdk/src/operation/update_dimension/builders.rs b/crates/superposition_sdk/src/operation/update_dimension/builders.rs index 7fe7daa86..9588b0ff9 100644 --- a/crates/superposition_sdk/src/operation/update_dimension/builders.rs +++ b/crates/superposition_sdk/src/operation/update_dimension/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::update_dimension::_update_dimension_output::UpdateDimensionOutputBuilder; - pub use crate::operation::update_dimension::_update_dimension_input::UpdateDimensionInputBuilder; +pub use crate::operation::update_dimension::_update_dimension_output::UpdateDimensionOutputBuilder; + impl crate::operation::update_dimension::builders::UpdateDimensionInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/update_experiment_group.rs b/crates/superposition_sdk/src/operation/update_experiment_group.rs index ca70d744a..f97b36ebb 100644 --- a/crates/superposition_sdk/src/operation/update_experiment_group.rs +++ b/crates/superposition_sdk/src/operation/update_experiment_group.rs @@ -308,10 +308,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for UpdateEx } } -pub use crate::operation::update_experiment_group::_update_experiment_group_output::UpdateExperimentGroupOutput; - pub use crate::operation::update_experiment_group::_update_experiment_group_input::UpdateExperimentGroupInput; +pub use crate::operation::update_experiment_group::_update_experiment_group_output::UpdateExperimentGroupOutput; + mod _update_experiment_group_input; mod _update_experiment_group_output; diff --git a/crates/superposition_sdk/src/operation/update_experiment_group/builders.rs b/crates/superposition_sdk/src/operation/update_experiment_group/builders.rs index d8e8dd8af..63b204e20 100644 --- a/crates/superposition_sdk/src/operation/update_experiment_group/builders.rs +++ b/crates/superposition_sdk/src/operation/update_experiment_group/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::update_experiment_group::_update_experiment_group_output::UpdateExperimentGroupOutputBuilder; - pub use crate::operation::update_experiment_group::_update_experiment_group_input::UpdateExperimentGroupInputBuilder; +pub use crate::operation::update_experiment_group::_update_experiment_group_output::UpdateExperimentGroupOutputBuilder; + impl crate::operation::update_experiment_group::builders::UpdateExperimentGroupInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/update_function.rs b/crates/superposition_sdk/src/operation/update_function.rs index 78737a4f1..8da109b14 100644 --- a/crates/superposition_sdk/src/operation/update_function.rs +++ b/crates/superposition_sdk/src/operation/update_function.rs @@ -308,10 +308,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for UpdateFu } } -pub use crate::operation::update_function::_update_function_output::UpdateFunctionOutput; - pub use crate::operation::update_function::_update_function_input::UpdateFunctionInput; +pub use crate::operation::update_function::_update_function_output::UpdateFunctionOutput; + mod _update_function_input; mod _update_function_output; diff --git a/crates/superposition_sdk/src/operation/update_function/builders.rs b/crates/superposition_sdk/src/operation/update_function/builders.rs index eb1738be9..7762b2e04 100644 --- a/crates/superposition_sdk/src/operation/update_function/builders.rs +++ b/crates/superposition_sdk/src/operation/update_function/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::update_function::_update_function_output::UpdateFunctionOutputBuilder; - pub use crate::operation::update_function::_update_function_input::UpdateFunctionInputBuilder; +pub use crate::operation::update_function::_update_function_output::UpdateFunctionOutputBuilder; + impl crate::operation::update_function::builders::UpdateFunctionInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/update_organisation.rs b/crates/superposition_sdk/src/operation/update_organisation.rs index b5bd51b6d..49e645d5c 100644 --- a/crates/superposition_sdk/src/operation/update_organisation.rs +++ b/crates/superposition_sdk/src/operation/update_organisation.rs @@ -307,10 +307,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for UpdateOr } } -pub use crate::operation::update_organisation::_update_organisation_output::UpdateOrganisationOutput; - pub use crate::operation::update_organisation::_update_organisation_input::UpdateOrganisationInput; +pub use crate::operation::update_organisation::_update_organisation_output::UpdateOrganisationOutput; + mod _update_organisation_input; mod _update_organisation_output; diff --git a/crates/superposition_sdk/src/operation/update_organisation/builders.rs b/crates/superposition_sdk/src/operation/update_organisation/builders.rs index 53d2de3b5..09cb0c0a5 100644 --- a/crates/superposition_sdk/src/operation/update_organisation/builders.rs +++ b/crates/superposition_sdk/src/operation/update_organisation/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::update_organisation::_update_organisation_output::UpdateOrganisationOutputBuilder; - pub use crate::operation::update_organisation::_update_organisation_input::UpdateOrganisationInputBuilder; +pub use crate::operation::update_organisation::_update_organisation_output::UpdateOrganisationOutputBuilder; + impl crate::operation::update_organisation::builders::UpdateOrganisationInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/update_override.rs b/crates/superposition_sdk/src/operation/update_override.rs index 38bda03bc..0ddc225f6 100644 --- a/crates/superposition_sdk/src/operation/update_override.rs +++ b/crates/superposition_sdk/src/operation/update_override.rs @@ -318,10 +318,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for UpdateOv } } -pub use crate::operation::update_override::_update_override_output::UpdateOverrideOutput; - pub use crate::operation::update_override::_update_override_input::UpdateOverrideInput; +pub use crate::operation::update_override::_update_override_output::UpdateOverrideOutput; + mod _update_override_input; mod _update_override_output; diff --git a/crates/superposition_sdk/src/operation/update_override/builders.rs b/crates/superposition_sdk/src/operation/update_override/builders.rs index 3aedcc0b5..66193a6c7 100644 --- a/crates/superposition_sdk/src/operation/update_override/builders.rs +++ b/crates/superposition_sdk/src/operation/update_override/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::update_override::_update_override_output::UpdateOverrideOutputBuilder; - pub use crate::operation::update_override::_update_override_input::UpdateOverrideInputBuilder; +pub use crate::operation::update_override::_update_override_output::UpdateOverrideOutputBuilder; + impl crate::operation::update_override::builders::UpdateOverrideInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/update_overrides_experiment.rs b/crates/superposition_sdk/src/operation/update_overrides_experiment.rs index 3ddbcdd30..f5c553b33 100644 --- a/crates/superposition_sdk/src/operation/update_overrides_experiment.rs +++ b/crates/superposition_sdk/src/operation/update_overrides_experiment.rs @@ -324,10 +324,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for UpdateOv } } -pub use crate::operation::update_overrides_experiment::_update_overrides_experiment_output::UpdateOverridesExperimentOutput; - pub use crate::operation::update_overrides_experiment::_update_overrides_experiment_input::UpdateOverridesExperimentInput; +pub use crate::operation::update_overrides_experiment::_update_overrides_experiment_output::UpdateOverridesExperimentOutput; + mod _update_overrides_experiment_input; mod _update_overrides_experiment_output; diff --git a/crates/superposition_sdk/src/operation/update_overrides_experiment/builders.rs b/crates/superposition_sdk/src/operation/update_overrides_experiment/builders.rs index c4fb0333f..cceef164a 100644 --- a/crates/superposition_sdk/src/operation/update_overrides_experiment/builders.rs +++ b/crates/superposition_sdk/src/operation/update_overrides_experiment/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::update_overrides_experiment::_update_overrides_experiment_output::UpdateOverridesExperimentOutputBuilder; - pub use crate::operation::update_overrides_experiment::_update_overrides_experiment_input::UpdateOverridesExperimentInputBuilder; +pub use crate::operation::update_overrides_experiment::_update_overrides_experiment_output::UpdateOverridesExperimentOutputBuilder; + impl crate::operation::update_overrides_experiment::builders::UpdateOverridesExperimentInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/update_secret.rs b/crates/superposition_sdk/src/operation/update_secret.rs index 690110fc4..81f7cb3d0 100644 --- a/crates/superposition_sdk/src/operation/update_secret.rs +++ b/crates/superposition_sdk/src/operation/update_secret.rs @@ -308,10 +308,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for UpdateSe } } -pub use crate::operation::update_secret::_update_secret_output::UpdateSecretOutput; - pub use crate::operation::update_secret::_update_secret_input::UpdateSecretInput; +pub use crate::operation::update_secret::_update_secret_output::UpdateSecretOutput; + mod _update_secret_input; mod _update_secret_output; diff --git a/crates/superposition_sdk/src/operation/update_secret/builders.rs b/crates/superposition_sdk/src/operation/update_secret/builders.rs index ab2aa61a1..7069b4d9b 100644 --- a/crates/superposition_sdk/src/operation/update_secret/builders.rs +++ b/crates/superposition_sdk/src/operation/update_secret/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::update_secret::_update_secret_output::UpdateSecretOutputBuilder; - pub use crate::operation::update_secret::_update_secret_input::UpdateSecretInputBuilder; +pub use crate::operation::update_secret::_update_secret_output::UpdateSecretOutputBuilder; + impl crate::operation::update_secret::builders::UpdateSecretInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/update_type_templates.rs b/crates/superposition_sdk/src/operation/update_type_templates.rs index 7b47f70da..81f8915c3 100644 --- a/crates/superposition_sdk/src/operation/update_type_templates.rs +++ b/crates/superposition_sdk/src/operation/update_type_templates.rs @@ -308,10 +308,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for UpdateTy } } -pub use crate::operation::update_type_templates::_update_type_templates_output::UpdateTypeTemplatesOutput; - pub use crate::operation::update_type_templates::_update_type_templates_input::UpdateTypeTemplatesInput; +pub use crate::operation::update_type_templates::_update_type_templates_output::UpdateTypeTemplatesOutput; + mod _update_type_templates_input; mod _update_type_templates_output; diff --git a/crates/superposition_sdk/src/operation/update_type_templates/builders.rs b/crates/superposition_sdk/src/operation/update_type_templates/builders.rs index 738079702..54e2385f2 100644 --- a/crates/superposition_sdk/src/operation/update_type_templates/builders.rs +++ b/crates/superposition_sdk/src/operation/update_type_templates/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::update_type_templates::_update_type_templates_output::UpdateTypeTemplatesOutputBuilder; - pub use crate::operation::update_type_templates::_update_type_templates_input::UpdateTypeTemplatesInputBuilder; +pub use crate::operation::update_type_templates::_update_type_templates_output::UpdateTypeTemplatesOutputBuilder; + impl crate::operation::update_type_templates::builders::UpdateTypeTemplatesInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/update_variable.rs b/crates/superposition_sdk/src/operation/update_variable.rs index 192ae3d59..b7b42a1e9 100644 --- a/crates/superposition_sdk/src/operation/update_variable.rs +++ b/crates/superposition_sdk/src/operation/update_variable.rs @@ -308,10 +308,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for UpdateVa } } -pub use crate::operation::update_variable::_update_variable_output::UpdateVariableOutput; - pub use crate::operation::update_variable::_update_variable_input::UpdateVariableInput; +pub use crate::operation::update_variable::_update_variable_output::UpdateVariableOutput; + mod _update_variable_input; mod _update_variable_output; diff --git a/crates/superposition_sdk/src/operation/update_variable/builders.rs b/crates/superposition_sdk/src/operation/update_variable/builders.rs index ed4ed3b2f..f719dd36d 100644 --- a/crates/superposition_sdk/src/operation/update_variable/builders.rs +++ b/crates/superposition_sdk/src/operation/update_variable/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::update_variable::_update_variable_output::UpdateVariableOutputBuilder; - pub use crate::operation::update_variable::_update_variable_input::UpdateVariableInputBuilder; +pub use crate::operation::update_variable::_update_variable_output::UpdateVariableOutputBuilder; + impl crate::operation::update_variable::builders::UpdateVariableInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/update_webhook.rs b/crates/superposition_sdk/src/operation/update_webhook.rs index 8475d1979..287db2c09 100644 --- a/crates/superposition_sdk/src/operation/update_webhook.rs +++ b/crates/superposition_sdk/src/operation/update_webhook.rs @@ -308,10 +308,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for UpdateWe } } -pub use crate::operation::update_webhook::_update_webhook_output::UpdateWebhookOutput; - pub use crate::operation::update_webhook::_update_webhook_input::UpdateWebhookInput; +pub use crate::operation::update_webhook::_update_webhook_output::UpdateWebhookOutput; + mod _update_webhook_input; mod _update_webhook_output; diff --git a/crates/superposition_sdk/src/operation/update_webhook/builders.rs b/crates/superposition_sdk/src/operation/update_webhook/builders.rs index 2e0e31ec0..daf07137b 100644 --- a/crates/superposition_sdk/src/operation/update_webhook/builders.rs +++ b/crates/superposition_sdk/src/operation/update_webhook/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::update_webhook::_update_webhook_output::UpdateWebhookOutputBuilder; - pub use crate::operation::update_webhook::_update_webhook_input::UpdateWebhookInputBuilder; +pub use crate::operation::update_webhook::_update_webhook_output::UpdateWebhookOutputBuilder; + impl crate::operation::update_webhook::builders::UpdateWebhookInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/update_workspace.rs b/crates/superposition_sdk/src/operation/update_workspace.rs index c82aeab9e..259e48cb1 100644 --- a/crates/superposition_sdk/src/operation/update_workspace.rs +++ b/crates/superposition_sdk/src/operation/update_workspace.rs @@ -308,10 +308,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for UpdateWo } } -pub use crate::operation::update_workspace::_update_workspace_output::UpdateWorkspaceOutput; - pub use crate::operation::update_workspace::_update_workspace_input::UpdateWorkspaceInput; +pub use crate::operation::update_workspace::_update_workspace_output::UpdateWorkspaceOutput; + mod _update_workspace_input; mod _update_workspace_output; diff --git a/crates/superposition_sdk/src/operation/update_workspace/builders.rs b/crates/superposition_sdk/src/operation/update_workspace/builders.rs index 442ff1ceb..8f4034114 100644 --- a/crates/superposition_sdk/src/operation/update_workspace/builders.rs +++ b/crates/superposition_sdk/src/operation/update_workspace/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::update_workspace::_update_workspace_output::UpdateWorkspaceOutputBuilder; - pub use crate::operation::update_workspace::_update_workspace_input::UpdateWorkspaceInputBuilder; +pub use crate::operation::update_workspace::_update_workspace_output::UpdateWorkspaceOutputBuilder; + impl crate::operation::update_workspace::builders::UpdateWorkspaceInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/validate_context.rs b/crates/superposition_sdk/src/operation/validate_context.rs index a70cfab37..419aa0273 100644 --- a/crates/superposition_sdk/src/operation/validate_context.rs +++ b/crates/superposition_sdk/src/operation/validate_context.rs @@ -286,10 +286,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for Validate } } -pub use crate::operation::validate_context::_validate_context_output::ValidateContextOutput; - pub use crate::operation::validate_context::_validate_context_input::ValidateContextInput; +pub use crate::operation::validate_context::_validate_context_output::ValidateContextOutput; + mod _validate_context_input; mod _validate_context_output; diff --git a/crates/superposition_sdk/src/operation/validate_context/builders.rs b/crates/superposition_sdk/src/operation/validate_context/builders.rs index eb3751e53..151060419 100644 --- a/crates/superposition_sdk/src/operation/validate_context/builders.rs +++ b/crates/superposition_sdk/src/operation/validate_context/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::validate_context::_validate_context_output::ValidateContextOutputBuilder; - pub use crate::operation::validate_context::_validate_context_input::ValidateContextInputBuilder; +pub use crate::operation::validate_context::_validate_context_output::ValidateContextOutputBuilder; + impl crate::operation::validate_context::builders::ValidateContextInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/operation/weight_recompute.rs b/crates/superposition_sdk/src/operation/weight_recompute.rs index 913b2c9a3..dc88e5a35 100644 --- a/crates/superposition_sdk/src/operation/weight_recompute.rs +++ b/crates/superposition_sdk/src/operation/weight_recompute.rs @@ -298,10 +298,10 @@ impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for WeightRe } } -pub use crate::operation::weight_recompute::_weight_recompute_output::WeightRecomputeOutput; - pub use crate::operation::weight_recompute::_weight_recompute_input::WeightRecomputeInput; +pub use crate::operation::weight_recompute::_weight_recompute_output::WeightRecomputeOutput; + mod _weight_recompute_input; mod _weight_recompute_output; diff --git a/crates/superposition_sdk/src/operation/weight_recompute/builders.rs b/crates/superposition_sdk/src/operation/weight_recompute/builders.rs index 77d619ca2..98573dc59 100644 --- a/crates/superposition_sdk/src/operation/weight_recompute/builders.rs +++ b/crates/superposition_sdk/src/operation/weight_recompute/builders.rs @@ -1,8 +1,8 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::operation::weight_recompute::_weight_recompute_output::WeightRecomputeOutputBuilder; - pub use crate::operation::weight_recompute::_weight_recompute_input::WeightRecomputeInputBuilder; +pub use crate::operation::weight_recompute::_weight_recompute_output::WeightRecomputeOutputBuilder; + impl crate::operation::weight_recompute::builders::WeightRecomputeInputBuilder { /// Sends a request with this input using the given client. pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result< diff --git a/crates/superposition_sdk/src/types.rs b/crates/superposition_sdk/src/types.rs index 6eaf162dc..425602cbb 100644 --- a/crates/superposition_sdk/src/types.rs +++ b/crates/superposition_sdk/src/types.rs @@ -1,113 +1,113 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::types::_secret_response::SecretResponse; - -pub use crate::types::_sort_by::SortBy; +pub use crate::types::_dimension_type::DimensionType; -pub use crate::types::_secret_sort_on::SecretSortOn; +pub use crate::types::_config_data::ConfigData; -pub use crate::types::_variable_response::VariableResponse; +pub use crate::types::_function_runtime_version::FunctionRuntimeVersion; -pub use crate::types::_variable_sort_on::VariableSortOn; +pub use crate::types::_function_types::FunctionTypes; -pub use crate::types::_experiment_group_response::ExperimentGroupResponse; +pub use crate::types::_org_status::OrgStatus; -pub use crate::types::_group_type::GroupType; +pub use crate::types::_experiment_type::ExperimentType; -pub use crate::types::_bucket::Bucket; +pub use crate::types::_experiment_status_type::ExperimentStatusType; -pub use crate::types::_experiment_response::ExperimentResponse; +pub use crate::types::_workspace_status::WorkspaceStatus; -pub use crate::types::_variant::Variant; +pub use crate::types::_http_method::HttpMethod; -pub use crate::types::_variant_type::VariantType; +pub use crate::types::_version::Version; -pub use crate::types::_experiment_status_type::ExperimentStatusType; +pub use crate::types::_group_type::GroupType; -pub use crate::types::_experiment_type::ExperimentType; +pub use crate::types::_unit::Unit; -pub use crate::types::_dimension_match_strategy::DimensionMatchStrategy; +pub use crate::types::_context_partial::ContextPartial; -pub use crate::types::_experiment_group_sort_on::ExperimentGroupSortOn; +pub use crate::types::_dimension_info::DimensionInfo; -pub use crate::types::_version::Version; +pub use crate::types::_variant::Variant; -pub use crate::types::_http_method::HttpMethod; +pub use crate::types::_bucket::Bucket; -pub use crate::types::_webhook_response::WebhookResponse; +pub use crate::types::_experiment_group_response::ExperimentGroupResponse; -pub use crate::types::_workspace_status::WorkspaceStatus; +pub use crate::types::_experiment_response::ExperimentResponse; -pub use crate::types::_workspace_response::WorkspaceResponse; +pub use crate::types::_context_filter_sort_on::ContextFilterSortOn; -pub use crate::types::_type_templates_response::TypeTemplatesResponse; +pub use crate::types::_sort_by::SortBy; -pub use crate::types::_experiment_sort_on::ExperimentSortOn; +pub use crate::types::_dimension_match_strategy::DimensionMatchStrategy; -pub use crate::types::_variant_update_request::VariantUpdateRequest; +pub use crate::types::_context_put::ContextPut; -pub use crate::types::_org_status::OrgStatus; +pub use crate::types::_context_move::ContextMove; -pub use crate::types::_organisation_response::OrganisationResponse; +pub use crate::types::_update_context_override_request::UpdateContextOverrideRequest; -pub use crate::types::_function_types::FunctionTypes; +pub use crate::types::_merge_strategy::MergeStrategy; -pub use crate::types::_function_runtime_version::FunctionRuntimeVersion; +pub use crate::types::_stage::Stage; pub use crate::types::_function_execution_request::FunctionExecutionRequest; -pub use crate::types::_change_reason_validation_function_request::ChangeReasonValidationFunctionRequest; - -pub use crate::types::_context_validation_function_request::ContextValidationFunctionRequest; +pub use crate::types::_experiment_sort_on::ExperimentSortOn; -pub use crate::types::_value_compute_function_request::ValueComputeFunctionRequest; +pub use crate::types::_experiment_group_sort_on::ExperimentGroupSortOn; -pub use crate::types::_value_validation_function_request::ValueValidationFunctionRequest; +pub use crate::types::_variable_sort_on::VariableSortOn; -pub use crate::types::_stage::Stage; +pub use crate::types::_secret_sort_on::SecretSortOn; -pub use crate::types::_function_response::FunctionResponse; +pub use crate::types::_variant_type::VariantType; -pub use crate::types::_audit_log_full::AuditLogFull; +pub use crate::types::_default_config_response::DefaultConfigResponse; -pub use crate::types::_audit_action::AuditAction; +pub use crate::types::_dimension_response::DimensionResponse; -pub use crate::types::_config_data::ConfigData; +pub use crate::types::_context_response::ContextResponse; -pub use crate::types::_dimension_info::DimensionInfo; +pub use crate::types::_context_identifier::ContextIdentifier; -pub use crate::types::_dimension_type::DimensionType; +pub use crate::types::_weight_recompute_response::WeightRecomputeResponse; -pub use crate::types::_unit::Unit; +pub use crate::types::_context_action::ContextAction; -pub use crate::types::_context_partial::ContextPartial; +pub use crate::types::_context_action_out::ContextActionOut; pub use crate::types::_list_versions_member::ListVersionsMember; -pub use crate::types::_merge_strategy::MergeStrategy; +pub use crate::types::_audit_action::AuditAction; -pub use crate::types::_context_action_out::ContextActionOut; +pub use crate::types::_audit_log_full::AuditLogFull; -pub use crate::types::_context_response::ContextResponse; +pub use crate::types::_function_response::FunctionResponse; -pub use crate::types::_context_action::ContextAction; +pub use crate::types::_value_validation_function_request::ValueValidationFunctionRequest; -pub use crate::types::_context_move_bulk_request::ContextMoveBulkRequest; +pub use crate::types::_value_compute_function_request::ValueComputeFunctionRequest; -pub use crate::types::_context_move::ContextMove; +pub use crate::types::_context_validation_function_request::ContextValidationFunctionRequest; -pub use crate::types::_update_context_override_request::UpdateContextOverrideRequest; +pub use crate::types::_change_reason_validation_function_request::ChangeReasonValidationFunctionRequest; -pub use crate::types::_context_identifier::ContextIdentifier; +pub use crate::types::_organisation_response::OrganisationResponse; -pub use crate::types::_context_put::ContextPut; +pub use crate::types::_variant_update_request::VariantUpdateRequest; -pub use crate::types::_weight_recompute_response::WeightRecomputeResponse; +pub use crate::types::_type_templates_response::TypeTemplatesResponse; -pub use crate::types::_context_filter_sort_on::ContextFilterSortOn; +pub use crate::types::_workspace_response::WorkspaceResponse; -pub use crate::types::_dimension_response::DimensionResponse; +pub use crate::types::_webhook_response::WebhookResponse; -pub use crate::types::_default_config_response::DefaultConfigResponse; +pub use crate::types::_variable_response::VariableResponse; + +pub use crate::types::_secret_response::SecretResponse; + +pub use crate::types::_context_move_bulk_request::ContextMoveBulkRequest; mod _audit_action; diff --git a/crates/superposition_sdk/src/types/builders.rs b/crates/superposition_sdk/src/types/builders.rs index 5d03cd187..d92c6eb8d 100644 --- a/crates/superposition_sdk/src/types/builders.rs +++ b/crates/superposition_sdk/src/types/builders.rs @@ -1,61 +1,61 @@ // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. -pub use crate::types::_secret_response::SecretResponseBuilder; - -pub use crate::types::_variable_response::VariableResponseBuilder; +pub use crate::types::_config_data::ConfigDataBuilder; -pub use crate::types::_experiment_group_response::ExperimentGroupResponseBuilder; +pub use crate::types::_unit::UnitBuilder; -pub use crate::types::_bucket::BucketBuilder; +pub use crate::types::_context_partial::ContextPartialBuilder; -pub use crate::types::_experiment_response::ExperimentResponseBuilder; +pub use crate::types::_dimension_info::DimensionInfoBuilder; pub use crate::types::_variant::VariantBuilder; -pub use crate::types::_webhook_response::WebhookResponseBuilder; +pub use crate::types::_bucket::BucketBuilder; -pub use crate::types::_workspace_response::WorkspaceResponseBuilder; +pub use crate::types::_experiment_group_response::ExperimentGroupResponseBuilder; -pub use crate::types::_type_templates_response::TypeTemplatesResponseBuilder; +pub use crate::types::_experiment_response::ExperimentResponseBuilder; -pub use crate::types::_variant_update_request::VariantUpdateRequestBuilder; +pub use crate::types::_context_put::ContextPutBuilder; -pub use crate::types::_organisation_response::OrganisationResponseBuilder; +pub use crate::types::_context_move::ContextMoveBuilder; -pub use crate::types::_change_reason_validation_function_request::ChangeReasonValidationFunctionRequestBuilder; +pub use crate::types::_update_context_override_request::UpdateContextOverrideRequestBuilder; -pub use crate::types::_context_validation_function_request::ContextValidationFunctionRequestBuilder; +pub use crate::types::_default_config_response::DefaultConfigResponseBuilder; -pub use crate::types::_value_compute_function_request::ValueComputeFunctionRequestBuilder; +pub use crate::types::_dimension_response::DimensionResponseBuilder; -pub use crate::types::_value_validation_function_request::ValueValidationFunctionRequestBuilder; +pub use crate::types::_context_response::ContextResponseBuilder; -pub use crate::types::_function_response::FunctionResponseBuilder; +pub use crate::types::_weight_recompute_response::WeightRecomputeResponseBuilder; + +pub use crate::types::_list_versions_member::ListVersionsMemberBuilder; pub use crate::types::_audit_log_full::AuditLogFullBuilder; -pub use crate::types::_config_data::ConfigDataBuilder; +pub use crate::types::_function_response::FunctionResponseBuilder; -pub use crate::types::_dimension_info::DimensionInfoBuilder; +pub use crate::types::_value_validation_function_request::ValueValidationFunctionRequestBuilder; -pub use crate::types::_unit::UnitBuilder; +pub use crate::types::_value_compute_function_request::ValueComputeFunctionRequestBuilder; -pub use crate::types::_context_partial::ContextPartialBuilder; +pub use crate::types::_context_validation_function_request::ContextValidationFunctionRequestBuilder; -pub use crate::types::_list_versions_member::ListVersionsMemberBuilder; +pub use crate::types::_change_reason_validation_function_request::ChangeReasonValidationFunctionRequestBuilder; -pub use crate::types::_context_response::ContextResponseBuilder; +pub use crate::types::_organisation_response::OrganisationResponseBuilder; -pub use crate::types::_context_move_bulk_request::ContextMoveBulkRequestBuilder; +pub use crate::types::_variant_update_request::VariantUpdateRequestBuilder; -pub use crate::types::_context_move::ContextMoveBuilder; +pub use crate::types::_type_templates_response::TypeTemplatesResponseBuilder; -pub use crate::types::_update_context_override_request::UpdateContextOverrideRequestBuilder; +pub use crate::types::_workspace_response::WorkspaceResponseBuilder; -pub use crate::types::_context_put::ContextPutBuilder; +pub use crate::types::_webhook_response::WebhookResponseBuilder; -pub use crate::types::_weight_recompute_response::WeightRecomputeResponseBuilder; +pub use crate::types::_variable_response::VariableResponseBuilder; -pub use crate::types::_dimension_response::DimensionResponseBuilder; +pub use crate::types::_secret_response::SecretResponseBuilder; -pub use crate::types::_default_config_response::DefaultConfigResponseBuilder; +pub use crate::types::_context_move_bulk_request::ContextMoveBulkRequestBuilder; diff --git a/docs/docs/api/add-members-to-group.api.mdx b/docs/docs/api/add-members-to-group.api.mdx index 06d4dac19..ff9497db5 100644 --- a/docs/docs/api/add-members-to-group.api.mdx +++ b/docs/docs/api/add-members-to-group.api.mdx @@ -5,7 +5,7 @@ description: "Adds members to an existing experiment group." sidebar_label: "AddMembersToGroup" hide_title: true hide_table_of_contents: true -api: eJy1V91v2zYQ/1cIPW1AHHtZ8+I3J/XaYGsR2O7DEBgCLZ4tNpaokVRqw/D/vjtSsj7tpW3Wh1Si7n73/Tv6EAgwkZaZlSoNxsFECMMSSFagDbOK8ZTBThor0w0+ZKBlAqllG63y7Dq4ChQecdJ9EF77k9ddqA8kghIa/snB2Dsl9sH4EEQqtYhAjzzLtjJy2sOvhswfAhPFkHB6svsMEFKtvkJkEafp50Oa5ZYZq/PI5hrYWmnGhSA32953nc40uW0lGOdRzNMNhBp44UNhGcERrmN55uTqBm0MBkqz18HxKvDPYWU7lMLUoLnWfI/I0kJiuiaPbZt/YQWYWteDeXjvIxRiqCFRL0BvNpamDPN49LmXGrA0T60wz/m4vAqstFvoK+bMV/K+qOCxaQFLAXiQcc0TsKiFRg9Bii+IJQVFS6Fk3Mb43KlzFXob8gSyGyi9GVRQMXAB+ofBvin9bDIewU/gLenEZCo1vpduRiP6rzNTzUQyFGOlHtp7o5mYW54KrsUJuj0fr5kGTG9f3M7FnQ1jbuJeAZ/W/+rkPuTL41fZ7ksATSAh8+1jPYrOAM0gw6Rg2IYhWqnDUAI7VXKWGxAuR4UtlnAbxWj/mv0Je8MErGUKTFDqDOoyCtdgRgV74VucCmYyiOR6T2RQwdqYI1SOw7sigrCU7nK87ks/KESr+XotoxBDiNBLvqnnMs2peWhk+U4meRKMfxuN8E2m/m30BoxDacYSWBAht30kiMlJ6EsgUGhg0UZQ01nteyu35caGiRJyLb8TuKl5Bn6VR89gXxPmqWGazd5IV6+JF451PPe5xbBNtIZujVbvnNNO2Y1g6EG7iYGUivsUfJlPZ+H9bDpZTN/j8fzv+WL6Kfww/TyduaMatmOXBeG0fStT1Z63arpaM97oh0ahm7PViOLKE32n7D31PNeyBZP0jsTl5eQ5r7adMAXvRu+6fIyiKkfQz8r+oXIcYZSq6Bi1bvtY/AFxNZLGHPQL6KnWyBa3b8Tjza5EZjFNBqg1XJmAHnf6UkAafEO7OJhW3O8y5pY9klKshN/LEVXd7edxMKzKMnAFNsODFMchEu6guOnQooQoR67bu1VvEmnj/TXP5HVsbXbHjYwmOaE9LWnxtr8D16BPAssKbU558qk4j3nKDZ13VuHHxeKROWnGURyjKIpRbnfSXNF3qvcFz15jxolfsuMEXPWoFWbVhXi640m2hZ5baEUDZ5j9qZTA3OL1Za2cr0VzzHMUzpSRhSvYIcZ7fDO6uR2Mfh+MbilwFLEJd81ZXItwrlgxWGyhWHmJby3xU6N/9++FIpvEM8Nsy6XbfrneEqpvvTqPFq2HemNHLPXuw4aJ0X1SOBywlPBFb49HOsb0amrJZUHBK8oJNqiQhp6x29d8a+BCVL/MCur8lZ3zuVw46d4xPd4B8A0fn2Hv77tHKkxxpXxz695K7UJ88oAm7X8xVb8uN6x5gYJ0Bgu/B0qJDg9WGpMogsxelK0T1ONkcf8RpVfFD0lcJqSk+Tf6kYl/XfqVC9Jxhzs74OZJN7mj08CD0r9/AeddPLM= +api: eJy1V0tv4zYQ/isETy0gx26aXHxzsu5u0O4isL2HwjAMWhxb3EiklhwlMQz998VQkvWw7Gbb1BfrMfPN+xvqwCW40KoUldF8zCdSOpZAsgHrGBomNINX5VDpHYPXFKxKQCPbWZOlVzzgJgUrSPdBFtqfC92F+UgiPOAWvmfg8M7IPR8feGg0gka6FGkaq9BrD785Mn/gLowgEXSF+xT4mJvNNwiRBx0/H3SaIXNosxAzC2xrLBNSkptd70+dTi25jQqc9ygSegdrC6L0obTs0Cq9O7E883JNgxiBg8rsFc8DXlyva9trJV0DWlgr9jzgCiFxpybzrs2/lENmts1gHj4UEUo5tJCYZ6A7jJSrwszzIvfKguTjZSfMcz6uAo4KY+gr5qyo5H1ZwbxtAW0GecBTYUUCCNbx8fLAtUgIS0mKlkJJBUY8OK1zHXoX8gjyOjB2N6ihIhAS7L8GezH2yaUihP+At6InLjXaFb10PRrR38lMtRPJrkcjVunx4L1mYo5CS2HlEbo7H2+ZBiV74/YuvuI6Ei7qFSjS+k+d3Id8efxq230JoAkkZBE/NqM4GaAZpBYcaHQsNLrSYaFVCFYJljmQPkelLZYIDCOld1fsT9g7JmGrNDBJqXPKaEbhOia0ZM8izsAxl0KotnsigxoWI4EsyRyyDREEUrqr8bqv/KAQ0YrtVoXrFGwIGsWumUudUfPQyIpXlWQJH/82GgU8Ubq4G70D41CaLQgEuRbYR4JbYxN6w6VAGKBKgDd0NvveysXC4ToxUm3VTwK3Nc/Ab7LwCfAtYR4bpt3srXT1mngWVolzrzsM20Zr6TZo9c477ZX9CK4L0NPEgKbiLvnX+XS2vp9NJ4vpBx7w+d/zxfTz+uP0y3TmHzWwPbssCKfrW5Wq7rzV09WZ8VY/tArdnq1WFEFB9Cdl76nnuZYtmaR3JC4vp4LzGtspD/jN6OaUj2fgTGZD+GLwD5NpyW5GNzUd5wG/7WPxB41gtYjnYJ/BTq01lt2+E4+3uzIB59oM0Gi4KgE97vSlgDTEjnYxn9bc7zPml30CGBlZ7OWQqu7385gP67IMfIHd8KBkPhRSDsqTDi1KCDOrcO9XvUsURvsrkaqrCDG9E06Fk4zQlitavN33ICzYo8CqRptTnopUnMc85oaen6zCT4vFI/PSTGQYgcayGNV2J80Nvad6X/DsLWa8+CU7XsBXj1phVh+Ip68iSWPoOYXWNHCG2ZeVxCqn48vWeF/L5phnKdjUOFW68gzWFR5fj65vB6PfB6NbCjw1DhPhm7M8Fk2kZOVgsYVh1SG+s8SPjf7T3wtlNolnhmkslN9+mY0JtWi9Jo+WrccDPvbE0uy+VcAj45AUDoeNcPDVxnlOj79nYKklVyUFbygnywOXytG15OOtiB1ciOqXWUmdv7JzPlcLR+8908cZ3fGAP8G+OO/mVJjySPnu1gsrjQPx0QOatP/FVPO43LJWCJSkM1gUe6CSOOHBWmMShpDiRdkmQT1OFvefeMA35YdkYiQpWfFCH5nipUi/8UF67vDPDjwWepd5OuUFKP1+AOddPLM= sidebar_class_name: "patch api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/applicable-variants.api.mdx b/docs/docs/api/applicable-variants.api.mdx index 610be7d9c..6cd852dc8 100644 --- a/docs/docs/api/applicable-variants.api.mdx +++ b/docs/docs/api/applicable-variants.api.mdx @@ -5,7 +5,7 @@ description: "Determines which experiment variants are applicable to a given con sidebar_label: "ApplicableVariants" hide_title: true hide_table_of_contents: true -api: eJzFV1tvGjsQ/iuWn3qkkKBUeelbmiI16iURoVUlhKJhd2Dd7sW1vQSE+O+dsfcGbGh0TquThwTsuX7z+bOzlTHayCjtVJHLN/IdOjSZytGKp0RFicC1RqMyzJ1YgVGQOyvAoACtUxXBPEXhCgFiqVaYi6jIHa7dmSgtxmJRmK4/riAtgRMJyOM6nLCYYsSr5/JMFmTtTW5jqua6SfK1yk0mBn+WaN3bIt7IN1vpU+aOP1Y1sfvFd8v9bKWNEsyAP7mNRopZzL9TOoqjDSdzCm0TZu36DCGOFceE9L7rsjs7wG6M2qBFRoii1T6CLAhTBS0mVS6RgYsSlS/PxQfcWBHjgoAXMaNlGaUcMppDwCqlnoXVGKnFRrgE27AuAQpVWifmKDJ0DKNTLuUebuo65G4XkFMGCdlp0++sNT5Gexygvqkg3u0HcaZEWtBgqE6qhUCZbiUXTcFUTB5qodBQOYrhoVBmQ1+OJmKdIRBkT+wmGgG7UOujSG7jCydMs77AYAywHQGV2Z6ElJHomRYxHiVcDwqzHKi4TpkgxL6Vf1P9evBUmB9WQ4T/Id6MV6wuchsYezkc8p99Dh7PUJCdqB0p4R86LzG4l0D9jDcB29dxJQmPYePQgKaVlxmT9+bu82R895FWRt/uR+PbT6PPk+uPXS5X3U84wO6sZvvjM3mLFRpDjP3dfm9nL5UHOkULtSyDvIkmZDi/BnVK9GANgDJ19YF/SlpRbUUlKDAf9SAcphYeNunk+MGbHflgL5aOOrfgIXbl4q7p81Au/EloYTgY1THwh1oxDYT5jdoEknbkhmJc9dH8liwMIf6AhmoaGUOqevVXeE4KbGHZw0aure6lp5y+ZtgDliyTctRci74sBobmmRR86+nC+jrAJfTtor1B7UV76w5W7Y1oMSrpNth4/bWZcsnmHLQ6T5zTb8Gq6LrkUNMZa9LhPhIrTGMwa6M9MEIBhOdjNqjwujyk/PvJ5F54awFkzjdCGEMtfOw5530+ZScqe0kab34qjzfwc2MSjNtnxGgNmU5x/xnAdipfFD55NeeHkkZB41FVbBq2DSVcDi+vBsPXg+EVd8ITzMDzrLoCWraLzlNmr43OU+Z/f4ZVaHOQCxImurKoq9KkXGXg5VR2eMkq2MNMIlPCXCbj7ZbGjF9MutvxcrjBma6xsuxEvF9AavEEJq/GlZr8I56rkATv8OnhpY8WJXP/KFlwaF4XrfGsUrg5z50PTn1j/6WaO++N0xX/iVTd18hetmBQSdbAX56txZGKth7XUYTanbTtCtz93cOEjOfVCz7zDzBp4Ilf9/SbquH/BPxVxwZ+bStTyJel12IZYvLPL3ImezA= +api: eJzFV21v4kYQ/iur+dRKJkGp8sXfcilSo14vEaFVJYROgz3gvdjrvdk1ASH+ezV+Bxwuau9UvoDseX322WeGPcTkItbW69xACL+SJ860IadeEx0liraWWGdkvNogazTeKWRSaG2qI1ympHyuUK31hoyKcuNp6wNVOIrVKue+P20wLVASKTRxE045SimSp1cQQG6JS5OHGEK4a5P8VeeGAJi+FuT8hzzeQbiHMqXx8rOuSdyvvzjpZw8uSihD+eV3liCEfPmFIg8BWJZkXpNrw2z9kCHGsZaYmD71XQ7BCXZTskyOBKEoN42Pilh7Yo0dJnUulaGPEm3WV+p32jkV00obUrGg5QQlgxm5Gqu0IKecpUivdson1IX1CXqVFc6rJamMvMDotU+lh/umDjgcKuQ0UwzhvO130Rmfoz2toL6vIT4cB/Fc0CEAi4yZ0MZBON+DFA0h6JiM1ytNDAFogedrQbyD4PxEnGdt1jAQu41mmVZ6exbJ78rCVzlnQ4GRGcVOe8rcQMJDALS1aR7TWcLtKOf1SMdNyoQwLlv5N9VvR685vziLEf2HeAt54mxuXMXYm/FYvo45eH6G6mY8Vo0jBN/rvsTo3wP1G946Huy4loTP1YtTgwDIFJmQ9/7x02z6+BECmPz9NJk+/DH5NLv72Ody3f1MAhyChu2f38ibb4hZx/St94OdvVce7nOz0uuikjfVhqzuL5NNMSLRACxS31z416QT1U5UKgWWq14JBzfCIya9HC/ysicf4iXS0eRWcoh9uXhs+zyVi/ImdDCcHNU58KdaMa8I8w21qUjak5tDALdDNH8wnthg+ky8IZ4w56xufwjPM3IO1wNslNqaXgbKGWpGPHAtMgmTdiyWZQkwGfkkl6lnc1fWgT6BEK67Cequu6k72nQT0VFUsPa7Un9dpn2yu0KrrxLv7Qd0OrorJNR8IZp0+p6QiVuDRRftWRCqQHg7ZouKPIdTyv82mz2p0lph4ROZCNUxNMInnkt5L7fsQmXvSVOaX8pTGpTnJiSYdmvEZIuZTel4DRA7bVZ5mbw+5+fCEtvc6Tr2hthVJdyMb25H419G41vpRE4ww5Jn9Qjo2K56q8xRG71V5n9fw2q0Jci1TVEb6argVKqseDmHHi9FBQeYuQggES6Hc9jvl+joT04PB3lcTXCha6ydOMUQrjB1dAGTn6a1mvys3qrwhXanq0cpfRACCPfPklUO7XbRGS9qhVvKucvFaSb2D6q5t29crvh7pOpvI0fZKoNaskbl8OwszlS087iLIrL+om1f4J4en2cQwLLe4LNyAQPGV9nu8VWqkX8C5agTg/LZHlI066LUYqhiyucfciZ7MA== sidebar_class_name: "post api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/bulk-operation.api.mdx b/docs/docs/api/bulk-operation.api.mdx index 42c0ce92f..6639b5963 100644 --- a/docs/docs/api/bulk-operation.api.mdx +++ b/docs/docs/api/bulk-operation.api.mdx @@ -5,7 +5,7 @@ description: "Executes multiple context operations (PUT, REPLACE, DELETE, MOVE) sidebar_label: "BulkOperation" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "put api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/conclude-experiment.api.mdx b/docs/docs/api/conclude-experiment.api.mdx index a32a3fbb6..bdea9780a 100644 --- a/docs/docs/api/conclude-experiment.api.mdx +++ b/docs/docs/api/conclude-experiment.api.mdx @@ -5,7 +5,7 @@ description: "Concludes an inprogress experiment by selecting a winning variant sidebar_label: "ConcludeExperiment" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "patch api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/create-context.api.mdx b/docs/docs/api/create-context.api.mdx index 093309c00..960d90f4a 100644 --- a/docs/docs/api/create-context.api.mdx +++ b/docs/docs/api/create-context.api.mdx @@ -5,7 +5,7 @@ description: "Creates a new context with specified conditions and overrides. Con sidebar_label: "CreateContext" hide_title: true hide_table_of_contents: true -api: eJztWE1vGzcQ/SvEXtoCluy68SW3xE2QtGhi2Ap6MAyD2h1pGa+WW35YVgT/974h91NaOy6coEBRH2yJnBnOvJl5HHqbZGRToyqndJm8TE4NSUdWSFHSWqS6dHTnxFq5XNiKUrVQlPFyplgBcmUm9C0Zo2BnKk6jghUZLVRJnaQshPEFDC+04dWFWoqVLOWSVlS6aXKQ6IqMZNH3WetHbQ67hv7yZN1rnW2Sl9skOFY6/iirqlBp0Dz8bDmIbWLTnFaSP7lNRTCn558pZTuV4XOcItuauXNjgjJrHD/rq9wf7AB2TpUhC1/sIFhIODJKCm8BWB10wHIlXZqrcjkVv9OmBSpTwMFCV5RyRRHXW1kg5hr3jXA5dWZdLmHKWyfmJFYUEHTKFRzDaeNHAm+b5DwnxtOQLx/T06U7OmGoKmRKHIj0hWu8XudUtjH3C8ZEf2P0pkGvronmjBve7GHAWhx/c7bIpJP9mD82TiW73rdhW2cAO++nuSyXdI0Ss6MS97HelCGU4uWO+EFbNT1wrwbo8+6ZdzA0sOSMJyxU0iDFSCOwvtwmnG+o3U0iAhMnlxamFQOfk8zI4NteQXeu9ixos5yo7OnK+871jK21ubEVMvsMe1e8YivkPfbb8dER/xmjnBo2ARHR6DRYP7/RgcqYu6G6/u/+/1b3N1LXDyR9TWqZu/2t3bjPjNIAfCOiQsyl0wgVSVhx2oJPBk0h9KKNltjpEMdUvIMidqMBICZvSCDklDIqGTTPB+8ED0R04YP+t+AySIT+yq7laMwozhXvJMCUJg6F2NeZb0ZNFtK665XOwjjwjwwPNUfNf419u3AGfg6hOkgCEe45OuJBr0uGxdPwQ1syfZbvk9Z5zVenNVndB+J/cfRin+wgqr1J6YN2b7VHiUOq4ztonYxR5HvYNWjUCzLw740xYJST70KUYB+LoWw8LU3wI+6MQ3Dy8/F+MH/SPNf65q1UBRoKIt8kjF3AMlZtWCo0ajNfCuvTlNCCmZj7uLeOLolUFoVYBMemYoaNxjMxx+AZWlyq0gadYMXahS9YCtx30JpLC8WkZnPti4wpWq4jhcGV5qhSO1RgDA/8n/ECDlhVBehlupcXZrx9KGdDP7oQo0f1icGLXN4iCiLec96UiD5M9e9mszO+dA+E5aulUF+wI5l+hS8Z5OzQyLX47eLjB5Hp1IdxPWCDwvApTJEo9FIxdIyQiZBllqlygPsPFjGCE+CndxVDBesRNGUFOpKKePSv9THCKmZJl2MbH5cFCQqlz99zIArp1GgLZQSrgFx3mI3RocsXZNhWfSb0KjxU9lgm4Nvr70GRjhU3twNPatBtRpc/2vcMW8I1l2t+yuBYTqd0Ob4cdsOjpdTz/RKmQLuCu5uprNQ0d656La1KX3lWubzisWx3nxC+aQWuOmsX3CGxZh622bYPr+81TyiJIC0kxBFPXafN7Meac95nwnrEs6ccE8QfOycIhHwxCZx378A3d5K7ZfiOG848e7NMezvtXJu9u02VCx1cryvhwqOmKm1V7Rms22js+Oj4ZHL0y+TohPUg4vCiZdV6ho53RPMm3o2/94j9F1/ddYJY/RCTnApTozcF+xdL9rJFF1WWI0he2m6Rf/pkivt7XkZODNfxFV+ZYJE5I8eF2zwauMQzZXkDLbGQhaVH4HjIL8yFIy+leohPEu6Tpx/y43nd/j+Jr53Xvqu+/1H9V9fgtChQM9BkxjY6ib2rstN4hduhco/K9snq7NMMsvP63yxMyljEBcD/gsHvkBsdQgwUE9a2mKnKpQ9jQxJN8s/fpv+GSQ== +api: eJztWEtvGzcQ/isDXtoCK1lx7YtuiZsgadHEsB30YBgGtRxpGXPJDYe0rAj678VwH1pJayeFExQo6oslcp4fZz4OtRYKKfe6CtpZMRVnHmVAAgkWl5A7G/AhwFKHAqjCXM81Kl5WmhUIpFXg7tF7rZDGcFYrECica4tbSWnAR4MEc+d5da4XUEorF1iiDWORCVehlyz6TnVxNOZEJjx+jkjhlVMrMV2LFJgN/FFWldF50jz6RJzEWlBeYCn5U1hVKKbCzT5hznYqz36CRurMPIQhQanawM/7KptsD7ALrDwS2kA7yeZeB/RaQiRUbdIJy1KGvNB2MYY/cNUBpXSJlrSzYGWJNa730kSkBvcVhAK3ZkMhA5SRAswQSkwIBh0M53DWxiE2mWgP5zk5nqXzivXxbI+7DsJjZWSOnIiMJrRRLwu0Xc79gvF1vHX2vkWvqYnWxx1v9jBgLc6/9Q1KBtnP+UMblNiPvkubgtd2wft5Ie0Cbz1KGpTY1PWmPSoxvd4Tz7qq6YF7s4M+757HIDa7loKPuMlEJb0sMaAnMb1eCz5vMRUPoxqBUZALEpnQDHyBUqEX2WFBb0PtWXB+MdLq25UPg+sZWzp/R5XM8Rn2bniFKmep7rfjyYT/DVFOAxscTybQ6rRYP7/RtRoMN1XX/93/3+r+Vur2kUNfol4U4XBrP+9zr53XYQW1Qn2WwYHi3i352FJMXqEHN++yRQ465TGGt3pRoG8MEAR5h1B5zFGhZdAiO95L3iM5E5P+9+CyTOSpv9StHMx57nzJO0LJgKOgS+zrzFaDJo2kcFs6lcaBf2R4V3PQ/NfYd5vOTpy7UGUiEeFBoAMR9Lpkt3hafuhKps/yfdK6aPjqrCGrTSL+k8nJIdldILnoc3zvwhsXrYKTycmW7zaZOB2iyHc2oLfSXKK/R//ae+fh9IcQZYlEcoHDx9ImPxDOMASnL44Pk/kLZ4Vzd2+kNqjg9MXxd0ljHzDFqi1LpUZt50ugmOeIChXMYr23rEOCXBoD8xTYGK4K7CKDmVOr1OJSW0o6yQrRPBqWiiZknbncaCY1Klw0iilaLmsKk6FzZV3Q8yY9UFrxAuSurAwGHB+cCzPeIZRXu3FsU6wjajymKAp5jzBD5L0QvUVVT/Vvr67O+dLNgPhqMfoLKpBMvxAtg6yOvFzC75cf3oNyeUzjesKGgo95iB7BuIVm6BghX0OmiKlyB/efCCxzggEXQ8VQrSqsQdMEpVNoate/NW6ANLNkKDTxx4VBwFT6/L2QnqVz74igjCboyvScUZ2d0vM5erbV+KRCVkjjA5ZJ+Pb6e6dIh4qb24Entel1O/HBn917hi2VGArHT5kqpjaToRBTcbQdHgnzyPdLmgKp1KFYjWWlx0UI1StJOn8ZWeX6hsey/X2UHn0ncLO1dskdUtfM4za79uH1g+ZJJZGkQcZQoA1NnbazH2vOeJ8J64nIvsVNEn/KTxJI58UkcLF9B75+kNwtu++43ZnnYJbpbqe9a7N3t2k7dyn0phIuY4W+cqSbyO7RU23seHJ8Opr8Opqcsl7lKJQysVQzQ9d3BGwfsXt3ecd1/+KruzkgVj+qjNRpaozecHx1yV536N5konAUeGm9nknCj95sNrz8OaLnOr7hK9NrOWPkuHDbRwOXuNLEG0pM59IQPgHHY3Hd4WrgpdQM8UJwn3y7k58vmvb/Bb7mr3tX/XhX/VfXjrdaoGGg0RXb2EocXJVbjZd5jlV4UrZPVucfr0QmZs3PLEzKYiq8XPJPMHJZn41LKSaKSWtrYaRdxDQ2iNok//0Npv+GSQ== sidebar_class_name: "put api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/create-default-config.api.mdx b/docs/docs/api/create-default-config.api.mdx index 2a0f83b44..a3635883d 100644 --- a/docs/docs/api/create-default-config.api.mdx +++ b/docs/docs/api/create-default-config.api.mdx @@ -5,7 +5,7 @@ description: "Creates a new default config entry with specified key, value, sche sidebar_label: "CreateDefaultConfig" hide_title: true hide_table_of_contents: true -api: eJztV01v4zYQ/SuELm0B20lT5LK3bHbbpocmSFz0EAQBRY0tbiRRJal1XMP/fd+Qsi3ZsreLdoEWaA6JIs7Hm+G8mdEqycgpq2uvTZW8Sa4tSU9OSFHRQmQ0k03hhTLVTM8FVd4uxUL7XLialJ5pysQLLUfioywaGgmncirlSMgqEyV5mUkvJ+Jdz4oTjuxHEtKJmSyKVKqXqO7EIqdKVGZjXLGGp1cvSulh2U2SUWJqspLB3mRbuK2D62AfMpb+gDn/1mTL5M0qCVYqz4+yrgutgv7ZB8cRr5IImp/8siYYNekHUh52asvevCbHpwi0I+S81dU8WY+SAB4neDxuSmaZZq+yuOsahU4//z9RRRaRw9k4GBbRhIC/RvnGkmgcsj4zVswKetVpQYLTLCzVlhziDNEJn1vTzHPTeDySuLq74ex57QvGdRtx7bsfiE7lsprTM/LsjkgEmM/4rbPg+nnWVCo8VLKkEyrKlHXj6bPy63ij2hKu/HEPUT+CUbil7UVsLudpF/lAxdzHcrluy2Tdd4i8E17U0gKdJ4tre1wlEWryOjZ2PtYZPGm+vpxkRjYZqIRd8PumO8YWxr64Wir6G/ae+I2rTeVi2V6cn/OfIZr3siAgKDaa8Pg/a/7brAGIcMnZs/SHx6MEuSj5JIF/GnsNIx2ddPjWCun8c2my0Pq/yHBfc9D8Z3jeCaeHc7gDHCAdgPDFfSKSo9MoAPlyiF83kLAo2wcedfa9tSi8y6/Cr5Kck/MjbXMTzACcI8F8f3EYzO+U5sa8/Ch1AQ5B5B8JYz9hGatiCfC5jOTbTnrhGqWIMjhPW2IuIiShsEFgjWBgEzHFwQaZSDH8w/4gdeWCTrDi3KwpWAq3OtqaU4VGDMKB+AWcYDlZSPSMAGXjqjKed5KIKNMZvxBMxgJTYXJwL9xdDlM57ePYhRgRtR4DilxiSUqJ+AwdrEL0YfP6eTq941494j1Ko3/8iRMsU7ISTcVJzs6sXIhfHm5/FZlRTYnIYm52zbAwc82p4wzZmLIMSTL9vH/jECO4DJyNrzlVsB6Tpp0AkaiIrt+1boTTleK04RiPczRZCqXP/+fIKKSVNQ7KCFYjcztnLkYHcs7Isq3WJ/Rq3vz2u0PIb4evvSIdKm6mg5zz9E42C2mkdRMBsDEM+NzwXlkbF6gmfY7/zto9eKw2G6Yj1Vjtl2EXcCWQLyey1pPc+/qtdFpdNaz5+MTjff+ckAm7FXjaWXtgssTyOW5zyyR+f8CjUB1BWkiII/i2ZDfNjjVTPuemfALZX3ETxE/5CQLh6rgf3O/W8vevkomzXRB202NoLziY91vpvTm7Z+bEeN2XPDJVO6NPVzMT0tIW3EOD0kWd6DZqNFYX0V2cX1yOz38Yn1+yHpdSKUMzbG3G0SL6Vbif4s5ny7//o6wtFX59VhfouBx4YwsOI3IIhO1zCGWfM8lwslqhIOk3W6zX/BpFYplYT3w36HApp5uZtNmGmXOZdnwArgKvoxPJ+/a+7RrfiWNIYwl2dvm2CJOE6ftVXHU3/Z63KNA2rvGUbewkDibsTuMKQ6X2J2W7De7u9mEK4bT9ROZmjrcYHPz5jN9Aw9/aoTOzQHi3wgpVzZuwbiTRJv98Ars1xXs= +api: eJztV0tvGzcQ/isDXtoCK1tx4YtuebVND40Ru+jBMIxZclbLmEtu+LCsCvrvwZCrt6w0aAO0QH3xajmPb4bzzcwuhKIgve6jdlZMxGtPGCkAgqUZKGowmQjS2UZPgWz0c5jp2ELoSepGk4IHmlfwiCZRBUG21GEFaBV0FFFhxDN4s2MlQCD/SIABGjSmRvlQ1APMWrJg3cq4ZI1ITxE6jLKlcCYq4XryyGDfqTXcwcHrbF9UwtOnRCG+cmouJguRrdjIj9j3Rsusf/4xcMQLUUDzU5z3JCbC1R9JRlGJ3rO3qCnw6QPNt4RC9NpOxbISGbyYLJbVCVOolGavaK62jS6rvfz/TJa8lpzVUTYMxQSE6JOMyROkQAoa56Ex9KRrQ8BpBk+9p0A25uggtt6laetShNgSvLx6x9mLOhrG9b7g2nd/JDrZop3SvScMz0hkmPePaLTKru+bZGV+sNjRCRXpuj5F+qL8styo9qTE5HYP0W4EVb6l9UWsLuduE/mRivlQyuX1UCbLXYfRJ1pWokePHUXyQUxuF6JAFU8j56cjrUQlNF9fS6jIiyOVsAl+3/SWsZnzD6FHSX/D3h2/Cb2zoZTtxXjM/47RfCcLcDEew0pTVP+z5j/OmkrIfMnqHuPhcSUa5zs+EQojjaLuaFunPn5rBkO875zKrf+rDO9qHjX/BZ5vhbOD83gHOEB6BMJX94lCjq1GsazE5TF+vbORvEVzzaPOv/Xeebj8JvzqKAScPtM2V8EcgfNMMC8uDoP5g+rWuYefUBtScPni4h8JYz9hilUpQGyxkG896SEkKYkUKagHYs4KJJBoDDQZ2BnctLRGBrVT87w/oLYh62QrITTJsFQysVqbk0aTjRBal4yCmgBn6KlAWbmyLvJOUhAprfgFMBkNRTo7uBfuLoepvNnFsQmxIBo8ZhQtPhLURHwWk7ekyub1y83NFffqivcojUb/SYqXKbSQLCdZnXucwa/X738D5WTqyMaSm00zNG6qOXWcIV9SpgJEt5v37wJY5rIBl2LPqZr3VJKmA3ROkSmu3wxuIGgrOW068OPUEFAuff7domdp6V0I0CUTdW+2nIUSndJNQ55tDT5Diz1vfvvdIed3i687RXqsuJkOOOXpLVYLaaF1KgDYWEexdbxX9i5kqmFsxUScD3vwSK42zEAyeR3neRcInY7t/Ax7fdbG2L/CoOXLxJq3dzze988JPfm1wN3G2jWTpZTP8zbXTOL3BzzK1ZGlAVNsycahZFfNjjVrPuemfALZX3GTxU/5yQL56rgffNis5W+fkImzXhA20+PYXnAw79fSe3N2z8yJ8bov+cxU3Rp92jYup2UouOvUk+9d0EPUj+RDQXcxvrgcjX8cjS9Zj0upw9wMB5tltMBuFe6neOuz5d//UTaUCr8+7w1qy4EnbziMwqFbscehu0q0TLLJrVgsagz0uzfLJb/+lMgzse74brzGmtPNTFptw8w5pQMfKDFp0AQ6kbzvPwxd4wd4Dmkpwa1dfihCIZi+38TV9qa/460IDI1rdMM2NhIHE3aj8VJK6uNJ2e0Gd/X++kZUoh4+kbmZi4nwOOPPZ5wxGv7Wzp2ZBfK7hTBopymvG6LY5L/PuzXFew== sidebar_class_name: "post api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/create-dimension.api.mdx b/docs/docs/api/create-dimension.api.mdx index cebbe1509..99a01eb84 100644 --- a/docs/docs/api/create-dimension.api.mdx +++ b/docs/docs/api/create-dimension.api.mdx @@ -5,7 +5,7 @@ description: "Creates a new dimension with the specified json schema. Dimensions sidebar_label: "CreateDimension" hide_title: true hide_table_of_contents: true -api: eJztWFtv2zYU/iuEXrYBsZNlyEvf0jRLM3Rz4LjYQxAYtHRssZVJjaSaeIH/+75DybpYctJiK7ANzUNgk+fO852Ln6KEXGxV7pXR0avowpL05IQUmh5EotakHW7Eg/Kp8CkJl1OslooS8cHh3MUpreVYvNlROpHQUmkSMeSsjFWxzIT03qpFwYILB9alsSI22tOjHy0kn+DbUq3EWmq5Iojy4+goMjlZyYZdJ7VptSLcW/qjIOdfm2QTvXqKgkTt+aPM8wyamfeY7eSz0lT+5Dc5QaBZfKDYQ05uWZNX5Pi2drpF6mC/XkVb0BqnfPdSF+sFWb48rEImSWCT2U1bGXi68b8iTYiZ+Eib0SeZFSRKEQIWFLEvLDURXGb0qBYZiUR6KSzllhz8D17jrawpVqkpfHi285trjqhXPmO7JqVdUB+UzPFfJYFxvix0HD5ouabBEHQsHriPU6lXNMdzuQMUdYjn5dVTZDRNltGru37kdiZPL6/evzuf9p5rdz4Q9B3re63g67ZMGGUJ2XRX891vjw5zvptcnL+bX0zeTqaznubOZd/NPX0d6meVTi9/ncwuD2nt3r6otkt+v71v9NRQmrGEOhdis84B1RcTYU9R99W7WdJ68agFoRowLaP2UD4tIX5RQXvb1QpMEGNSWpjoybqQQaW90ePI2NVIJVCjGFopyQQwHUBpk5j7olvCHoz96HIZ09+Qd88nLkeVLN/y9OQkVJyBElxHQIBI7Lig7VuV+69UuUw6P1+bJLTLufR9oqMIHq75JoJdNPJ4lD7nYjNsQMiTLxO84zkgMqGcdEI63sxXVubpF7zxjk5aKzcMEU9rN1w16vpTa7sKyr41hv9HYziKMMYh7YxtZ9nCmIykfrFvtNK6k68D2flck9nLpAE0DsCsbfmX9qmyQLcaFfw8G6rv16CwgM8t2U9kL61FkTv7KjV+Tc5hnH4ehQPmHHDmx9O+M7/TIjXm489SZajXIPlH3NgPWMKsWB58KstCX28GwhVxTJRA+aJqAg+lSVhAskwsg2FjMcPFzjKxwMIQ9g+ptCu3Gpbi3LLImKrI/FEtLs4UfBAOTSaDEhLyQaI/BVN2qrTxyKHSPSxNCR8IhkuGqWTc773oZP1Qzrp2NC6WFlUagxWp/AQviPgO3VLD+7CgvZ3NbnheOBIO/RXd7k/cSGxzWhSag5wcW/kgfrmd/CYSExdh0QqxaRpvZla8s2UcIVuGLEGQTDfu3zn4iA4DOwufc6ggvQyacgKYoqxU/aZSI5zSMYcN1/i4QkOnkPr8PUVEQR1b48AMZxUi1yhzpXfA6ZIsy6p0gi8nN+6VlBDfFlY7STqU3AwHueLpsal9jiVgqkwNL5+oBQFf0qMpRsftSuMoLqzym9Ck3BqWbsYyV+PU+/y1dCo+L5jpLpT2/XuC57YmuG+k3TI4ynQ5LLNGDp/3cBOyIVALCXI4W6XorqCFssz3Yao7bNnnqAnkz+kJBOGpGP/TZnW/fJQMlL2htJlkmln0pDV7fsZQ14joGlwf741wLfreGNIME9uX+mGrDyq9NCF8VSLeFkjpVltBwa28PT05PRud/DQ6OavGb49OxKyVzLLdiPavH3sDal1s/12/4VSZw2THeYaCy/4VNmOTSzTdtZ4dAEgZaTh8emKp72223fIx0oXHibt7jj5q24IDypja7WGMvkQ5vgBglzJz9EyMvp9W9eIHcchILCfdLTK8Oo4iBvJXUdXeMTvaSoKqZI1m5USzo+j11objHO0k98/StqvczeSW58pF9YMal3GcomXwj234D2v4V7lQk5kgnD1hjtKrIgwaUSmT//4CY9wlBw== +api: eJztWN1v2zYQ/1cIvmwDZMfNkBe/pWnWdujmwHGxh8AwTuLJYkORKj/ieIH/9+EoWZb8kbTYCmxD8+Twjnc/Hu93d9QTF+gyKysvjeZjfmURPDoGTOOKCVmidtJotpK+YL5A5irMZC5RsE/OaOayAksYsjdbTccE5lIjy8Dj0liZgWLgvZVpIMPBoWC5sSwz2uOjH6RAK5nRuVyyEjQssUTthzzhpkILBOy9aKG1jnjCLX4O6PxrI9Z8/MSjRe3pJ1SVklnce0Y4aa2GSr/8ukI+5ib9hJnnCa8sefISHUnbQ3dUnbdSL/km4ZVx0veFOpQpWhKedgFCxG2gbrrONsle/N+iRiszdo/rwQOogKw2wZy3IfPB4i6CucJHmSpkAjwwi5VFh9rHUzNfWBOWhQk+XtvlzXuKqJdeEa5JjWuT8Ohk8QBKirhxkQedxR8aSjwagh7iI/KsAL3EhUVwJzTaEC9q0RM3Gic5H98dRm4LeXr99uOHy+nBdW3XjwR9u/Wjlp5vNnXCSIuCj+/affNNcnrnh8nV5YfF1eTdZDo78NwTHh5zz19P+1mn0+vfJrPrU1770hfd9tXnm/nOT0ulGVlocyEzZRU8vpgIe476t97Pks6N8w6FWsJ0QO2xfFpT/Kqh9qbv1duAxEmwUKJH62IG1Xj548DY5UAKnnBJ1CoQBFp+hKW7xNw33TG2MvbeVZDh37A3pxVXGe3quzwfjWLFOVKC2wiw89GIbXfx5HuV+89UOQXOL0ojYrtcgD9USnhubEkSLsDjwMsSD3em6+MAYp58neHtnhMmBVaoBepsvVhaqIqvuOOtHlgLa6KIx9Idrxpt/Wm9vY3OvjeG/0djSHgJWoA3tptlqTEKQb/YNzpp3cvXI9n5XJPZy6QjbDxCsy7yr+1TdYHuNKpNwi+O1ff32qPVoG7RPqC9ttZYdvFNanyJzsHyRO/eHuQInBOHeXV+eJg/MC2Muf8FpELBLl6d/yPH2A+YoK3omC+gLvTty4C5kGWIAgVLmyawqiGxDJRieQQ2ZLMCW2QsNWId3x8gtatfNWTFuTwo0grKJ625TEnUnrnCBCVYigxWYLGGsnWljZd5czwmpKAFRnRR6HF42HvBw2EoZ30cuyPWiBqPEUUBD8hSRJL5YDWK+oH2bja7oXkhYQ6tBCX/RMHAMdAsaAqyOLOwYr/eTn5nwmQhPrRibHaNV5klvdkURcjWIROOedOP+w+OaeowipngKwrVusI6aNKx0ghUtes3jRvmpM4obNLRz6VChjH16f8CLGln1jjHyqC8rFTHmatPJ2SeoyVbjU9XQIVueFBSYnw7XO0l6bHkJjrAkqbHXe1zZKFEXxh6fFbGRX6BL/iYn3UrjcMsWOnXsUm5UvpiPYRKDgvvq9fgZHYZaNNdLO37cgSLtlWY76zdEjnqdDlts2UOrR/wJmZD1GYQfIHaNym6LWixLJM8TnWnkX2Jm6j+nJ+oEK+K+D/dPd2vH4GIsjeU7iaZ3Sw66syeXzDU7Uz0AbfLeyNcR/9gDNkNE5uX+mGnD0qdmxi+JhFvQ4W201Ye0DanPR+dXwxGPw9GF8347UuIRbKxWbcb1v36sTegtsX23/UNp8kcUjurFEhN5wtWEeSaTXeda58nvCCmje/40xNZ/WjVZkPLnwPSOHE3p+hbCSkFlDi1fYcR+4R0JBB8nINy+EyMfpw29eIndgrkPa77r8h463zMORH5m7jqvjF73mqFpmQNZvVEs9U46K27HZdZhpV/Vrdb5W4mtzRXps0HNSrjfMwtrOhjG6wIDX2VizWZFOLaE1eglyEOGry2SX9/AWPcJQc= sidebar_class_name: "post api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/create-experiment-group.api.mdx b/docs/docs/api/create-experiment-group.api.mdx index 5532c8c50..f7a28c7db 100644 --- a/docs/docs/api/create-experiment-group.api.mdx +++ b/docs/docs/api/create-experiment-group.api.mdx @@ -5,7 +5,7 @@ description: "Creates a new experiment group." sidebar_label: "CreateExperimentGroup" hide_title: true hide_table_of_contents: true -api: eJztV0tv2zgQ/isET7tAnLhZ5JJbkhptsK/Adg8LwxBoaWyx0YNLUokNw/99Z0jLomTZm0W2PbWHNCFnvnl/Q215AibWUllZFvyWP2gQFgwTrIBXBmsFWuZQWLbSZaUu+QUv8UiQ9GNykB8d5D6RGEpp+LsCY+/LZMNvtzwuC4u39KtQKpOxQ7j6asjolps4hVzQb3ajAGHLxVeILeK0vXssVGWZsbqKbaWBLUvNYvJAFqszLitNTlsJhkwUIofAFKKhNt91bPXcx6koVhChPdMn0XV27OTaPtpUmh4XCZwytLZ9ORBJIglTZE9hIF2P0aDSYBDWMESrddC4tGhPsMpA4t3xtlgubJyiW5fsV9gYlsBSFsAScs2gLqNMYSsUCXsRGZaTGQWxXG4wDGhgbSoQqjKWLYDlYCnjVtqMYnio/aAQrRbLpYwjDCFGL8UqLENR5QvQqJqLtcyrnN9+GA7xL1n4v4YIkAPJRE3+IpmYAENoLTYIgY7l5t9LzH+T6HS5DAvy+NH4gISmYMieIRFXuLpaO9/fUgOOwKzTF00p2+YufOP1pmEeZKxvoMZ+mh72U7Rre4DjAHighEYDWBMMfVa3OV8PSr0ayITSQjGnIBKX56OZa7LUhQ7AXkv9bJSI4R14czoxqiyMH8jr4ZD+6yOiTh4YirJat870+2llYrHHhU4O0B2KEcUbaAVT3EsavhmiVJi0V+Bb0dEPTvkunEJpdq2aRML2LQVMTk43PEGhgUUbPNBZbHorlwljo7xM5FL+R+C25gn4RRU/g31LmIeGaTd7K129Jl4E1vHUdYdA22gt3YAZ753TTtmNYORBjxMDBRV3xr9MRuPoYTy6m44+4vHkr8l09Hv0afTHaOyOAmzHLlPC6fpWp6o7byHNt2a81Q+tQnf3QRDFBXeBH5W9p56nWvZ9+8XzXrBgMA03fbz8iBIaKWAC+gX0SGuc/Zv/iZXbPYY8YdrzHLRPHU6PO33BkIZY0WLkTejMxW4oO0gxaUnvWVUa54mwyNb8qsnxYOWFcdFBXCFPbdyWNbm06eZSKHmZWqvuhZHxXUXKszktzu494LtCHwTmDdqEsuIDP415yASdH62xz9PpE3PSTKA4Or1Pfb2dSXNB9zSgZzx7ixknfs6OE3C1osKPm++B0VrkKoPmKX7qAX047my64OKw4E6sguFJgp/VKFgmfMksSxf2vqsmFQpjK8h9VNhaxvt0Pby+GQx/GQxvKIfULbkoglD8eLFuk3VjC76I3vDJta8GhXqlMiHd5qt0Rji+U0MOrTsVmyulbsbL7RbLDl90ttvRMZZCU/vO91S7oKCpX+vXHHV2Ig1d4FAsRWbgTAA/jfd8+TM75ewzbNpvUbf88YjTkHwTU+FLtWXNC+zZYTD19FtLHBFWo3EXx6DsWdmQSZ7+nExReLH/AkYKJx0tXunrGH+iN/QxTdpu6t3ZFvm+WFWud7nHpH//AE5XgvU= +api: eJztV0tv4zYQ/ivEnFpATtwUufi2yRrboK/A9h4KwzDG0tjiRqS05CiJYfi/L4aybEmR0xTp9tRckojznm++IXeQkI+dLljnFkZw6wiZvEJl6UnRc0FOG7KsNi4viwuIIC/IoUjfJUf58VHuk4hBBI6+luT5Jk+2MNpBnFsmy/InFkWm42Dh8osXpzvwcUoG5S/eFgQjyFdfKGaIOtHd2aJk5dmVMZeO1Dp3KpYItN28EnLhJGjW5MWFRUMNV56dthvYd3z1nMcp2g0tHaHvk+gGOwly7Rg51b4nRDEuFXrmvhpgkmixidl9M5FuxDChwpEny17Fua11VOw0k9OoSk9JFU7lSxnkONV2c6F+pa1XCa21JZVIaF7nVkmlvEKbqEfMSvLKFxTr9VZxSieznCIrU3pWK1KGWCrOmjPJ4baOQ1Jkh+u1jpcFuZgs46bZBluaFTmIwOCzNqWB0U/DYQRG2+q/4T4CQyKzPNVvqRPfsIHO4RYi0EzG/32L4TftWeXrZkPuPvoqIXSSjPjzIhIaV3drX+FbO0pgNO/g4tTKtruoAl5vGRaNivUN1KSaptvDFO3bEbAraR9BgQ4NMTkPo3kNc3ge5G4z0ImURXJOCZNQ5xczd6pS13TD2FPuHnyBMb3D3kK++CK3vhrIq+FQfvURUacO6mo4VLVuXen308qU0SbokqPpDsWgfQOt6KSfNCowLFP0aa/A96Kj/znlP+EUKXOAarJE7lsK69wZOYEEmQasDUFDZ7Xt7VyGnpcmT/Ra/0PDbc0z5ldl/ED8ljSPgGmDvVWuXheP6DSeO+4QaNtaS7fBjDch6KAcRnBZGX1ZGLLS3Dl8no4ny9vJ+MNs/BEimP41nY1/X34a/zGehE8N24FdZmKnG1tdqu68NWm+NeMtPLQa3d0HjSwiCIm/aHtPP89B9n37peK9xoLZR3Ddx8t3lslZzKbkHsmNncuduv6XWLmNMUPet+e5AZ86nZ5w+pIRDdzIYoRT6irk7qU6hjjN5T5b5D5EgpzCCC5PNR5sKuEIPMWl07wNW9Ybzen2Agt9kTIXN+h1/KEU5flCFmf3nNCROwosTtamUpUq8fM2j5WQ7y/W2C+z2b0K0gpLTsnyofT1dhbNlZzLgL4S2VvcBPHX/ASB0Ctp/OT0Hhg/oykyOl3Fz12gj587m65xcFxwZ1bB8CzBz2sri73cZNZ5SPuAqmlZkCtyrw9ZPZLzVUxXw6vrwfDnwfBaaihoMWgbqVTjpbog6+bWeBG94cl16IakellkqMPmK10mdiqkNjm0RuoiglTQPJrDbrdCT59dtt/L568lOYHv4kC1K0la8Frf5gTZifZykMBojZmnVxL4YXLgyx/VuWAfaNu+i4blDyMAGZLv4qp5U215qwQO7DCYVfRbS7wgrJPGhzimgl+VbTLJ/Z/TGUSwOryATZ6IjsMneR3jk0Qjj2nRDlMfvu0gQ7spA3ahsik/3wBOV4L1 sidebar_class_name: "post api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/create-experiment.api.mdx b/docs/docs/api/create-experiment.api.mdx index d0108ee0f..06b53ae39 100644 --- a/docs/docs/api/create-experiment.api.mdx +++ b/docs/docs/api/create-experiment.api.mdx @@ -5,7 +5,7 @@ description: "Creates a new experiment with variants, context and conditions. Yo sidebar_label: "CreateExperiment" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/create-function.api.mdx b/docs/docs/api/create-function.api.mdx index 36ac8da07..368bd6f43 100644 --- a/docs/docs/api/create-function.api.mdx +++ b/docs/docs/api/create-function.api.mdx @@ -5,7 +5,7 @@ description: "Creates a new custom function for value_validation, value_compute, sidebar_label: "CreateFunction" hide_title: true hide_table_of_contents: true -api: eJzVV21v2jAQ/iuRP20StKxTv/QbZWxF2qCCtJpUVZFJDuIuL57ttEWI/747J5CEBLpq6qT2Q5rcy3Pn891js2YBaF8JaUSasAs2UMANaIc7CTw5fqZNGjuLLPFJ7yxS5TzyKAMPnyLgJOwUEj+NZWag4/hpYuDZVEwcdPNDnizBQ3idJlXdkzChoyX4YiEgQO8AMVSWGBGD8whK2xg8Cco0zErCCeuwVIKyIKNgl/rXwgjVCn5noM1lGqzYxZrZvBJDr1zKSPjW9fRB08LXTPshxJzeCB7x0vkD+AZxpKJARoAm7TYLL+ExVMy1USJZsk2nXtEWfa0UrRbbGK3KojZeUZumTYdBksXs4o59Oumx+w4zwkSk39ZmmiPcFgCVgF6OdBjxtv/9Zujhc/Sl744mY1TlosHkx/WNO8TvwWTsDn+6daPBVX/8behNh/3ZZFxVtaTnYmzNNpt8B4WCgCLXq1avcqVinb0N2l9bs36VDOotNM37Z1D0zaaekVEZoEByhWEMYmGSa5Y3BXvupmrZFQGGEzRWIfAAFH41uqyyr3vQFbCnVP3SkvvwD3j3JNEyTXTex2e9Hv1rG/9tARy0cbZOGOy/TZDM5pHQIQQe0UH7kCm+MIfVJcJbjEse/C2Qy7y5aQNEBo5Jw5A9oUvOZT4QCPNKxzLcfHWkzAXyAZuIa+PFaWAJ/FXh654H4F+my5cI992zW6XZm5vd3KRDDfoyNza2smWPjvBlzhQVwsRVnrfxzAgtVMKjGShMbqgU3hDO34RsYtCaL9tIYlOuoyWdtsWQB18S0e92U1M5kP/DlK4gMtU2A25C/DqtHEoa/EwJs7KHhI7xzrM64VKchMbIS66F38/I5+6eeH9fD1yB2hncl2gzKkK+zsOYu4WTfK+1LtiV61471trhaI5LLSq9PVzIc056mqQjmf1NGGt+LI41sFtD+zwtL3DDZx7LCFqOj3KK6xF34j3+qHDS7pZVyhqcbqm7QSFNptjQybxIbR2Krppl2IfYEqJYZol51js77/Y+d3vnloSxa2Juu7pYUj5XTuUuu0dxu+F4Xxf2ongU7VRGXNgjL1MRLSkfmrtyV7DPQ5onlK3X2IFwo6LNhsTYFYomCV8fuRJ8TuWm0dnei2jIAqFJgWO54JGGIyX8MC2I+KNzKMdfsKrf6mwJUcRoXt8kVPXOV4uWGxS81HVz4t5aNKiy9Oj7Pkhz1LbKZdeTmYvG8+LXU2xvWkzxJ5oSfGI29AssJ0E0sLI1HhfJMrOEy3JM+vsDs8kJMQ== +api: eJzVV99v4jgQ/lesebqVTMv11Je8sRx3W2mvVECrkxBCJhmId5PYaztQhPK/ryYJJCGB7urUk5YXkOf3NzOfzQECtL6R2kmVgAdDg8KhZYIluGN+ap2K2TpNfJKztTJsK6IUl1sRyUDQIS9PfBXr1CFnvkocvrqaClOG+aFINrg0KKxK6rKddCGzGn25lhgwXwXImUkTJ2NkWzQ2jyGSoErD7TXeAAel0eROHoJT6n+VSsDB4LcUrfuogj14B8jzShz9FFpH0s9Nb79YKvwA1g8xFvSL3IMHavUFfQcctKFATqIl6TGLZSJirKlbZ2SygYw3Ee2QN6Do1DjG6BSW2CxLbNo6HDBJY/Dm8PtNHxYcnHQRyY/YTAoPL6WDWsBl4emyx5fB5+fR8mXw+eHPwexh/Ai8PBqO/3l6no2Aw3D8OBv9O2sqDT8NHv8eLSejwXT8WBd1pDfba7SQZUUHpcGAIjdRa6JcQ4yfNei8tjZ+tQyaIzQp5mdYzk3WzMiZFDMOWhgRo0NjwZsfoBgKeO0ps+nJADhIWqsQRYAGeHvKan09c11ztlPmq9XCx//gb0EnVqvEFnN81+/TV9f6HwFgd/0+OxoB//82SKerSNoQgyXRQfeSGbF2l8WVh/dYlyL4e3iu8hauy+FamZgkEAiHPTKu8sFAup80rMKt9ldgLj1f0ImEdctYBTmB/1T4puUF92/T5VuE+8uzW23Y281uN+nSgL7Nja1WdvToCl8WTFEjzIzDfRfPPCQOTSKiKZotmpExyrD7dyGbGK0Vmy6SyKo6OtLpKoYsxIaI/tRNS3DE6EJFTxCtbJ6BcCF4cFu7lCz6qZFun18SNpYu3N8ILW9C5/RHYaU/SMlmviDeP5ejMGhOCovK25RAKOq87PNUOJ2fjZYHn2azJ5ZrM5G6EBNXIn28XMhyRXLapCuZ/UiYXP1anFwhbw31eVI94EavItYRdlwf1RY3I56Oz/ijxkmnV1Z11uL0nLpbFNJmioxu5rXKcSinappqNFpZWZZZ+bzr3933+n/0+vc5CSvrYpFPdVlSsVes9pY9o7jTcvxaD/YSPIp2qyMh8ysvNRGVVCzNvOrKgkNI++TN4XBYCYvPJsoyOv6WoqFNWnDYCiPFiuCm1Tm+i2jJAmlJEIC3FpHFKxD+NimJ+AO7lONX3DdfdTmE4AHQvr5LqPqbrxGtUCh5qTcriPuo0aLKymLg+6jdVd06lz2NpzPgsCr/PcX5SwuM2NGWiB1lQ//AChL0DsXZASKRbNKccKHwSZ/vs8kJMQ== sidebar_class_name: "post api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/create-organisation.api.mdx b/docs/docs/api/create-organisation.api.mdx index cc587c801..7856131e1 100644 --- a/docs/docs/api/create-organisation.api.mdx +++ b/docs/docs/api/create-organisation.api.mdx @@ -5,7 +5,7 @@ description: "Creates a new organisation with specified name and administrator e sidebar_label: "CreateOrganisation" hide_title: true hide_table_of_contents: true -api: eJzVVlFP2zAQ/iuWn1uomHjhDdCkoWkC0e4JIXRNjsaQ2J7ttHRV//vu7LRNaOg2tE0aqmjq+3x3/u67c1YyR585ZYMyWp7JS4cQ0AsQGhfCuBlo5YGNYqFCIbzFTD0qzIWGCgXoXEBeKQIFB8E4gRWo8khMCuUFfUKBIhg7LHGOpUAdVFjSIgSRGR1AaS8Wxj17CxlHJXcVaJjRc4r9PcaGsnHgMQSlZ/5IDqSx6KL1Kt8mft1KmCAOv9Xow4XJl/JsJTkkpcCPYG2psog7fvJ89JX0WUHZ81NYWiSfZvqEWSA/1nGwoNAnN7UObvmQmRxbaGKAUpPrQYwDWXiIXBxE2MLofh+R1QMePGVmXK+JK9NjWCc+lEPi664ToNlzP5BUnxJ76bxNXF42HK67/oKrMS54a7RPPJ2MRvzVJ7C2Y0E4sdkoB3+qSir/HXIG/6aqWTx9/jBdvq/oAULt900DibquuKrnWVBzZvFKw+bxBnVOqM/LabvCVIJxcndYTZuUIfTFfTSuYovMCTQMisilPbXN372nl5qD2m1l2GF4wBpoKr7lrpNcJ+pP1J/02ZI/5XTap/ArQjgaWWN0c3QfnaOpePpXJF6h9zQr+/nanKUnnb7D8A6YeWa305xf4jiuGEYEVRgKw+PWGh/zgVDQr2NfU1q0puI52tcGM07qqh0NfnJOh6voHlkegVVHRQj2ArzKzmt2c3e/HuzbERy6LeB+523MLCUi3va5ZYbXKZVuqT5NJjciogUQnK+nbHN3xCLwzinbY5O8ndmvhInwQ3EiINaOhXC7u7s+vkBlS9y/e3Y99Wo47RuambQzdGbNbnkzCXYraWK2JoLSjyYeuVHYuF182kAy8+ngJ6OT0+How3B0yvtYM3S789bGZ+oz8erW7pDXurX/p5eTRg4BX8KxLclVHHEujvXUNHfSv+Kt2zak9IKbjICrFWkQv7pyveZl0oXjXqLHOTgFU64CN48sEHKSELfZMy6ZscTdcMLpMLysOa29ocONl3acZxnacBDbngM31+MJgafNG1aVZOlgwW9f9P9Mxje1dCQCxLWVLEHP6ji6ZPLJfz8Aug26Ng== +api: eJzVVk1v2zgQ/SvEnOXESJGLbmlRYINikaB2T4YRjKWJxFYiWXJkV2v4vy+GkmMpVry7RXeB9cUC5/vNmyH3kFPIvHasrYEUPnhCpqBQGdop6ws0OqAI1U5zqYKjTD9rypXBmhSaXGFea6MDe2TrFdWoqyu1LHVQOiguSbF1s4q2VCkyrLlVXCKrzBpGbYLaWf8tOMwkqslVjQYLCn3sP2JsrHoHgZi1KcIVJGAd+Si9z18SfxgkDAl4+t5Q4Pc2byHdg4Qkw/KJzlU6i3rXX4OUvoeQlVSjfHHrCFKwm6+UMSTgvARjTaFz0xj27VNmcxpoB/baFHBIYhzM+ClicVHDldZM+4ioXvAQKGPrJ0XSmQnBocNDe8ohXY0C9DbrBFhzRZNwfu6w/NBjeBj7Y99QPAjOmtDhdDOfy98UwYaO1c18ro6GkPyqLun8n4CT/DddzWL1+dOm/bmmM3ITzkUJkGlq6epdxnorKN4bPH4+ksm1KT61m2GHH3yx6NxdZtMxZeSpuM/W1yKBHJlmrGsSm8blP20zCc1F7g4yHCGcCAf6jr9gN0puFPUv2N/xc0D/QwK3Uwy/N0zeYLUgvyX/0Xvr1e2/QvGaQsDijVk/1jKRzlQxYoFFEHRHw/l7XMe1qK0TqIlLK+vW2RDzQS4hhevQOPLOBh3rGF4bgnigrPGaW0hXewi15rK9QqevSmb3HoPO7hpxs1ofknM5oSf/orA+eVsISh0Qb/t8QUbOIXnVqt+Wy0cVtRU2XMr1lB3vjtgEsdyIPA7J25n9nTBR/VKcqBB7J0T4fLq7Pv7A2lV0fvecZurVcjoX9DvpJBjtmtPxcROcTrqNOdgI2jzbWHLPsMWw+ZDAlnzoCr+Z39zO5u9m81uxE87UGBne++zmTL26tUfgDW7t/9PjpKcD0w++dhVqE1ecj2u9G5oVhFe4jcdmnUApQ5auYL/fYKAvvjoc5Ph7Q15maZ3AFr3GjXRBhgdKwpx8HLNv1ApiHXazpaQj6lUjaZ0tHRm8zuIuy8jxRd3hHnh8WCwhgU3/wqo7WnrcyesLd5BCfKl1JaX77mwPFZqiiasLOp/y+xO6Dbo2 sidebar_class_name: "post api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/create-secret.api.mdx b/docs/docs/api/create-secret.api.mdx index 1e4d74f5f..f29ffe020 100644 --- a/docs/docs/api/create-secret.api.mdx +++ b/docs/docs/api/create-secret.api.mdx @@ -5,7 +5,7 @@ description: "Creates a new encrypted secret with the specified name and value. sidebar_label: "CreateSecret" hide_title: true hide_table_of_contents: true -api: eJzdVk1vGjEQ/SuWL20lICgVl9ySKFJzagT0hFBkdgfWyeJ1x94QhPjvndld9ouFoqa9NAcC9vObzzf2TobgAtTW68TIG3mPoDw4oYSBjQAT4NZ6CIWDAMGLjfaR8BEIZyHQS007Rq1BKBOKNxWnMBBT3s3R2tUYyqObBF+dVQF8ciJIEcH4A4x8EK+wHYhJTpBRkjMI5M4boKDFFA2xaUPfnU2Mo/1lgmwyRe23A9mTiQVUTPYYliHljLSJ8JM4/V0SbuXNTgaJ8eQBf1XWxjrIDl69OE7HTroggrXib35rgdiSxQsEzGORzXgNjnc5CzWU86jNSu57MgvheKfXyvtTrDQ58l7ELHwiFlDLHifY+QQhHDBr43CH1SBSZgXPFLnrROzzPGjikzezFrxJ38tjO0Qy70mvfQytxI7zrN4X2dw3LXhMgRasQqLygJSy2SFn8r2f4KqvQzKhORURqBCQfh3lvoqvTV0jK9vrA3xzXim6i/HXwyH/65JK0amEKBuSTP1xVzVNjAtGKj2mAbU+HHqdbZZt7i4QTFsjF7bvRxuNEFmawufF9uy28l0iIa/XvCNDAvW9Ji/pTKycf14nYTaAThE3QZfT/0YaNX8bsbVFc2S+w+1CWicllRe/pinybdTVio+EQKPiCSAV/QGRij36Sx3ZbJQ1OKdWXb2yr6LocKcrGD6hVjwLZB6x41TQgIgSnts2cZl95SP6deUKCOm4aONsiLg13SvbgbJ6EHlv75TTwW3KR2ZzngvtfSBtYAmYV2wTzkAe5GnOMmpeP5Lrt+n0SWRooQhOcRZpPgwfPrngfW7QM55dYiaDn7OTAbK6cJHH1bX38K7WNoZK95Ugitvq1C1VLrdkX5OdNsskC6DohUlK3UOl1IV/1BAuJ7seXo/6w6/94YjPcbXXytScyrUgyou7NYrKhv4/3ixFwfkJcGX5McBJSTHmUHMJzKSrVBKxOGhpt6N+gh8Y7/e8TDVG1sWcS4laLbgGLITDLciSCbXjDdLYUsUOzmT287iYhF/EKRcp9OYdfmghyer7J6bqN3zDWg4oRkx/yhwV4mjqVSdugwCsP4utD6an75MpgRfFC5ImOp9BteHXJX2SN/wGzW5mBmRrOxr/ZpVms1PmnPz3C8U3Cvs= +api: eJzdVk1v2zgQ/SvEXLYLyI6RRS6+tUWB7alB7D0ZRkBLY4uNRLLDURzD8H9fjCTry7IbbHcvm0sMceYN5/G9IY+QYIjJeDbOwhw+E2rGoLSyuFdoYzp4xkQFjAlZ7Q2nilNUwWNstgYTZXWOSttEveqswKlaymoVbUIHoUndO3oJXsf4W1BxQYSWz2HGWfWCh6laVAAlZFCaUFl8RVKEXJDFRBmrCIN3NmBQW0dSsiDDhylE4DySFrCvSdNShQgREP4oMPAnlxxgfoTYWUbL8lN7n5m4TLz7HoSOI4Q4xVzLLz54hDm4zXeMBceTlGGDQVaFhU5UYDJ2B6cIyhYuV6IB74+ZNpbxre5ZsVMb7LAnBAd2hMlUUHvJI1XjVNsdPhPqMBpxqngwhAnMV4PwPnxU9XbuZB0BG85wQOxTxernms1TvwJTgacIvCadIyMFmK/OnMHbxNFuYhKIwAgVKeoECaJL7tv+htAdsEZev4C3li+1uiT+fjaTf2NWqZV6P5s1goTon6uqX+KpRlSBqYi5IDxrXWo2Mg/vMMzQI++U768KLYK4pCl53hxuLmseM8nWUS4rkGjGCZscJSfTgZ9zl5QD6BpwP+j98D+xRme/vd6GprkoP7Lt2lpXLVUdfsdTpwgexqT41TKS1dkC6RXpC5Ej9fAvKbIvlBxD0LsxrZzaLka2M9aMZOidzAKoOg5CRY6cOpnb3oWyvuYU5nAX6pAIzjIuh0jIDaeHqfZmmjL7TzqY+GMhKau1zIXhOmpCagLWLdpCGKiavI7ZdC3fL+z653L5qMpopQtO0XJN83n4SOZG1kWgN3b2njJl+K06ZUB5LnLIT+219+VN5z7D1vetIerb6tot1Xwe2L5jO2O3rmyg1sKi8EjeBVPv7xUpVGD3s/uHyeyPyexB8uS0c207m6q8oJqLezCKGkH/P94s9YHLE+DOy2NASCkok1YrC6wgtC5JxRzzFRyPGx3wL8pOJ/n8o0ASX6zlKMnojZyBGOF8C4plEhNkIYH5VmcBbzD74amehL+ra1t8wUP/Dj9LCMR9/0mp7g3fq1YF1CNmshSMNuJi6rUZH+MYPd+M7Q6mx2+LJUSwqV+QuUskh/ReXpd6L7uRN2h5M0tA+e0Imba7opydUGHK39/FNwr7 sidebar_class_name: "post api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/create-type-templates.api.mdx b/docs/docs/api/create-type-templates.api.mdx index 9c99b0e30..069d34fb3 100644 --- a/docs/docs/api/create-type-templates.api.mdx +++ b/docs/docs/api/create-type-templates.api.mdx @@ -5,7 +5,7 @@ description: "Creates a new type template with specified schema definition, prov sidebar_label: "CreateTypeTemplates" hide_title: true hide_table_of_contents: true -api: eJztVk1P20AQ/SurPbVSAhEVF24UoZYTEUlPUYQ29iRecGx3dw1EUf573+ya+CMmrYpQL+UQ7N35fPNmxlsZk42MLpzOM3khrwwpR1YokdGzcJuChKN1keJQPGuXCFtQpJeaYmGjhNZKxLTUmWb1gShM/qRjna2EodKqRUrBRC1jxTI3IsqzpV6JJ5XqWPHxiRzIvCDjX27ifSBTaE8r/xYyhn6WZN3XPN7Ii62EHUeZ40dVFKmOvP7pg+VctjJEyE8cBYzmiweKHOwgUHhzGkar2/tMrakhap1BHnI3CLdvm1Jx7DNT6bhpFIptZL9RRkZH4pE2QyRekggmBDyVkSsNidICVsZnmdKLZvSAjgKWhSGLPH12wiUmL1dJXjo8krgc3zB6TruU47oNcXXd9+QVJSpb0T1wtr0SuwC3NoR6zDribfODBoRtwOZ1ZD0VvQvlvKrKuGv7BC6Eg0IZ2HVkAOtsK0Od5MswN6uhjuFPM7wJqZgM3g4qVWfcNd0w9pybR1uoiN5hb84ntgDJA63ORiP+19dgLRQEBMWrJjz+Z/UHshoSvgLx/WJz9Fq5w+uBRB5rvpHIgYZOA13opMq6+3Ue+8H4Ds3ekH7Th414W7l1O/Qgxh7nf9/HgbyNRkbU5338v4GEAa0mZJ7IXBsDYpx/CP/XZK1a9bF/VyfTE05fMqyhVjyAJCcu6p0EYDCckpx3VpFbH4ZyCd5O2SsvLUtRabTb+PFl19iimxNV6JPEueKrsjq6LFlhNueJ1L0nZcjsBea1tQnDEDJ92+Y+dT6X3eb9Pp2OhZcWCuJItsL6deyx5oLvmapHIvsTN178mB8v4IvDlb6rN/31iwLa1JlpdWe1R9nBiNrLdUZDo+d1tsy9+YoVkxI8QjV1FSSoYYOxs9HZ+XD0ZTg6Zz0u+Fp5VlZBheYQHZIcjK09xf/lB1dVM0cv7hQOsfaQUmlSDjBweCYDh0G7hLmNg+0WhKAfJt3t+BhFMkxsPD4pozmCwOTXBcqcj7UPDS2yVKmlI2h8uqsm3WfxVoDYNO3179cOjiS3z4e4an4ctLwFgWpQDLnoDYmD2VVrXEYRFe6obHOujG8nUwgvqq9eTGzWMeqZv4jxi2j489mXmwX82RbjPVuVfgLKYJP/fgGZMzeD +api: eJztVk1v4zgM/SsCTzuA0wZd9JJbZzDY6WmKNnsKgoKxmFhTW9JQctIgyH9fUHYTx3Gzix0Ue9lckkj8eCQfSe1AU8jZ+GichQl8YcJIQaGytFFx60lFqnyJkdTGxEIFT7lZGtIq5AVVqDQtjTWininPbm20sSvFVAdclNSYOMoEtXSscmeXZqXWWBqNcnwFGThPnP7c6wOQ6dbTtPUfIAOmnzWF+NnpLUx2kDsbyUb5id6XJk/61z+CxLKDBqH8EhQwAbf4QXmEDDyLt2govN0+W6yoIxoiG7uCfdbcvm8KtU6RYfnQNbrPepn9gyyxydULbUdrLGtSjQkVItd5rJlUHUin/CxLejWSPY0RFZNnCmRjik7Fgl29KlwdVSxI3T3cS/aiiaXg+t7g6rsfiCsv0K7omQnDoMS+Sbdh0jCZ9cRPzWedFJ4mbH5ENlDRx6acX9oy7k99Rq5pn4FHxooicYDJbAdNneB15Hg1MhoyMJLeglATQ3Ze9GPEfdMdYxvHL8FjTr9gby4nwTsbGlrdjMfyNdRgJ1lQN+OxetOE7H9WfySrM8hTBfTzYnvxGuP5dQZLx5XcgMZIo2gqEp0SQ3yunE6D8Rc0ByH9TR928J7E1u/QM4wDzv99Hzfk7TTyPoPbIf7f20hssXwiXhN/ZXasbj+E/xWFgKsh9u+PwQzAGQpGNHAlAwgkcHXcSfMMKoqFk53lXUgwMBYwgWvxKksrUF6zids0vkJlYrG9Qm+uihj9Zwwmv6tFYTaXidS/J2Tig8D8aO1J0tBE+r7NQ+hyDv3m/TadPqgkrbCOBdnY5vpt7InmQu6FqheQ/RM3SfySnySQiiOVfjxu+q+vWPmSejPt2Fmno+xsRB3keqOh0/PGLl0y37LiqfbE3gXTglwTh8bYzfjmdjT+fTS+FT0peIWJlS2opjlUjyRnY+tA8f/ywdXWLNJrvPYlGish1VwKwIbDM2g4PM+gEG5PZrDbLTDQn1zu93L8syYWYs8zWCMbQdAw+W2BCue1SdA0TJZYBrqQjd8e20n3Sb0H8IW2p+s/rR2YAEj7fIir7uPgxFsj0A6KkRS9I3E2u44ad3lOPl6U7c6Vh+9PU8hg0b56K6dFh3EjL2LcCBp5Pqdyi0A620GJdlWnCQiNTfn8BZkzN4M= sidebar_class_name: "post api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/create-variable.api.mdx b/docs/docs/api/create-variable.api.mdx index 081b72915..aaf18872e 100644 --- a/docs/docs/api/create-variable.api.mdx +++ b/docs/docs/api/create-variable.api.mdx @@ -5,7 +5,7 @@ description: "Creates a new variable with the specified name and value." sidebar_label: "CreateVariable" hide_title: true hide_table_of_contents: true -api: eJzVVktv2kAQ/iurPbUSJCgVl9ySKFJzahRoLwhFiz3gTfzYzq4hCPHfO7N+G4dGinooBzAz3zz3m1kfZAg2QG2czlJ5Le8QlAMrlEhhJ7YKtVrFIHbaRcJFIKyBQK81hCJVCQiVhgSKc7iQI5kZQMV+HsLa06/SA6kRfudg3W0W7uX1QQZZ6iB1/KiMiXXgTS9fLOdxkDaIIFH85PYGyF+2eoHAkR+DHMhpsKzlNFoo61CnG3kcSZ/WoKZT8YA+iFS6gWfK3w4ijkUtGoHqXPTgXfejIr8qm+VIOu1iOGnPU9Gbu7Inx24MhzmQwCgkZw6QCl9Ulcu3cYabsQ4piOYTjECFgPTvpINNhX3XLWe7DF+tUQF8wt+SJdZkqS3O6Goy4Z8hplUNEIQRlREF+3/ZQQhfWfi82p9VK3eqHsl1hglrZEigsdOUP9nEyrrnJAv96L3nuAv6uPu/8LmVb6e2PtNPwg+k/fF5KJjQGgjKcjrEowdCYKriGeAW8B4xQzH9J2RKwFq1GWLNsaljIJ2hYthCbXiQZVWz5XbQfEcZr0+TWZ+BchH9u9zWIBpECHLUbu+3gE1oNe8vlNEXkXPmVlkd3ORstFjyYPf1oBCwBiwbbzPuQlHo+z7rylneY8C1/D6fPwqPForgVGvZ6mp7sOWK9UzXM5l9JIyHn4vjAf5s+KCfmtvn/k0lJoZmPzTjUa6FRtCNXIt7S6A1hDpdZ76Akg+znBhEh6nL/IgUtnB2NbmajiffxpMp2/F5JyptJVVMhGjdoL3VVNP6U7d22WkHb+7SxIp2PmWTY8wRCvYt5LZN0YiZScLDgY4SfmJ8PLKY2otMyeWohhccrG4QZmuoLSuI4GsVWzhT0penciV9Fe8l+Qr77v1XnZ5k4v+TUO3bsROtAJQTPp6zjwZxsnQai5sgAOPOYttb4fHHbE7gVfkORauVbVDt+P2Kvikbfg9jaz/JXnagPZxucr+6ZOGTP38APOF43g== +api: eJzVVk1v2zAM/SsGTxugtEGGXnxriwLraUWT7RIEBWMzsVpbUiU5aRD4vw/0R2wnblag6GG9NBDJx0fqkfIeYnKRlcZLrSCEW0voyQUYKNoGG7QSlykFW+mTwCcUOEORXEmKA4UZBajiYINpThcgQBuyyDj38QHpT40AAiy95uT8jY53EO4h0sqT8vwTjUllVIZePjvmsQcXJZQh//I7QxCCXj5T5EGAsZzIS3JsZRodL+etVGsoBJS0Bi29igfsUYJqTU+W0A16FFUt0lIM4fzIvQ8vKn4Nm4UAL31KJ+15rHpzW/ek6OfwNqdCgEGLGXmyDsJ5Uzm8jbRdj2QMAiTfYEIYkwVx2sG2wmPoDthW2xdnMKJP4C34xBmtXHVHk/GY/w0prWlAMBmPgyYIxH+sDgFRWVn8tNydNaM/NQtYaZuxBWL0NPIyI45J0fmnTMfl6L0H3Hf6OPw/9Nzh26vtWOkn6Qdof3weKiV0BqIQcDWko3vlySpMp2Q3ZO+s1Ta4+hIxZeQcrodUU7R1DNAZKoYjcM2DDE3NjtuRkU80r0+jXckAfQIhXG4OTgIcRbmVflduAZdJn+wu0MiLxHtzg05G1zkHzRc82Md2Qkv24LBo0abcharQ9zEPlfP5kQJC+DmbPQSld4C5T0j5utXN9uDIJdtZrmeYfSRN6X4uT+lQ3g1f9GP7+ty9YWZSavdDOx71WmgP+pkPx0dLoDOEUq10WUCth2luyBrtZM1vQ9ZVYJPx5Go0/jEaX3Ec33eGqkOqmoig84IeraaDrD/1ated9vTmL02KUjGb3KacoVLfHDZdiSaszHAO+/0SHf22aVHw8WtOliW5EAf3SoPNC8JqjaVjQwzhClNHZ0r69livpO/BeyRfaNd//5rbAxb+l6Tqvo69bJVDPeGjGWO0HidLp424jiIy/qxvdys8/JrOQMCy/obKdMwxFrf8fYVbZsPfYRxdTnJ5tocU1TovVxdUmPz3FzzheN4= sidebar_class_name: "post api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/create-webhook.api.mdx b/docs/docs/api/create-webhook.api.mdx index 025263b77..3f54fa036 100644 --- a/docs/docs/api/create-webhook.api.mdx +++ b/docs/docs/api/create-webhook.api.mdx @@ -5,7 +5,7 @@ description: "Creates a new webhook config to receive HTTP notifications when sp sidebar_label: "CreateWebhook" hide_title: true hide_table_of_contents: true -api: eJztV0tv2zgQ/isET10gTrxZ5JKbmxpNgBYNErd7MAyDlsYSG0nUkpQfMPzfO0PKEmUr3iyK7qk5xBI5nOc331A7HoOJtCytVAW/5XcahAXDBCtgzdawSJV6YZEqljJhVjENEcgVsPvJ5JEVysqljASdNWydQsFMCRGuQcxgBYU1TEVRpZksmE2Bma2xkF/yC65K0O7cQ9xY/dtbw10N/1Rg7HsVb/ntjqN5i8roUZRlVlu8+m7I5R03UQq5oCe7LQHVqcV3iCzqKTXZsRIM7RYih0DKWC2LhO8vuino2YdCLDKIg72FUhmIgjYrnfUeysGmKj7dInVVzm+n/ON4gm+PX57dz1f3fzS5u8ffD+NP48kYH+7How98dsGttBkpube2/Ow1o40VaNPrdGvk25/h8W/1ATwbVcaqfJ6CiHGxL3sijiXlRGSPYR6PE8Y/QgFaRuwFtoOVyCpgXgVDZ6rIVhpYZRARS6XZMoONxGSyWFiBaCo1GCytKyhCRKsqSVVlHVpGjw8ElYPvX7xfVA8HrcBlobXYoqhEdJmealC4qSgSmCPQTG+V9x51UlOdp0fi3YhbQDSuNOW+8CjzsAgS30H4k4f3XQ3rfdc4Jg1woRQaNVlXm+kBvHwzUDoZSDIkKfe+fPh20gQtEo9VB8rWSr+YUkTwE/pmtGJKpADfZtfDIf308UodP0MRdjiDtn739+/+/tn+zsUGuxXfIRTAJC0QzrifCWPnuJ0kgNCdC9uXVIwgpx2O3sPASsTTG6gDJRy64/lie3b7vxh1/uYqdsP0NcVdober/xeyC/ztxPYGGjzxqCeSbrH6qbPF/usk6vkjYFEM66aPfB5QQiPMn0Gj1rHWCNSbX0JBORgjkj4W2rdh9LjTFwydEAmxP69DNpSMA+/wUhnngLApvl2tm9uTAbxySbt1c8Pk0qbbS1HKyxS55b0wMhpVdGQ6o1FwvA9Cg24EZq22Z0qBj/J1nU3YtM6PicRdGp00EyiOgdZ5PswbR720T+A+49lbzDjxc3acgCsMVfmpvXKONyIvM2hHSttMXUMBGdcDhAZiPTLa3aZifiA0pE7c3cPTAQFOD0pmJywUsIAslsrlpMbXc4WIRHTIOuTW4PXw+mYw/GswvKFzBKBcFEGcvsFYexE/mpxNl/xv3wl1nS1s7FWZCRmOZI/8KT8gH5OUUk/g0m6HMIKvOtvvaRlLq6kd8HEltKRiefwf7jvUKbE0dRWXIjNwJvh3TzV5/sFecxFnZfe25gYnLnFqul9iKrzLdax5gZpaBhPS0UqcsF17YhRFUNqzsiEf1RedRf3RhoxPZ7RY0wcd/kdv6LvPgYAE3NoOx0ORVI4zuddJfz8A4rkKKA== +api: eJztV91v2kgQ/1dW83QnmYTLKS+80RQ1ke7UKKHtA0JosQe8jb3rzo75EOJ/P83aYEOcXKqqfSoPgLzzPb/5zXoHCfqYTMHGWRjADaFm9Eori2u1xnnq3JOKnV2YpWKnCGM0K1S34/G9so7NwsRadL1ap2iVLzA2C4OJwhVa9srFcUnKWMUpKr/1jPkFROAKpKB3lxy9fqm8QQSE30r0/M4lWxjsIHaW0bL81UWR1R4vv3oJeQc+TjHX8o+3BcIA3PwrxgwRFCR+2KCXU6tzbEl5JmOXsI9OS9BxjlbPM0xaZ3PnMtRWDkvKOpVy5NQlz4/EXJnDYAIfRmOI4P7jY/j5FL6H45tbiOD96J/ReAQR3I6G72EaARvOxMgtc/FvZXkfwQrJdwbdOPn8V1v9c62wjyAuPbt8lqJOkHxX9XSSGKmJzu7bdTwvGHxAi2Ri9YTb3kpnJarKhPJMZcwloSo9JmrhSC0y3Jh5hirRrBVhQejRcmio4pRcuUxdyQEtw/s7gcoh9o9VXNKPAK1WyJpIbyECw5j7jm5Iuqm2S5wRat/Z5X2FOkPS58mZ+GnGDSCOoRzbHVUoq2DRKvwJwh8qeN/UsN6fOmcqcR9BoUnnyKE3kwN4YdNztOwZcWSk9lX7IHo+BA0Sz023jK0dPflCx/gD9qbyxBfO+mrMrvp9+enilTp/ddXvq4MORL/n+/d8//B853ozI2SqsVAL2DKfI4nNTHueMZnlEgmTmeauoi4c5XICiWbssckR3kAdEcQB3clsvn31+Huchnhzl4Rl+pLhU6G3m/8fsmvFe5LbG2jwWUQdmZw2q5s6G+y/TKIVf7RYdB/BdRf53FlGsjp7RFohjYgcqeufQkE5eq+XXSy0b9LoCKcrGdHQS2F/qFP2UowD70DhfAhAcwoDuFwfb08e45IMb8Pe8LnhdHuhC3ORMhfvtDfxsBSVyVRWwfk5akI6Ckwba49SgirLl20e05bncE4k4dIYpJUuOUXLdZ0P+yZQr5wLuF+J7C1ugvhrfoJAaIx0+aG5co42Oi8ybFZKM0ynjlpkXC8QWYj1ymhOjx2rFsKR1IW7O3i6RYCTg5HpMxZqsYCxCxdqUuPrsSyQCudNnXLj8Kp/dd3r/93rX4ueACjXtpVnNWCquYifbc7jlPyy94S6z4wbviwybdoruUL+BA7In0aQykwMJrDbzbXHT5Tt9/L4W4kk4zCNYKXJSLMq/B/uOzIpifF1Fxc68/hK8n881OT5p3opxCfcnt7WwuKEAYAM3U9x1b7LnXirBGpq6Y3FRiPxjO0ajWEcY8Gvyrb5qL7ozOuXttwlokN6LS90ei3RyHtfAIEIhGc7yLRdloEzobIpn/8A4rkKKA== sidebar_class_name: "post api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/create-workspace.api.mdx b/docs/docs/api/create-workspace.api.mdx index 9f886b3be..ebab810e5 100644 --- a/docs/docs/api/create-workspace.api.mdx +++ b/docs/docs/api/create-workspace.api.mdx @@ -5,7 +5,7 @@ description: "Creates a new workspace within an organisation, including database sidebar_label: "CreateWorkspace" hide_title: true hide_table_of_contents: true -api: eJzdV91v2zYQ/1cIPW2AnQQt8pK3pA3QAF1XxBn2EATCWTpbbCWSI6k4huH/fXekLMuxJKfAhmHNgyOR9/3xu9MmydFlVhovtUqukg8WwaMTIBSuxErb785AhmIlfSGVACW0XYKSDphhIqTKyjqXaily8DAHh8JlBVYgHPraEEMupNMlCc0FqmdptapQebHQVmRaLeRSVKBgieGU1QhnMJMLSQyQV0FpztI8aXFnySTRBm1Qf5e3Fv+5s5TuLf5Vo/M3Ol8nV5uEtHiSzY9gTCmzwHv+zbHDmySay09+bZAE6vk3zDzJMZY1eYmOb9tYpMGqlJhk2WFz3pKByXbSoVRQ4QkS58HX7phokqCqq+TqMbn9cn3z+fYjnXy8m8XHp0nipS+ZvHV8FgWR8ApJRMYy6QXKUq9SfCFPJIc4dVguUgqE1c/QtX+udYmgWADUXqdGm5rTlnL8rB4gRQXzMtLgi09JpMwh1tIYeQFqiSlljpJwgmkbEyot5hyN/jQcBb0ToVcFch+r40NTFdtDBd7WSAcGLEnxaCmKj5sk5jF5mVLxT2VO6iQ3S4GQo6W3oxraZ/qV6Cc+cUYrF6vq3cUF/+trwtZiQURix0Xa/vGCHizTbq+n5PdJmrcUfDDvP2qNtzdxxKb0mUrgsDA7JCFNeTpf916X4Hxa6TxA2duIwPd5S1BZ8U1CTYJTT23c1f4jPIS09K7tOs0ZDNizbnzBWlhzcXuseuK+/dmx5YQ/Q8Yf5OKgLE4bNeZlT3X0VNU+J8f92tedQ01wBKFDTdvTomNoG2GrA7cU9Ms+1LsjCqugnKGlrru1ljaEy38F+Sp0jjaO/grfOdJjTp8zzAFLHhN7vBG/tRsNh4byU2heVYx2wRjwBb2dt2Hk1DnMaiv9OswbV9EetD4DI88K780NOJld18z1+LSdHN8jWLQtwdNe2owjEp0eltlGgc/JlMO0fHp4+CoCtaDyL8inJuy7uRc6iu+5CUcse4uaQD6mJxCEPHHS7/eb3u0LVKbEkU1tD46vJ1/fzW74dGbMD2EfT/tBtIuXI/h2SDCIaM22ItVCh/g2pTurySoqNtmErx1itG68u5xevJ9eXHKyuB5pJDBrE4jYvaK7TR+kqbNN/y8+FZqK4/iemxJkGBS1DQMntmFnoww4VnCP0ulmwxb+Ycvtlo+pziz3Jj0+g5Wcl9iMuyWQ2zYnX+mCWn0BpcOR2P1y34ydX8WQld9xfbhyUuJrJksYAeJtA0TTBxawpzjCxj3HdZah8aO0XcT6+vvsgYjnzacUzR3msbDizyz6JWv4e8zvFolwtqEhpZZ1QNgkyuS/vwEFjiqB +api: eJzdV99v4zYM/lcEPm2A0wYd+pK39q7ACuzHoemwhyIwGIuxdWdLOklOGgT+3wfKTuI0TtIDNgx3eYkhkRRF8vtIbUCSz5yyQRkNE/jgCAN5gULTSqyM++ItZiRWKhRKC9TCuBy18sgKiVA6K2updC4kBpyjJ+GzgioUnkJtBWoplDclBpKC9FI5oyvSQSyME5nRC5WLCjXmFFf5GOEtZWqhSAqUVTxUsrWgdO6vIAFjycXjH+XO47+3nkICjr7W5MO9kWuYbCAzOpAO/InWliqLutefPV94A627/BXWlmACZv6ZsgAJWMcnBUWed3exSKNXKVWoyp6aD07pHJqkJ6mxogsiPmCo/bFQAqTrCiYv8PDH3f1vDx8hgY+P0/ZzlkBQoWTx3cWnraEmgYqCUxnbbBLAsjSrlF4tOcUhTj2VixStdWaJff/nxpSEmg1gHUxqja05bSnHz5kToqRxXrYy9BrSJZZKYltL58QL1DmljtAbfUGpaROqHEmOxnAajoLei9CbAnlqq+NDVxXN4QHB1dQkYNFhRYGch8nLBto8wuvIuHykJCSgGCwFoSQHyXEN7TP9xvSMV7w12rdVdTMe898QCHcei5vxWGy1IPn3C/pkmfaxnip5WeY9BR/d+5+g8X4Qt9yULsn5w8LsicQ0yXS+Htwu0Ye0MjJS2fuEMAzddmFcxTsgMdAoqIr6p3+LToVaYjBunUomA75ZP77oHK65uANVA3FvfnRuuXCfU84f5OKgLC47de6WA9UxUFX7nBzjdQidp0BwRKGnQDsA0XNs29JWj26bBG6HWO9RB3Iayym5JbkH54wTt/8J81XkPeZD9NPsLzLgztBlWANzbhN7vhG/7yYaDk1FoTA8qljjozMYCpjA9S6MnDpPWe1UWMd+4ysVivUVWnVVhGDv0avsrmatl1mTHO8TOnI7gdne2pQj0l76tM1dFHgdkjdp+fX5+ZOI0gLrUJAOXdi3fS8iivcZhGc8e88xUfzcOVEg5omT/rSf9B5esbIlnZnU9uT4tvMN7WybT6/HfBP3cbc/yXbt5hl+OxQ4yWjdtKL0wsT4dqU7rS05a7zqwrdrYnAzvrkdjX8ZjW85WVyPFUbodIFo0Sv60/RBmnrT9HfxVOgqjuN7bUtUsVHULjacFoa9iTLyWMEYnbzAZsMe/uXKpuHlrzU5xuYsgSU6xXlpwbgdAhm2UnnekDBZYOnpTOx+eurazs/ilJdfaH04ci6xrFkMmAHa3Y6IRs9sYC9xxI17jbssIxvOyvYZ69Of02dIYN49pSojWcfhip9ZuGJv+D0WtoNEXNtAiTqvI8NCa5N//wAFjiqB sidebar_class_name: "post api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/delete-context.api.mdx b/docs/docs/api/delete-context.api.mdx index 5b6bac078..7a1f2c3b0 100644 --- a/docs/docs/api/delete-context.api.mdx +++ b/docs/docs/api/delete-context.api.mdx @@ -5,7 +5,7 @@ description: "Permanently removes a context from the workspace. This operation c sidebar_label: "DeleteContext" hide_title: true hide_table_of_contents: true -api: eJzFVk1zEzkQ/SuquSxU2Y7JJhffgIQCapelElMcUjnIUo9HRCMN+ojxuua/0y2NZ+I4MVBAcbIs9cfr1uun2RQSvHCqCcqaYla8B1dzAyboNXNQ21vwjDNhTYAvgZXO1ixUwFbW3fiGC5iweaU8sw04TiGY4MbYwBbAopHWAONGspXSmvGyBBEoVqmWGNxbHcllUoyK3v+NRBBnoCHAy5wUTxvueI07zhezq01h8A9aKYlHikA3PFS49qKCmhezTRHWDVn44JRZFu2ocPA5KgcYPLgI7agP8mWc8YwDX/ptvAq4BHco4k4E65bjAcy3nQ/C6Tv7E/Guacc31njwZH88PaGf3ZveaTJDE7b1oYgnD7lc4J1FJ+CdDa8sXi87ued1Op3ue73BDM5wfQnuFty5c9YxNBwcR0Xilwnky5tGK5G4cPTJU4DNfuV28QmpRMxwxJygcp01eM+X8OB9FUEFDQ/DueiQvOxgtC05nD473i/mIywqa29ecaVBMjT5JWXcb5gkV5y8UPGQ5m2YLx+FAJCYfBHz2SpDwsnDISsTMJpK6JGxhZXrNMNcGZ98UhTvy6jJKuow6sMJrbAG5isbtaQ55ivuIEPZpsIJV2VXHpNK0gYmqBui1GTvXiQPfL+V810cQ4kZUZcxoaj4LVYBQGchOgMkKaFir+fz90jd6Yh5cIpr9T+ecFQsg+pDTZZHjq/Y28v/3jFpRayxstwbJEYUGAqYtktFraMOudwyiU2yu33/y2ONKI2IM4aGWoXRc9NQ/morQefUZ10a5pUR1DY8xuVSA4NEffpfYUfRWjjr0RmLVdi5IZnP1UmFiukoVpcT/Rrwk0TnYeSvcn+vB4rvkPQhctM4kN6h71YA/uUGR4eQUyRU28qSFMukEkmDUWNnxVH3FBxtlGxJlEBEp8I6CbOvEfZ6whs1qUJoXnCvxPNIflfXJHL3zwHb4HqD6yHaJU1K5s7jMfsxov29IUrUSNaMoznW1fF1q6TkuaBzEq4DyL4nTTI/lCcZpHtTprQpaHdXlxFvvbFedT6oST6HPp4en46nf4+np4QQTQK+zOTavRVZwNnwTO4g2wxq9Kce9a5viS6NRu2hOqLTBC7T6aoQPfoZPqFIgQrrpIPNBi8HPjjdtrT9OYIjkuHyluOoL6h5SDmpPK2RqiXXHg404clFNzFP2WPYuk1u1nQRXEf6h8sbWOfvjRZpvH2Qfyz7Yylz6PtfIX1umppfWuI2X//N8vtT3f2i2cmWDZ7jC9CEO2d7T2d7V5DOzv85n5/jKH0FtXfBIQ== +api: eJzFVlFvGzcM/iuEXrYBF+fqxS9+65oU67B1RZNhD4YfaInnU6OTrhKV1DPuvw+8O9txnGQb1mFPPkvkx4+fSEpbZSjpaFu2wau5+kCxQU+e3QYiNeGOEiDo4Jm+MFQxNMA1wX2It6lFTRO4qW2C0FJEgQCN3geGFUH2JngC9AburXOAVUWaBauya4iUgsviMlGF2vu/M2quLskR05shqCpUixEbYopJzRdb5bEhNVfWqEJZId0i16pQSdfUoJpvFW9asUgcrV+rrlCRPmcbyag5x0xdsQf5cjbwOWNcpx1eTWgovoR4hBDi+uxA5q+dX6SzV/Zf4C1lJbXBJ0piPy0v5Of4pI9Ehml5ATsfQbx4yuUjpZCjpveB34bsDVw88pqV5anXO88UPbprincUr2IMEWZleXAsVF9fnsUX29ZZ3dfC+ackANvTzMPqE+m+MqJUDtshz4ZSwjU9eV6KLTt6ms7HkcmbkUbXicPs1fQ0md9pVYdw+xatIwOzV9OvksZjwYy4UgKukft+O/RXyloTGTKwysPe/UAJNDoHVU9MupL2zGAVzKbvYbQ+9T49SkpVdmKVHRd7OO0seYZUh+yM9DHeY6SByi6UD2yrMT0w1sgC6NC0UlKTk3MxyHgq5c0xj0OKA6MxYs+ixjuCFZHscY6eZKRwDT/e3HyAaVkWkChadPYPMoAJ0EP2IrI5j3gPP13/+h5M0Lkhz4M2iWPWnCOBC2sr0olCcZDMJOBwrPs3CXyIDToImVuRatPSIJpN0ARDbgh9OYaBZL0W2WySz7UjoL705X+NUax1DClBkx3b1j0IlobsjK0qioI1xkw1tpQmfTkfWn4x6Ls8lPhRkT5V3NIOMu/mC7UbAL+gxzUJc0FqiOsgo9j0U6KfwVyruTofr4LzrTWdDCXSOVre9IM5NZbrzQRbO6mZ2x8wWf06i99iKUPu8T5hpLg3WB7QrqVThtp5HnPfRrJ+0kR9afTWgJlr8jzW626SiudK9mVwvcDs74TpzV+K0xv052Z9FXrQ8ayuc0uxDcmOPncU0wA9Laezs/L7s3ImDNuQuMF+jox3xTDA4XBNHjHbHqbR/3Wpj7r15dI6tF7yyNEJuaGcFkrv2c+tkcqrQ2LZ2G5XmOi36LpOlj9nilJky0LdYbS4EvEWW2Vskm+j5hW6RC+I8O3HsWO+g+e4jYvoN3IQ6LL8U4W6pc3w3uiWXbG7kP9Z9OdCDtCPXyH72NI1XzXFXbz9m+W/D/XwRXMUbTB4rTW1/GDv5OrsHg6ky6ufr26uVNf9CbV3wSE= sidebar_class_name: "delete api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/delete-default-config.api.mdx b/docs/docs/api/delete-default-config.api.mdx index 8f8243a84..89add581b 100644 --- a/docs/docs/api/delete-default-config.api.mdx +++ b/docs/docs/api/delete-default-config.api.mdx @@ -5,7 +5,7 @@ description: "Permanently removes a default config entry from the workspace. Thi sidebar_label: "DeleteDefaultConfig" hide_title: true hide_table_of_contents: true -api: eJzVVktvGzcQ/ivEXtoCetW1L7qlsYOmKNLAVtGD4QO1nNUy5i43fEhRBf33fEOuJMtSjCBNDz2J4ry/mfm4m0KRL53ugrZtMS3ek2tkS20wa+GosUvyQgpFlYwmiNK2lV4IiN1aVM42ItQkVtY9+k6WNBKzWnthO3KS/YlStq0NYk4CV5V1DSmhK6GDkFVFZfA7j468NTHZQI1vA32CONQyQIhkIAnsvJLGzGX5KJbSRBoVg2If7q1CAddkKNB1Tvh18g6dTjrZ4N75Ynq/KVr8ge4jrSHTXHcnQ42zL2tqZDHdFGHdsYoPTreLYjsoHH2M2hFiBBdpO9h7+TS0bjHUaueqJqnIfbOzPZr/wt8D3/jOtp48619MLvnnuNVnkBJQFDtL9nt5zvAWzYqupHc2vLGxVeLymdXVZHJq9RYtda00d+SW5G6cQ5+heDAcFKntbWBb2XVGl6mt4w+eHWxO67fzDxgibq/jIQg6V9uQ93JBZ4BCbkEHQ+fTue0zed2nsd2ywdXPF6fF/E3z2trHN1IbjDRUvksZzwFTbEr9FvCmHTbLx7IkUgg+j1m2yilh54zBlnBivI+0z0zMrVqn1ZK69ckmefG+ioa1MAaDvbvSaNQgfG2jUbzBciUd5VR2obDbuurLE0orvkCApuPBGp30RckgT6GcHedxKDFn1EdMWdRyiSqIWBaia1H9Soda/DabvcfoTgbCk9PS6H8gkSCuVsSWQVZjJ1fi97s/3wlly9igsowNBiOWcEXC2IVm6BghlyFTAMke4/6DR41gSOQZQ8dQwXsGDdzUWEUmh77uwwiv25IydeG4MCQojT7/r4EotEtnPYxRrAZyh2A+V6c0uNKxrz4m7DryozTOh8W/z/g+HEb8aEjPDTevg1wwJRY9DYjMAzEnwM7AmrVlYlWJLhKXgiqnxbh/FIaZwscbsOmWWYrK6HRYJ6L1DSpYj2SnR3UI3a/S6/JVZPv7B2a953ICIm6v8HDwdsdLk8foyz73G8X3J/uUpiRpCwl1gNCP7o5a2XLOcuawFzL7mjBJ/aU4SSG1ULeVTU77tt1FDEBnve5tQE8+u76YXFwNJ78MJ1ecIVQC3mo27R+PzOjiuJfPE9wc+On/+Nr30LPBuDNgMoYiOsOF5cnEIhxNJoym/NJjmmpAxgqbDfpMfzmz3fL1x0iO5xXHpQSBzLkPmF6lPZ8x/cjD0wtA/njb7+FP4ks59pey5W+OVA7+4cip5U+RLVZi99p/9/A5zJNvlX0KvIf/SainXzJH0bLCK3B+F57ITh7L7VP+ub7542Z2g435DE3axOs= +api: eJzVVsFuG0cM/RViLm2Btayo9kW3NHbQFEUaxC56MHSgdrjaiWdnNhyOHFXYfy+4u5IsyzGKNj30ZHmWfCQfyTezNZZSya4VF4OZmw/EDQYK4jfA1MQ1JUCwVGH2AmUMlVsBBeENVBwbkJrgIfJ9arGkCdzWLkFsiVHxoMQQosCSoCWuIjdkwVXgBLCqqJS0Q2RK0efep4qsp0JfJIHUKMDkNxADiIJX6P0Sy3tYo880MYXZh3tnzdxckSehqyHhNz26KUyLjA0JcTLzu60J2JCZm3vamMI4rbtFqU1hUllTg2a+NbJp1SQJu7AyXWGYPmfHZM1cOFNX7FG+nEVenTm7g6oJLfE/Btuz+S/wFnqS2hgSJbWfTS/0z3Grn2EKZtML2Hkq7sVzjh8pxcwlvY/yNuZg4eKJ1+V0eur1LghxQH9DvCa+Zo4Ml9PpwbEwfduDqC+2rXdl39bzT0kBtqf1x+UnKkXbyzoE4oZqG0oJV/QMUV1hxImn59P5OGbyZkyj69Th8tXstJg/aFnHeP8WnScLl69m36SMp4RZdaVxC3TTDpuVclkSWbKwzMO3hyElKNF7qPrEdB9pnxkso930q4UupN6nR0mpyl6tspdiD1d6R0Eg1TF7qxuMD8g0pLILFaK4aiwPrLN6AGVsWh2syUlfLAqeUnl7nMehxCGjMWKfRY1rgiWRfpPMgSw8OKnh59vbDzCbTgtIxA69+5MsYAIMkIOSbM8ZH+CXm9/eg41lbijIwE0SzqVkJvBx5ZQ6ZYgHymwCice8f5cgRG7QQ8zSKlWblgbSXIImWvJD6KsxDCQXShqkK7mw8gTUj77+XyOrdckxJWiyF9f6R8HSUJ11VUWsWGPMVGNLadKP82Hx7wZ+F4cRPxrS54Zb1wFXKolmlAEYdCAPCShYQ1JHFVbby0WvpVKbuTkfL4WzQcLPt/e06VSlqMzsZNMLbWqc1JsJtm5Si7Q/YXLl66z+dwtVvaffCZl4b7A4oN3o0gxj9HXM/Ubp+ck+9VPSWwNmqSnIOLo7aVXPpX5XDXshs78Tpjd/KU5v0LfQhSr2oGPbbnJL3MbkRp81cRqgZ9PZ5dn0x7PppWbYxiQN9pIyXh6DosNxL58muD3o0//xth+pV4fz1qMLSkVmr4UNk3lnjifTFGauN/2iMHVMogbb7RIT/c6+6/T4cybWeV0UZo3scKl9uNsa65L+tmZeoU/0ApHffxz38Af4Wo7jIQZ9c/TlmLkxRf8IGZ4i3aIrdrf9Nw8/hHn0VtmnoHv4n4R6/JI5ijYYvC5LauXRt5PLsnusP1fXv17fXpuu+wtN2sTr sidebar_class_name: "delete api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/delete-dimension.api.mdx b/docs/docs/api/delete-dimension.api.mdx index 501d63640..8d70da573 100644 --- a/docs/docs/api/delete-dimension.api.mdx +++ b/docs/docs/api/delete-dimension.api.mdx @@ -5,7 +5,7 @@ description: "Permanently removes a dimension from the workspace. This operation sidebar_label: "DeleteDimension" hide_title: true hide_table_of_contents: true -api: eJzVVk1v4zYQ/SuELt0Cju2mycW37SaLblFsF4mLHoIcaHFkcUORWn7EcQ39976RZMmOs0HRbg89mSJn3sw8zjx6lykKudd11M5mi+wT+UpastFshafKPVIQUihdkQ2wEIV3lYgliY3zD6GWOU3FstRBuJq8ZBCx0caIQmojdNGajt6lBFoe9SM2qSaryOYaEZwXgPBUkMcOKbHaCnrSIWq7FrmzhV6nDj1Ms0k2xPqgkPIVGYp0tQ+C81p6WWHPh2xxt8ssPmCnDiw011rLWGId8pIqmS12WdzWbBiiR9ysmWSeviTtCVGiT9RMBqynM+fXZ1rtoUqSivw/BhvI/Bd497wTalBEge3P5xf8c3y9z7gSMBJ7L8a8eMnphoJLPqePLr53ySpx8czrcj4/9fpgcQFWmlvyj+Svvcclw3B0nGS42YhWY19Z10bn7aXOPgcG2J3W7lafKY98wZ5bIOqu0opCkGt6gSTkFnU09HI6N30m7/o0moYdLn84Py3mD1qVzj28R1ejO2HyTcp4TphiV4xDLGVsJ2ccqpDynEjxaKTubNOlJHLZjxspHkUaMhMrp7Y8PVFqG1qfFiWEIhm2SiZOBrjcaNQgQumSQRASciM9dansQ1kXddGXh6lWvIEAVc1NNT25FyWjPKVyeZzHWGKXUR+xzaKUEIoVEZ/F5C2q3+hYip+Xy09o3flEBPJaGv0nTlharEiWSVYzLzfil9vfPgrl8oRujx03aIyUA4qEcWvN1DFDvqNMgSR3zPt3ATVCEZFnijVTBfSONAhW5RSZLvRVH0YEDQEDCI6xXBsS1LY+f5dgFNa5dwHOKFaDuTFY6KpTumh1MO5jwq8mCF9zNPR3Hb/3Y4sfNelLzc3jINcsitkgAYERIJalYy1VrT60EgptXGSzQTRnu2HZsC5RnryO21ZgQ4W8t1NZ62kZY/2TDDp/mxjg7p517vk5gQc/GNyPaLc8Kl3zfB1zmCPeP5mitjdaayFhjtL7ht2LKXuu+JyV65XM/k6Y1vy1OK1Be3HaFq4F7S/rNuHaaxd07wNRCh30+fz88mz+49n8kjOEScSLzK79c9FpuDh88I5y242C9P94znueIz3FWW0gVlx38oZL6frw7ujxXowf6J0SBLHFbodbpd+9aRre/pLIc3di+SghEitmHb2qdOA1mr2QJtAr3L256Wfte/G1JPtNabd8g9Ik/sLygbZHfzgajMH+Tf/mSXTBDv6RDInw7P0noQ7/rxxF6wzeQt3reHB28iw2h6Jzdf3r9fIaU/IX7gm44g== +api: eJzVVk1v4zYQ/SsDXtoCiqN144tv2yaLblFsF0mKHgIfaHJscUORWs7Qjmvovy9Gkr/ibFC020NPksiZNzOPM4/aKotkkmvYxaCm6iOmWgcM7DeQsI4rJNBgXY2BXAywSLEGrhDWMT1Sow2O4L5yBLHBpAUE1s57WGjnwS0604N3pQm0YbdCsNhgsBiMQ4KYwBEkXGDCYNDCfAP45IhdWIKJYeGWuUenkSrUPtZ7q6bqGj0yXu+CqEI1OukaGROp6cNWBV2jmip7ZOGk1kZzpQpFpsJaq+lW8aYRQ+LkwlK1hUr4ObuEVk05ZWyLPdbTRUzLC2d3UBVqi+kfg+3J/Bd4M1mhJgZCEvtxeSWP0+N9xhWMyyvYeQnm1UtOt0gxJ4MfIr+LOVi4euY1Kctzr/eBMQXt7zCtMN2kFBNMyvLgWCgTA2Ng8dVN453pDvXyEwnA9rz2OP+EhuWAk7QAu77SGon0El8gqS0UO/b4cjq3QyY/D2m0rThM3ozPi/kT51WMj++082hh8mb8Tcp4TpgVVyTgSnM3OYehomwMopXRyP3euk8JjB7GDa2MIu4zg3m0G5ke1i5Q59OhEC2yF6vsudjDGe8wMFAVs7cwR9BrnbBPZRcqRHaLoTywzsoCmFg30lSjs3OxmvU5lfeneRxK7DMaInZZVHqFMEeUPc4poIW14wp+ub//COOyLIAwOe3dX2hBpCVADkKyvUx6Db/e/f4BbDS5xsA9N8QpG84JwcelE+qEodRTZgk4nvL+HUGIqdYeYuZGqNo02JPmCOpo0fehr4cwQC4Yoc2RvC49AnatL9+VTmJtUiSCOnt2jT8KRn111i06HeRdTKp0gzTq2vkw9A89v7NDi5806UvNLeOglyKKai8BJAg1chVFS22nD52EcqWm6nIvmpfb/WsruoQmJ8ebTmCpdlxtRrpxo4q5+UmTM2+zADzMROee76NOmPYGswPanYxK3zxfx9zPkayfTVHXG5016MwVBh4adiem4jmXfVGuVzL7O2E689fidAbdwbmwiB3ocFh3ucHURHKDzwoT9dDjcjy5KH+8KCeSYROJa90JyXBd9BoOxxfeSW7bgyD9P67zgWfGJ75svHZB6s7JSyl9Hz6cXN7Tw8esUFUkFovtdq4J/0i+bWX5c8Yk3Tkr1Eonp+fC+sNWWUfybtV0oT3hK9x9fzvM2g/wtSSHRR02coLaZ/lShXrEzckPRztri92d/s2T6IMd/ZHsE5HZ+09CHf+vnETrDd4agw0f7Z1di+2x6Fzf/HZzf6Pa9gvuCbji sidebar_class_name: "delete api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/delete-experiment-group.api.mdx b/docs/docs/api/delete-experiment-group.api.mdx index 38237ed0b..ec6c4ed02 100644 --- a/docs/docs/api/delete-experiment-group.api.mdx +++ b/docs/docs/api/delete-experiment-group.api.mdx @@ -5,7 +5,7 @@ description: "Deletes an experiment group." sidebar_label: "DeleteExperimentGroup" hide_title: true hide_table_of_contents: true -api: eJy1VtuO2zYQ/RWCTy1g76rb7IvfNrtqGrQNAtt5KBaGQItji1ndwst2BUP/nhlKti6Wt2mbPlkmZ87MnBke8sAlmFir0qoi5wv+AClYMEzkDF5K0CqD3LK9Llx5xWe8wCVBpu/lyTg82b0jM7QqhRYZ7mjDF48HnuMftFYStxQFKYVN8NvECWSCLw7cViVZGKtVvuf1jGv44pQGDGK1g3p2AnmZF3o/76ASEBL0vwb7q9BPphQx/Ae8Da2YssgNGLK/CQL6meJ1RBVDU3b0xZhxkVvcI29RlqmKPdXXnw1BHM5TKrafIbboOIy1siKXQssTNMPcXWydBrYr9KXelpq6a1VTBVI8VbtP8cVGiTDJpEFD7cTGIMcp5ETke4g0CHPJook9RYCQUhGySD/2qxiH5UsokRQs2zBEO/owtMBpVYI5A9Jz1MZimbBxgvGv2G9QGSZhp3Jgkqgz6MuoXDotkj2L1OGnKSFWu4rZBDpYmwiEcsayLTA8GUS3VTalGu6PeVCJVovdTsURlhBjlmLf5zJ32dbPZiZeVOYyvvgpCPCfypt/AQJkQDZR199ISdPDEFqLiobdQmYmWCaasQUWZCTs+f6MIzkZ7XCJRnOLMXjPZ1tNdi4VxkZZIdVO/UPgoecF+K2Ln8B+S5mngRkO+4CuyRDPAvt4aXugCY8jtIHvpuv7W5+0d/ZHMGpAz4mBnJr7yD+twmV0vwzv1uEDLq/+XK3DP6J34Ydw6Zd62F5d1oQzzu1I1fi8dadrdMYH8zBo9PBsDaqYNWJ/1vaJfl4a2VZJJo9Er9JJXV22unff6mldEw1vgjfnuoymhUPgD4X9pXB4jNGqk2T0up1S8/eIq1E4VqCfQYdao2LcfictH04mqosZqkBv6I4kTKQzRQF5iD3dybwjjHnGDHGKwpQUdK9LT6q/yPGiXvDrrjdz32VzfVCyplsSYociV/l73mTKJtWVKNVVYm35VhgV3zlCeNzQrTveB6FBnww2HdqKyGnqv4x5IoTWz+7AX9frj8xbM4HmmHnbgePVTp5b2qcmv5LZt4Tx5q/F8Qa+ZSrfFR60bd3KIbNlYVTrg/0zDfRNcHM7D36eB7eUIZrYTPjRaR8vzeSzcSfHKR66Sfy7x11bKJ396zIVyt9ITqcE0kxCX9vaSUC/RSNsCaZIJocD8gqfdFrXtPzFgab52LRCuKW6cVqkMvSN87YTqYFX0v5h2QrYj+xSlkfZzyuvt3gT4z/8fIKqeXnWOIHHx913j95E6T1NTxnQ2P8vofoP10G0xuAujqG0vb0zDar7B/4h/D1chzigXwFNNTQi +api: eJy1VlFv2zYQ/isEnzZATrQsefFbmnhdsa0obPdhCAyDFs8WW4lkj6cshqH/Xhwl25ItZ93WPSUW7767++74HXdSQ8jQeDLOyrF8hAIIglBWwIsHNCVYEht0lb+SiXQeULHpO30wnhzs3rKZTKRXqEogwCDHTztpVQlyLI2WiTQcxCvKZSJDlkOp5HgnaevZIhAau5F1IhG+VAZByzFhBXVyAHkZOdyMjlA5KA34r8H+cvg5eJXBf8Bb8JfgnQ0Q2P4mTfnPEK8nVImbNBV7X5nIzFkCS+ytvC9MFqm+/hQYYneeklt9goxkchJrRspqhfoALQJhlVGFINYOL/XWI3eXTFOF0YO1xxRfaJmrkA8aNNQOHPRyHELOld3AEkGFSxZN7CEClNaGkVXxoVvFaVg5BY8QwFIQmbN7H5GhIUCjRBVAR47aWKJUlOXGbq7Eb7ANQsPaWBCaqQvGWcHl8m3R4lkVFQQRPGRmvRWUwxGWckWirAKJFYgSiOkmQwXX8LDPg0skVOu1yZYeMANLatPl0lblKs5mqV5MWZVy/FOaJrI0tvmV1oksgW2Wx/4ujQ4dDIWotjzsBGUYYJlpRlAEeqno/DyRa4cln0itCEZkSpAdn9V2sHOFCrQsnTZr8w+B+54X4FdV9hnoW8o8DEx/2Ht0DYZ4VmjUpeOeJjydoPV8F8e+v4lJR+d4BZcN6DkxYLm5T/LjbDJdPkwn9/PJo0zk7M/ZfPLH8u3k/WQaP3Wwo7rMGec0tz1Vp/fteLtO7nhvHnqN7t+tXhVJI/ZnbR/o56WRbZVk8Ep0Kh3U1Wmrew+tntY103Cb3p7r8hSCqzCD945+cZXV4ja9PUpynci7ITV/ZwnQqmIG+Aw4QXQo7r6Tlvcns4QQ+irQGbo9CQPpDFHAHmrDO1keCRORscCclkC5472uI6lxkVMux/L62JtR7HK43hld85aErEJD27jnQ2ko314pb65yIv9GBZPdV4zwtOCte3oOCgEPBosj2ozJaeq/jHkghL+f7cBf5/MPIloLVVEOltoO7Fc7e674nJv8SmbfEiaavxYnGsSWGbt2EbRt3azygN4F0/o8A4YG+ia9uRulP4/SO87Qu0CliqPTPl6ayRennTxNcXecxL973LWF8t2/9oUycSNVWDBIMwldbWsnQSZy3Ahb7gKxyW63UgE+YlHX/PlLBcjzsWiFcMV1P+2kNoH/13K8VkWAV9L+YdoK2I/iUpZ72bfbqLdFxb9kIj/Dtnl51os62T/uvnv0JkrnaXrIgMf+fwnVfbj2ojUG91kGnjpnZxpUdy/84+T3yXwi6/orTTU0Ig== sidebar_class_name: "delete api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/delete-function.api.mdx b/docs/docs/api/delete-function.api.mdx index cb56c9eda..009fd7130 100644 --- a/docs/docs/api/delete-function.api.mdx +++ b/docs/docs/api/delete-function.api.mdx @@ -5,7 +5,7 @@ description: "Permanently removes a function from the workspace, deleting both d sidebar_label: "DeleteFunction" hide_title: true hide_table_of_contents: true -api: eJzNVN9P2zAQ/lcsP21SSysGL31jo2hI04SAPSGErsmlMTixOTtAFeV/312alIYCmvZDWl/q2N+dv7v7/NU6xZCQ8dG4Us/0GVIBJZbRrhRh4R4wKFBZVSYCUBm5QsUc1aOju+AhwZFK0WI05VItXMxVSpBFBWWqfLWwJuSYqgekwNGcyTrGPRrGgbUKQnCJgciQxKW4p06jysDYoEzGAEJIV8qUqgqoR9p5JBAWpykTPZZb8aQjxsceCAreoqBnV7Uu+YNhPfOb9nukjRTpIea8DkmOBehZrePKCzhE4jp0M9KE95Uh5IsiVdiMNvmexo6WY5P2qXLmiPTbyTZt/IN817ITPPcXg+D3pwfyN5zrsF2KMaoPkpQHr8WcY3AVJfjdxRNX8UQPXkQdTqe7Uaclz6AEe4HEc58TOVIMfA4c6cQxpowSC95bk7RjndwGSVDvlu4Wt5hEmTGJCKJZF1pgCLDEV3rE3KKJFl+nc94x+dLRaOTHEbAU6ei+SUFzZ1lRuRO9tSrHVmcsnpme9Mqa1AONNTI7TCoycdUKMRQs99UeeLOXx+g/QzDJUSU5rq5FCy/PEQhpA7h+znYhbVlX/nbOTStkn6kMZ/P18vJMtWgFDOfiu973gpPIhZzLeN9h9ivXtPD37mkB7bBMmbk2aTe0i4rH7F0wXUxnIHyyP90/HE8/jaeHwpAhke1KQrsntda52vKFAbX6WXv/s9V1zY34FCfeAjsDF1uRlQLW+rvaOBvDZ0OXY83k3BgB1TVPE3+QbRrZvq+QRJW8fAAysJBus0ZTE2TNOs/ABnynaR/OO/P5qN7i2W1CuZLJga3ki5d3uNox5IafQO95f53I+sItx96QkXf3T67a9vPBbWvAUZKgj1tnO/bXbHvO8fzb/HLOL+Qn2dCpZw== +api: eJzNVE1P20AQ/SurObXSAhaFi29tARWpqhDQE4qqiT2JF+zdZXYMRJb/ezWOExK+VPVDai6Od2fevJl5fh2UlAp2UVzwkMMZcYOevNQLw9SEO0oGzaz1hQaYGYfGSEXmPvBNiliQNSXVJM7PzTRIZUrGmRj0pYnttHapotLcEScXfDJYBz83904qg3VtMKVQOBQqTRFK2jWnYmbo6mTczGDNhOXCOG/aRGAhRGJUFqcl5HCkVelkJAYWIjI2JMQJ8qsOPDYEOayY/xjeLThtMqJUYCEVFTUIeQeyiBqchJ2fQ2+B6bZ1TCXkwi31do33sBN4vuPKFVRFWBL/Nth6jH+AN9GTFINPlDR+PzvQx/Zet8dl9rMDs0pSyIOXcs4phZYL+hbkJLS+NAdPsg6z7HnWqRdij/UF8R3xMXNgc5hlj4kWiuCFvGguxli7Yljr3nVSgO5562F6TYXojllFIG7ZaEMp4ZxemFFvQZzU9DKd85HJ55FGrz8LgnOVDqyGlGBioSGpguptUDkNOpMKcthbKWuv29JYr7ujomUni0GIqXFSLXYxut1KJH7C5IqPrWJcTVQLT+8JmXgdMHlEu9CxLDt/HXM9Cj0H+2Q3Xy4vz8wQbbCViryMs18JTjOneq/rfYPZr5QZwt+qMwQMy3J+FgbQcWkXbSSOIbkxZzQQyGE/2z/cyT7sZIfKMIYkDQ6iGT+ppc7Nhi9sUesetfc/W904XKEH2Ys1Oq/NtlxrA0v9Xa2dDSzk2y43sVCFJBrUdVNM9J3rvtfj25ZYVTmxcIfscKrTvuqgdEn/l5DPsE70xtDenY/m8968xnM8RL/QzWHd6htYuKHFM0PuJ71ded5fJ7IsuOHYazL63f2TUpt+vlVtGfCxKCjKxt0z++s3Pefo+Ovx5TH0/U/Z0Kln sidebar_class_name: "delete api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/delete-secret.api.mdx b/docs/docs/api/delete-secret.api.mdx index 3632ebcbf..f4c8c3043 100644 --- a/docs/docs/api/delete-secret.api.mdx +++ b/docs/docs/api/delete-secret.api.mdx @@ -5,7 +5,7 @@ description: "Permanently deletes a secret from the workspace. The encrypted val sidebar_label: "DeleteSecret" hide_title: true hide_table_of_contents: true -api: eJy9VU1v2zAM/SuCThuQL3TNJbduzbACw1A02SkoCkVmYrW2pEpy1yDwfx/pr8SJExRbt1Mc8ZF8JJ+oLY/AS6dsUEbzCb8FlwoNOiQbFkECATwTzIN0ENjKmZSFGNgv4568FRIGbI5/QUu3sQEi9iKSDJjyzEFqXvBA6IhJobUJbAl4KvHUQTTgPW4sOEFpbyJMfF0kmxWJ0GiFEykeOM8niy3X+AdBxU+PK2JqRYjx28sYUsEnWx42ljA+OKXXPO9xB8+ZwmR8ElwGea8J89o3bt1XUR0qBhGB++NgTTf+It49nXhrtAdP+IvRiH7aw9nvEUMEq10wlTQ64NjISVibKFm0dvjoyXN7zMQsH0FSp9sp7qqIDJlmMmQO2Mq4WgDNyPyAVTSKiaNGEKgBZ4uc0Evj6Cu/zKmwoXlbR+5BlQWW3etoTItPh13GQq/hwYHwpxBoQzE+LDdnzSIcm3scWadk4RGC+kEhS/RJhA8PqYnUSp0O3Aa9PXxLDYuDAlt8W7W1W9WRvoN2r+w7qi2okMCBpurhf6m0lOfE7XJ0eSxFhJrMSfhhwleT4SVH1E6O6DXuEvANxnVaJDNwKJWpcyiR8TvpuC2vFLwX6y6F5bvaO+h0tYA8xJoWES/75KmBuJ1iQ5urXJPFzsKNNOHD8rL44ZZ6ndMaqG5Bscp8qkK8GQirBnEI9rPwSl5l5Lm4p7VyaAe8Wq4B3O+izagVZbWnYzbl0/nRbf82n9+yAs0EwrHgqt/17iLPJdlppGeYvSVNAT+XpwAUA1J6ZYqg1aBmGY7WGq8qH5yWL0NfjC7G/dGn/mhMDBES8Pna7ZdK3qx5Vw62S6O2//nwVa0K8BqGNhH4ZCD1zCVEqNTQglcaQvSkvrExFkem7RYnAj9dkud0/JyBI2Xh54twSiypY6izSHn6RoWuROLhTOkf7qrt85GdYlcdCk0rpKgV/+HnE2zqZzlH9dYv37vnL/PsvdsNB7oy/yTV/qveylYCrqQEG/ZsR9sq318S19Pv0/kUxf0bMFtJBw== +api: eJy9Vdtu20gM/ZUBn7aA7AjZ5EVvvWSxBRaLIkmfDCOgJdqaVpqZcii3hqF/X1AXx4qdoOhlnyQMb4eHZzh7KCjmbINY7yCDD8Q1OnJS7UxBFQlFgyZSziRmzb42UpL56vlzDJjT3NyXZMjlvAtChdli1ZCx0TDVfkuFQVeYHJ3zYlZkmHK/JaZiDgn4QIxa9n0BGbzrit11hSCBgIw1CXGEbLEHhzVB1n8SsIo0oJSQQMxLqhGyPcguqE8Utm4DbQJMXxrLVEAm3FCbHNJ8m3nezGwxpioJC+IfTnZg4yfyLfUkBu8iRfW/TFP9TIdzzJG5TFMzhkACuXdCTjQIQ6hs3lF78Slq5P4UiV99olyZnpa4HTKaKNzk0jCZtedRAIeRxbkZYHQTjwaZjKMtsWGShh0VY1zDVnY678AaLrZvsGfvDDETPGfseYluQw9MGJ/zYEKh4mG1e9GMcmpOYO25VgsUKDQTW5PGVBjlofaFXdvnE0+dvj/9RA2LJw1O8E56m1J1pvwZ2EnP+zIBsVLRE02Nw387aKltFdtVenUqxVuKvuGc/vXyl29cYa7Sq0c5tglcnxPweyfEDqs74i3xDbNnc/2LdDyVV00x4uacwtrH3s/AOUeBRuBGFxH0PEUlsCYpvW6ufk12O0tKyOCivyzxYq9ct7oGhlvQrbJYWyl3cwx2XoqENxht/rrRyMVS18pTOyETHxyWj9nulIq+2+dzHtrX85Pb/vf9/QfTeRtspCQnA9/j7tLIldp1pC8g+54ynftLdTqHbkDWrX2XdBjUXROIg492iNkSxz71ZXp5PUv/nKXXijD4KDW6x/0yyNsc3pUn2+Wgtv/z4RuoEvomF6FC6xR6w5UC6jW0gEFDkEA23tjSR1HTfr/CSB+5als9/tIQq7KWCWyRLa6UscUeChv1v4BsjVWkF1r/43bYPq/Mc+iGQ3S6QrpeIQNI4DPtxme5XbbJ+PL98vp9naN3+4BBr8xvKXX8qk+q9Q6v85yCHNlOtlV7vCTe3fxzc38DbfsfMFtJBw== sidebar_class_name: "delete api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/delete-type-templates.api.mdx b/docs/docs/api/delete-type-templates.api.mdx index c4c164610..42a69b5af 100644 --- a/docs/docs/api/delete-type-templates.api.mdx +++ b/docs/docs/api/delete-type-templates.api.mdx @@ -5,7 +5,7 @@ description: "Permanently removes a type template from the workspace. No checks sidebar_label: "DeleteTypeTemplates" hide_title: true hide_table_of_contents: true -api: eJy1Vktv2kAQ/iurPbUSL6Xhwi1taBupSlFDTwihxR7wJrbXmV2TIOT/3pm1eRgMqprmxLLz+mbm2xlvZAg2QJ05bVI5kCPARKWQungtEBKzAiuUcOsMhIMki5UDsUCTCBeBeDH4ZDMVQEfcGxFEEDxZkQEuDCYQipdIxyBCiMHpdClb0pBMcaC7kELdsgDG5HpcebakkylUCd2jlYPJRqb0h3QZwMyfW1Izzky5iM6WgiZKDjZeg+6tQ45VtCTCc64RKJLDHIrWztdr2+CyrcOtqwhUCPjPznZFeIO/Kd/YzKSWakD6V70e/9Rb01AvQYpia0kRA5M66h3bqiyLdeCr3X207GBzCsjMHyFwXHXk3jhdht9Xuwm7l553pcJQc1QVjw6dkmE9nW+QAupAPMG6vVJxDqJ0IShSHrgcQeSWWERkEosYXvWcyaScooQzypny9NkRE9Hky8jkzpPyZnTXIRhOu5hx/SxxHYdvyCuIVLqEGYKy5zRI5iCczdcXxcqdiluSHwVLJOUAbaepumQTK+tmiQn1Qr/JshFSjWiTowRreGu51UvVgLEheKv2RA8pMt33ooHBvyryfqmYWxSM+rp3fcp/UjU5BnBv3FeTp6EgrT35yarf9GruyC8SGR8AV4BDRKJT/11eTQLWqmXTmyn2JWiA01QCtlBLHoGSyyX2E5LKSeMxMjxB/WgFPzRpGg5kl+Pa7mbXioKnEAQ5arf249Qm2kXrjsp0J3Iu+6ysDm5yNp5Meaody0Eh4E5huvf2wEUp8z7vc1cIvpfHA+D7eDwSXlsoUqfUq8pvRydbzlnOzb2A7G/CePVLcbyCb5VOF8Y7rVr2kFOTM2N1ZUN9s6Xrq95Vv9371O71GSGpONqdbFoth5Lv4qiDJ5Nox7/33b5VkRy8ui65ol1FoHOMGUJJoInXYYSD/WumpkeUGUs3G2oH/Ma4KPj6OQdkWtFxpVCrOZeLSBZqy2di6ELFFi7k++FXNZ4+inMAq0uV8ozxe4L+0ZHWRu27oCD+blfvfwdRBjv4cNgB4UfzLqEOPytq0UqFmyCAzB3ITiZXcTgpboc/huMh0fsPi2Z5/A== +api: eJy1Vk1v20YQ/SuLObUAZROOfeHNadzEQJAatnoSBGNEjsSNyd3N7FCxIPC/F0PR+qSNoqlPEna+3ryZfcs1FBRztkGsd5DBHXGNjpxUK8NU+yVFg0ZWgYxQHSoUMnP2tZGSzE/PTzFgTmfmmzd5SflTNIF47rmmwvwsbUWmoIrEugUk4AMxaqHbAjL4pAYarwKN+8wREgjIWJMQR8gma3BYE2SgAB67/wlYxRlQSkgg5iXVCNm684AMorDWahNg+tFYpgIy4YbaZJvreeR5MbLFS6qSsCD+z8m2JPxCvqmexOBdpKj+F2mqP4ejGeDLXKSpeYmEBHLvhJxoLIZQ2bxj+/x71ATrU0B+9p1yUdZZZyN2U37H9hD2zvp6KiwKq1WxuttP2iZH7XwmR2xz80Sr0RKrhswmhYnCTS4Nk2kiFWbu2cwrerYzXSYUNEyBKZKTrjsjJftmUfpGuqW8vrs9gwTESqW4/trgOi4/0FdeolvQIxPG1zyYUKh4nK3eNKOcmhPQS6EWKFBoJLYmjakwymPtCzu3vxQ5COlg0SZHDR7gPejtkKoBjAPFk4Mrur8i090sBjb4vl/eP/rNbVtFfZlenu7/PUXfcE7fvPzpG1eYy/Ryt/xtAldDt+bWCbHD6oF4SXzD7NlcvcutqSlGXAzdmXZHwQCcIQo0AhcqgaB0mZ1CThOoSUqvCtpJK3WiKSVkcK514/l6O4pWVYjyhq2sOjmNtZVydYbBnpUi4SNGm183GjyZqqod2wmZeOsw3WV7UFI2fb+ec0uEnsOxAHwZj+9M522wkZKc9My/SKdGztSuw30D2b8p07m/Vadz6EZl3dx3SfuRPTSBOPho+5glcdykvkgvrkbph1F6pQiDj1JjtzL947DZd3M0wRMl2u7f+76+PUlCz3IeKrROQTdcKYTNAk06H0WY7W7zNIHSR1Hrej3DSH9z1bZ6/KMh1rWaJrBEtjhTuiZrKGzU/wVkc6wivdHvb/e9PP1uXgPYH6JTjeneCcgAEnii1cF3QTttk5en938HsSm29+GwBaKX5l1K7X9WHFTbOFznOQXZs50oV7uvFJ9uvt6Mb6Bt/wGLZnn8 sidebar_class_name: "delete api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/delete-variable.api.mdx b/docs/docs/api/delete-variable.api.mdx index 1051921a2..35d28fe26 100644 --- a/docs/docs/api/delete-variable.api.mdx +++ b/docs/docs/api/delete-variable.api.mdx @@ -5,7 +5,7 @@ description: "Permanently deletes a variable from the workspace." sidebar_label: "DeleteVariable" hide_title: true hide_table_of_contents: true -api: eJy1VU1vm0AQ/SurPbUSjq00vvjWNq4aqaqiJO3FsqI1jM0mwJLZJQ1C/PfO8GVjYytKmxOw8+b78baQAVgfdeq0SeRMXgPGKoHERbkIIAIHVijxrFCrVQRijSYWLgTxx+CjTZUPZ9KTJgVUHOAqoBCXldvvxoXMqUIV0xFaOVsUMqEPglUPT2rOmioX0rv1Q4iVnBXS5SljrEOdbGTpSYSnTCNQfIcZlF4X5mVkcDPSQRsqBBUAvjlY19c/xFvyiU1NYsEy/nwy4Ud/0P0pCcKI1omS+SZxtAR2U2kaab8a7/jBsm9xWItZPYDveNbIy3C6zly3NVDxs4qyYUuvygG7H6pkA/cIyh5DkM1BcL/KT5qVOzR7cm2If2SRAYFGTlP95BMp6+5jE+i1Ph64D3p9+N4CF3sN9urt9dYf1UD6gbK9lvX1/IkoTrsIDuhw0zDha0ODsuQqLyYXhzwiqMnQh5/GfTNZEghCbZlEXtMh9l1RXExUdAv4DDhHNCim70LBGKxVmyGuldvuB8oZGgF7qA2riGwnZXmIJC6hYempFauSHBKUmRy3wmXHBU++5P8Y/Ay1yystsrF2YX6mUn0WOpd+UVb7nzP2XSxZF/btoBCwAyy30W55HHXHx2N2I+DzPQLN5Pe7u2tRoYUiODXdzLwVH/ZcsZ3XeqKy16Sp4KfyVIBqSTpZmypos6zbjNabGqsbH9qYrUOfT86no8mn0WTKFRLE0V2y1aGG5GLnathTm45zb7uHmrYdvLhxGinSbyojw4hD14xYyI4RhJ9VddEWQyqVjUVB84VfGJUlHz9lgMyTpde5VawJtOV3YtxaRRZOtPHhplGWj+JYfc2hSvJOF2aSXh8hb2/JkrjYXkT/PX+dZ+ca7WrgH+BdUu1esr1sNeCz70PqdmwH+lPu/vSX8x/zuzlR9S9LAwtR +api: eJy1VU1v2kAQ/SvWnFrJBIvCxbe2oWqkqoqStJcIRYs94E3sXWd2TIOQ/3s1tjEYDIrS5gTa+Xrz9vntBmJ0EemctTUQwjVSpgwaTtdejCkyOk95K0VazVP0FmQzjxP0/lh6crmK8AJ8sDmSkgZXMYRwWZX9bkrAh1yRypCRHIT3GzAqQwjrHx+0TM0VJ+CDixLMFIQb4HUuOY5JmyWUPhA+F5owhpCpwNJv27wMLC0HOt62SlDFSG9u1u71D/1mcuJyaxw6yR8Fgfx0ie6y5I2CwNsWgQ+RNYyGpUzleaqjit7ho5PazTEWO3/EiIVrkstgXU+u1+pBvFJp0R/poOyJR4kyS3wgVO5UBqFijB/m67NhxcdhHxaWMolArBgHrDOUmlQ5fshsrBf6dONu0uvbdy7w/mDBDt7Obl2qesb3wPa3qq/5n/nAmlM8ksNNo4SvjQzKUlCOg/Gxjm7Q2YIi/Gn5my1M7I2D8U5JpQ+TPvVdGUYyKr1FWiFNiSx5k3eRYIbOqWWf1srd9j1w+iiQCrUUF4EtU05IzJATK9ZTO1ZlOZxACMOtcbnhRpgv5TvGqCDN68qLXKY5WV+oXF8kzPkX5XT0uZDa+5n4wmEcFSG1CbNdt1uho974dM+WAjk/EFAI3+/urr0q21MFJ2i44XxrPlI5l7hc6xlkrxlTpZ+bUyVUl6TNwlZNm8u6LXKk3Drd1KyQXN16FIwmg+DTIJgIwtw6zpTZ+VAjcm/vaThwm1Zzb3uHmrUZX3iYp0obgVFQKq1rRdxDqwjwIaxwzXxIrGMJbjZz5fAXpWUpx88Fkuhk5rdllWpi7eR/DOFCpQ7PrPHhpnGWj94pfM2hMuvWF0IAH55wvX0ly1npbx+i/z6/nrP3jLYY5AN4l1H7j2xnWp3wOYow573Ykf+U+x/95fTH9G4KZfkXSwMLUQ== sidebar_class_name: "delete api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/delete-webhook.api.mdx b/docs/docs/api/delete-webhook.api.mdx index 81bdd3fec..dc17d7cc2 100644 --- a/docs/docs/api/delete-webhook.api.mdx +++ b/docs/docs/api/delete-webhook.api.mdx @@ -5,7 +5,7 @@ description: "Permanently removes a webhook config from the workspace, stopping sidebar_label: "DeleteWebhook" hide_title: true hide_table_of_contents: true -api: eJzFVEtv2zAM/iuCThuQNEHXXnLr1gwrMAxF02GHIgfFZmK1tqRSdNLA8H8faTuvNi2GPTBfLIuvj/w+s9IpxARtIOudHulrwMI4cJSvFULhlxCVUSuYZd4/qMS7uV2oOfpCUQZq5fEhBpNAT0XyIVi3UCbP1bykEkHBkhMp58nObWKkQlTkOdKQApcGbx2d6J72AbAxX6UM4RJyIPjRlmRrMGgKvsGoR3eVdvzBXs2rp62ADoYyPsckg8LoUaVpHcQnEjIiXfc0wmNpETg9YQl1b5vmqe9x0bfpJlUGJgX87WTbgfxBvqncxMDDgij+p8MzeR3ydDAkxS5qEyMZz46F3ED0JSbwzdNnX7pUnT2LOh8OX0ZdOZ68M/kEcAk4RvSo2HEX2NOsCmKiJdaEkHdUD+6jJKhedu5n95CQMIvCPNm2zwJiNAs4MiLGRpZyOA7npkPyqYNRy8MRZiGC0d2Moua5sowyLxpLm/E14mLpjPSgU/igEipr4QuSEi2tG83FwlK2PjHBnmRE4aOJNrkoJfJuKvw/t4NBwK3DdJdtIrNo230957Z/uWcoh4R8ub29Vo23MuzOHXcD34hMImdiF07fQPYrZRr3t+o0Dg1D1s19k7RjalIyt8FH28UwXbFNfTo8Pe8PP/SH54KQXYhXjoR2v1GrbbXbAAfIqp3e/s+26qZG8ESDkBv+zbmLEnOB1srpTq+22EdNUyyBjPsUU1UxOfAd87qW68cSUETGx6VBa2YyPJZcaqOcWaxzk0d4Ywjvbrr98V69hq67NG4tRJi8lC8+PsB6s0prFvJmW/31+m2dvV27xSB/zz8ptb+JD6q1DhdJAoH2bC82V72/Ly7HX8e3Y9b5T4oAfYk= +api: eJzFVE1v2zAM/SsCTxugNkbWXHzr1gwrMAxF22GHIgfFZmK1tqRSdNrA8H8faDtf/cKwDywXxxL5+Mj3zAZyjBnZwNY7SOECqTIOHZdrRVj5FUZl1APOC+/vVObdwi7VgnyluED14OkuBpOhVpF9CNYtlSlLtai5JlS4QsfKebYLmxmpEBV7xYVhhS4P3jo+Bg0+IHXX5zmkcIYlMv7oS4KGYMhUyEgR0psGnKkQ0v6hwQrpYLgADTErsDKQNsDrIDGRyboltBoI72tLmEPKVGOrtzCPR56WRzbfQBVocqTfBtsO5A/wZnISg3cRo8SPkxN5HOp0MCQ1Tk7UJkcQT15KucToa8rwm+fPvna5OnmSNUmS51nnjpGcKa+QVkhTIk9qkiS7RA2Zd4yOJdeEUA5Sj26jADTPO/fzW8xYlCVRnm3fZ4UxmiW+MKJWA1su8WU6lwOTTwONVn4a2CzFMDDMKMJMQ4VcePFY3o2vMxcXkMJocPioESlb0QuzmiyvO8/FynKxPjbBHhfM4aOJNjutJfNmJvo/vUdDSNuA2Q7tSmbRt/s65rZ/OQf9RJAv19cXqotWpuYCHQ8D35hMMudyL5q+wexXynThb9XpAjqFrFv4DnRQ6qoOSMFHO+SskGIPPU7Gk6Pkw1EyEYbBR65M55ThM+q9rXYb4IBZs/Pb/9lWw9QYH3kUSmOddFFTKdR6O93Aw5Z72jU101D4yHLVNHMT8TuVbSvH9zWSmGymYWXImrkM76aB3Eb5n0O6MGXEN4bw7nLYH+/Va+yGQ+PWIoQpa3kDDXe43qzSdtbqzbb66/X7Onu7dstBvp5/Ump/Ex9U6wNOswwD790921zt/r44m36dXk+hbX8CigB9iQ== sidebar_class_name: "delete api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/discard-experiment.api.mdx b/docs/docs/api/discard-experiment.api.mdx index 3d969c77d..a7219c130 100644 --- a/docs/docs/api/discard-experiment.api.mdx +++ b/docs/docs/api/discard-experiment.api.mdx @@ -5,7 +5,7 @@ description: "Discards an experiment without selecting a winner, effectively can sidebar_label: "DiscardExperiment" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "patch api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/get-config-json.api.mdx b/docs/docs/api/get-config-json.api.mdx index 37473835f..390d2a24d 100644 --- a/docs/docs/api/get-config-json.api.mdx +++ b/docs/docs/api/get-config-json.api.mdx @@ -5,7 +5,7 @@ description: "Retrieves the full config in JSON format, including default config sidebar_label: "GetConfigJson" hide_title: true hide_table_of_contents: true -api: eJztVk1vGzkM/SuETruAnRjp5pJbGxS7LdAmiLPYQ5ADPeJ41GikqT6ceg3/9yVHE8fT2kEuvSwK2PCMSJF8j0+UN0pTrILpkvFOXagbSsHQiiKkhqDO1kLlXW2WYBx8nF99htqHFtOE3yubtXFL0FRjtmlwjPBoUgOxaqjFOAFtWnKRo/MzOg1+RSEYznoCt42JQE533rgE/Oy5jNb8S1qyQGUNuSSVYIIuUE1hv4Ti0+fMAaV+aNHhkjhfOlET5Tsq6x80I/uT0mXv/DEy0onqMGBLiUJUF3cb5fiFvUw9bb02tSE9jQyR2NMIMQ2hpsBvY77+aYwlyFF4SAxnAm9mf0Cg2DFgEkwpECZGhAw1BB8m8NiYqgFHpNnqYUHQMDGWfSJJVYnsGhZrYAarhxKYnkNWXhP4ul9sUup2loFP/gT6mk3geBy9xQeCmAMVGp84rdDxlzOMg0uDcOWNhuwcVRQjBi4EreW2NuTEm0Mhf52H3GkuNgrXpd3qYqPSuhMiI+vILX/xdZCv7XayU9y3qQ/LqdE/CO0YpduJeipYXaSQaRTs0YeH2OEB4b4+3r2sFIRR/M9mM/kZd3J0noBddqxwrpK032wxpt2ZkoWjdTAris9zYsJ7K31Lp51FQXF810Qlkyx9X9BVTl1O17i2HrWE5tjnh2B84HzBoZ1T4MH0XhQH52MwezVh11lT9UPl9IvMkUOV+cUXqpKMmCAjKJnCYivqWNIh4M8gDpRzM1RyOZSxLWgSLmVyqcvRBPy0m4CKu8jzrfEy/Dof+4IwNfx2WqZmQcDCoCoHk9b9HIwtT+/1CXbmRE7LO4ymeptl2929CO17O7G2w87h/jnaXGgpyI/H3FEh6z8Mi79ub6+h9wZkdwY1cP+kZtm5ELuI+IXKXpOmd38pT+/QN8u42vdBh6bNM7eZKTbDHu5cLKHPZmfn09mb6excKpQu8BUlW4fzypqF0kAYrqVRaZtn7f2vbuahG3snnNnJwQriotE7Vfazc69SFlYjGmbDZsMtp7+D3W5l+WumINLlxxUGgwtpiWj1afKJqrWJYuCjUKON9ALNvy6ocqEfbNEDrY/8R1qhzeKvZEa8nu3fbgZkv8PLOfduyZ+fav8OHWUrDm+rirq0Z9uPsj91r6/mtzww/gMsZgLp +api: eJztVsFuGzcQ/ZUBTy1A2YJTX3RLjSJNgNaG5aIHQ4cROaudeJfckLNyVGH/vZjdtSw5kuFLLkFOC5DDmTdvHh93azxll7gRjsHMzC1JYlpTBikJiraqwMVQ8Ao4wKf59d9QxFSjWODgqtZzWIGnAttKxsAMjywlZFdSjdmC55pC5hiyBQwe4ppSYk/5DO5KzkDBN5GDAGeIjXDN/5HXKuAqpiCKBAWaRAWlfQhDTF+zTaj4ocaAK6opyJmxJjY0rH/0ZmY+kFz1wZ9yDMaaBhPWJJSymd1vTcCazMxwMamj54LJTzIHR8YaVmJKQk/J2Bd8/VtyRdBm5UFKzhbeTX+DRLmJIZP2JIlQyANmoJRisvBYsishEPkMEmFJUGLwFXnIpKiEqg0sN+BKcg9DYnpO6aIniEW/WIo0u52RT86Q6EvLibxmr/GBILeJBhqfOHUYwKEr6TC5DgjXkT20IZCjnDFtwGFVZXgsKWh0IsBEECK0jUehrFwP4zazrZFNo0RmSRxWP/k6ylfX2Z3ivk5iWk3YfyO0U5R21jwBNjNJLR0ke4zpITd4RLhvz7fQlaHDrPEX06l+Did5cJ/gYjrdsWLsWLQ/XGGW3Z3ShZM4us4aF4NQkH6Xvsp5U6F2cfqUNcJS0UtA1600rdzgporoNXVnzeWxNj4GoRSwmlNaU/pDFQeXh83sYcKmqdj1pnL+WX3kGLK4/ExO1GKSWpDwwGKt6ljRscafmzgC53ZEcjXC6IZuBFfqXObqwAH/2jmgWVhTk5RRza+JuQeEUpqZOR9cc+jAmkyuTSyb3gdzzVJuzrDhM70tv2Nm977VY/cLFdrLfcJEaReweM42V1qGzk/n3FGh69+YxZ93dzfQRwO2UlKQkfsnNevJpe6riF9B9pYyffhrdfqAflgcitgnHYc2bxtKTcw8nllTykPqi+nF5WT6bjK9VIQ6hRp70Yz39QMJDAOE8Vk6gLZ91t4P9TKP09i74Z01baq040Gj92Y4b6zpVbqwplQNz+7NdrvETP+kqut0+UtLSaW7sGaNiXGpI1GtPjmfqtpz1g1vZgVWmV6h+ecDNTzoR0f0QJsT/0hrrFqNN+oRb2f7l9uxs1/h9Zp7r+T3L7X/hh5UGwLeO0eN7O3tZ9l33Zvr+Z3puv8BLGYC6Q== sidebar_class_name: "post api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/get-config-toml.api.mdx b/docs/docs/api/get-config-toml.api.mdx index b552e1ba8..d8fe87db2 100644 --- a/docs/docs/api/get-config-toml.api.mdx +++ b/docs/docs/api/get-config-toml.api.mdx @@ -5,7 +5,7 @@ description: "Retrieves the full config in TOML format, including default config sidebar_label: "GetConfigToml" hide_title: true hide_table_of_contents: true -api: eJztVk1vGzkM/SuETlvAToy0ueTWDRbdAlskSFzsIciBHnE8ajTSVB9OXcP/veRo4nhaO8hlL4sCNjwjUuTj4xPljdIUq2C6ZLxTF+qGUjC0ogipIaiztVB5V5slGAfzq0//QO1Di2nC75XN2rglaKox2zQ4Rng0qYFYNdRinIA2LbnI0fkZnQa/ohAMZz2BeWMikNOdNy4BP3uG0ZrvpCULVNaQS4IEE3SBagr7EIpPnzMHFPzQosMlcb50oibKd1TWP2qu7AOly9557lvL1g4DtpQoRHVxt1GOX9jL1NPWa1Mb0tPIJRJ7GiGmIdQU+G3M17+NsQQ5Cg+Jy5nA29k7CBQ7LpikphQIE1eEXGoIPkzgsTFVA45Is9XDgqBhYiz7RBJUiewaFmtgBquHEpieQ1ZeE/i6X2xS6naWgU/+BPqaTeB4HL3FB4KYAxUanzit0PGXM4yDS4Nw5Y2G7BxVFCMGBoLWclsbcuLNoZC/zkPuNIONwnVpt7rYqLTuhMjIOnLL33wd5Gu7newU923qw3Jq9C9CO0bpdqKeAKuLFDKNgj368BA7PCDc18e7l5VSYRT/s9lMfsadHJ0nYJcdK5yrJO03W4xpd6Zk4SgOZkXxeU5MeG+lb+m0syhVHN81UckkSz8Dusqpy+ka19ajltAc+/xQGR85X3BobynwYPpLFAfn42L2MGHXWVP1Q+X0S/SHkfnFF6qSjJggIyiZwmIr6ljSocKfizgA52ZAcjnA2JZqEi5lcqnL0QT8tJuAirvI863xMvw6H3tAmBp+Oy1T8zSVSRipysGkdT8HY8vTe32CnTmR0/InRlO9z7Lt7l6E9rOdWNth53D/HO1WaCmVH4+5o0LWfxkWf8/n19B7A7I7FzVw/6Rm2bkQu4j4BWSvSdO7v5Snd+ibZVzt+6BD024zt5kpNsMe7lwsoc9mZ+fT2dvp7FwQShf4ipKtw3llzUJpIAzX0gja5ll7/6ubeejG3glndnKwUnHR6J0q+8VZiGFhNaJhNmw23HL6HOx2K8tfMwWRLj+uMBhcSEtEq0+TT1StTRQDH4UabaQXaP59QZUL/WCLHmh95D/SCm0WfyUz4vVs/3EzVPYGXs65d0v+96n279BRtuLwvqqoS3u2/Sj7U/f66nbOA+MHrn4C/Q== +api: eJztVsFu2zgQ/ZUBT1tATox0c/GtDRbdAlskSLzYQ+DDmBxZ01CkSo6ceg39+2IkxbFTO8hlL0VPAsjhzJs3j4/aGkfZJm6EYzAzc0uSmNaUQSqCsvUebAwlr4ADzK+//AVlTDVKARysbx2HFTgqsfUyBmZ4ZKkg24pqzAU4rilkjiEXgMFBXFNK7CifwbziDBRcEzkIcIbYCNf8LzmtAtYzBVEkKNAkKintQxhi+pptQsUPNQZcUU1BzkxhYkPD+mdnZuYTyVUfPI+1N4VpMGFNQimb2f3WBKzJzAyXkzo6LpncJHOwZArDSkxF6CiZ4gVf/1TsCdqsPEjFuYD3098hUW5iyKQ9SSIUcoAZKKWYCnis2FYQiFwGibAkqDA4Tw4yKSohv4HlBmxF9mFITM8pbXQEsewXK5FmtzPyyRkSfWs5kdPsNT4Q5DbRQOMTpxYDWLQVHSbXAeE6soM2BLKUM6YNWPQ+w2NFQaMTASaCEKFtHApl5XoYt5ltjWwaJTJL4rD6xddRvrqu2Cnu+ySm1YTdD0I7RWlXmCfAZiappYNkjzE95AaPCPft+Ra6MnSYNf5iOtXP4SQP7hNcTKc7VkwxFu0Pe8yyu1O6cBJH1xXGxiAUpN+l73LeeNQuTp8qjLB4egnoupWmlRvc+IhOU3eFuTzWxucglAL6O0prSn+o4uDysJk9TNg0nm1vKudfczyOLC6/khW1mKQWJDywWKs6VnSs8ecmjsC5HZFcjTC6oRvBlTqXuTpwwC87BzSLwtQkVVTza2LuAaFUZmbOB9c8l8EJM9k2sWx6H8w1S7U5w4bP9LZ8xMz2Q6vH7hcqtJf7hInSLmDxnO1OaRk6P51zR4Wu/2AWf87nN9BHA7ZSUZCR+yc168ml7quIX0H2ljJ9+Gt1+oB+WBzK2Ccdh3bXNpSamHk8s6aUh9QX04vLyfT9ZHqpCHUKNfaiGe/rJxIYBgjjs3QAbfusvZ/qZR6nsXfDu8K0yWvHg0bvzXBeg5WYRWEq1fDs3my3S8z0d/Jdp8vfWkoq3UVh1pgYlzoS1eqT86mqHWfdcGZWos/0Cs2/HqjhQT86ogfanPhHWqNvNd6oR7yd7d9ux87ewes1917J/7/U/ht6UG0I+GAtNbK3t59l33Vvru/mpuv+A65+Av0= sidebar_class_name: "post api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/get-config.api.mdx b/docs/docs/api/get-config.api.mdx index 2632ff82a..766192235 100644 --- a/docs/docs/api/get-config.api.mdx +++ b/docs/docs/api/get-config.api.mdx @@ -5,7 +5,7 @@ description: "Retrieves config data with context evaluation, including applicabl sidebar_label: "GetConfig" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/get-context-from-condition.api.mdx b/docs/docs/api/get-context-from-condition.api.mdx index 596398aeb..5cf1a1761 100644 --- a/docs/docs/api/get-context-from-condition.api.mdx +++ b/docs/docs/api/get-context-from-condition.api.mdx @@ -5,7 +5,7 @@ description: "Retrieves context information by matching against provided conditi sidebar_label: "GetContextFromCondition" hide_title: true hide_table_of_contents: true -api: eJzNVsFu2zgQ/RWCp13Adoxsc8mtDdptsNitkaSnwAhocSyxkUQtScU1DP/7vqEkW7blbIuiQH1IbHJm+Gbm8XE2UpNPnKmCsaW8lncUnKEX8iKxZaCvQZhyaV2heF8s1gLfksyUqVCpMqUPonL2xWjS7KANm/mJ+OyxEKxYmlJ3kbwImQpiZetcC1VV+ZotfEWJWZpE+IRK5Yz1EzmStiIXj7zVAPUnhZsmxgdni5vuHNg5+rcmH95ZvZbXGxlPKgN/5QNMEmNcfPGc20b6JKNC8bdgQk7nI9+WVR1map1bpeUWn5GslFMFBXJeXj9uZIkf8P86ti4dGw0ohsuXkdLk8Kt31LpiS4+6lqncNpiNIyQWXE3bUS/YyrpnX6mEfiDenFd8hTaQZ/vL6ZT/Hbb5TN4CxqLzxqnfXs8GlF18oSTAEaRAB4NpIKA+Q8BfVF7TkLfSDRyVz/px4HJM1gpgAdDvyadyAQv0yShRMwvB3h2XO/JOxF+09kIT+ElCm4JKz+lzI7xQ4GzE5lt2gqgZ7cNGGhc1uL8gAU4wYTtC7ckJtPaFnMPd+JEcEXBp0rq5DaKL2N4lR1UOtnAiqs5Dh3qVUbnLeX8thXIN3iZ711WPTXpnPPNmrwbsxfl3Zwutgurn/KkD1c/56UzTV2TSLJxuHec9gxSg4GvRODS9hF5ovoMFty1icrgewi532RKDjnlMxEc4YrcJgIqpZ4JaUUKaSi5azQcfJY+K2LyO/vK4FwPZJJkqU3pypPw5C+wF0k9qMOdGWrGCmtI4gIh9n8V6MGSufHgqrIZsfmfgQ8/B8AeC8niU4EE6BzgPSzWSURJPgA4g6N2SQ/J0+rCjzHz0f7J91yrXTStbjXK/mb45FUCY2tol9I8NH2wNssNqr3zwuhqSzVvEdbiy9+SA9L1z0JarnyKZ0CGvUhpuUFeGAThDJWAPlfK7Jduqib9ViegFW6Cs0ITM8kNbWR+hqJDh10V7qS5S4lVPSc03Mr5/vjAhW09UZSZZCNU75U3ytma3xzk/acf7BBVxO4P5Pto9F6TJ+XzMXRF4/UQqPj48zES0FgrmSKqtevdusueC97mxryD7lmOi+WvnRIPYJp6c+sPGfY0Go8Td8IKe+Sb05fTyajz9Yzy9YoTchUJFurSTAfguutYx40V/BjrSqB0Bf5VZrq1pZBKeKxOfxtrlDLZh2qNsw8KauQZ6ZMxEbGw2aBx9dvl2y8uY9hwTcM7qgLd4wYVlxnWTEnNTG88bIPRS5Z5eqdBvd63U/S7OAcVreDjntVOLlEzzn3JUfwo8OK0xaK/2+IFj7C1O1Gbv8TZJqAqv2vZVYPbp/gHGi3aohlqzj1MrHrjxF2h4Qo/0YIO4toG0l2kdNUs2MfnzHylnYdQ= +api: eJzNVttu20gM/ZUBn3YBOTGyyYvf2qA3LHYbJOlTYAS0hpamkWZUDmXXMPzvC+piy7fsFkWBzUsMDXl4SJ7hcA2WYsquEhc8TOCehB0tKJo0eKHvYpyfBy5Rz81sZUqUNHc+M5ih81FMxWHhLFl1sE7N4oX5EskaCWbuvO2RopEcxSxDXViDVVWs1CJWlLq5S01MySO7EC8ggVARNyE/WZjAB5LbFuM9h/K2jwMJMH2rKcrbYFcwWUMTyYv+1AAubTAuv0bNbQ0xzalE/SVOCjqP/MlXtdzhqghoYbPZbBKokLEkIY4weVqDx1L9v48CZyNnIQGn5csJLTEkw1CrSi2jsPMZbFrOjsnCRLimTTIAWwZ+iRWm9BN4U/0Sq+AjRbW/Go/1336bz+RtrsZj03tD8gP1bEmF2VdKBRKoWDsorqXg7EniCyxqOuWNtqWDxd0QZ5McibViiuQl7sSHhUnZCbFDU6sK54G3Wu7Fe2H+pFU0lubOk7GuJB81fW1ENOitabjFTp0rIzntYBsZl3UUMyNTkqhge0HtxLlJICyI2dmfyvE2+LnL6vY2mB6xu0tMVYEpaSJYF9KzXubktznvrqVBbvm22XNfPTUZxHjRw0EN1Evz72Mbi4LDnD/3pIY5P59p+pJclsvx0WHed+wCO1mZ1qHtpQRj9Q6W2raGE1tiE+bbbElJN3lcmI8uy4k7gGgEX8hUTClZ8lq0WgMfJM8UQ1E3/nDYixPZpDn6jJ6ZMJ6zYEIh+4wnc25HK0zAotBIXElDn9nqJGSBUZ7LYN3c/SDwvudJ+L2B8nSQ4F46ezz3S5VAMxKPiJ5gMLgl++Lp58NWMtPk38b2fTe5brux1U7u6/H18QC8pxhqTunvIO9D7a25Hl/vJt8mgZtTY/OTF2KPxQPxgvgdc2Bz80tGZkkxYkanG9SX4QSdUyVQD8z03YKuauYv9JhRqRbTBEqSPOhDW4XYUEHJYQKX3aW6zEi/RkprvZHN+xdLJ/nqAit3kYtUbzG69E2tbk9TfdIOzwmZeGsw3aE9aEHanM9jboug349GxcfHxzvTWBusJScvXdX7d1M9Z3qujX2F2X8J05i/FqcxaNqkm9Nw2XioK+IqxH55WRDHFvpqfHUzGv8xGt8oQ+1CiY1cus3gA4npW6eKN8Md6GBGbQX4f9nlupo2SqoKdM3TWHOhZFulPUEHCwmo1qYJ5KrEyROs1zOM9IWLzUY/f6uJVYBTnQ7scKaFVcX1m5Jq07qoBxYmcywivVKh3+67Ufe7OUf0hVb7e163tQCozH9JqOEWuBetNeiu9uhRMXYWR9Nm5/EmTamSV22HU+Du88MjJDDrluoy6AYDjEtduHGpbHRDb+ShBs23NRTos7qZWdBi6t8/KWdh1A== sidebar_class_name: "post api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/get-context.api.mdx b/docs/docs/api/get-context.api.mdx index 9051d19da..798e58a3a 100644 --- a/docs/docs/api/get-context.api.mdx +++ b/docs/docs/api/get-context.api.mdx @@ -5,7 +5,7 @@ description: "Retrieves detailed information about a specific context by its uni sidebar_label: "GetContext" hide_title: true hide_table_of_contents: true -api: eJzNVttu20YQ/ZUFnxpAkgUnftFbaqRJECQ1bPfJEIwVOSI3JrnMXuwIAv+9Z7i8SaKNNmmAPlnmzuXMzNkzu48SsrFRlVO6jFbRNTmj6JGsSMhJlVMiVLnVppBsIORGeyeksBXFaqtiEevS0XcnNjuhnBW+VN88CZVQ6XBOZgb3OPeJKlO2TRSHsTOhH8kYmOGnLBNRIFkinVxEs0hXZJpsHxMAek/uMuTAUSWNhCkZG63u9lGJf2CiEhwpRl9Jl+G3jTMqZLTaR25XsYVFUWUa1bPI0DevDCGyM57qWR/k+1ybdD6EykgmZH442JM2D7aSMf1EvDV/sRX6RZbtz5dL/nM4sKE/Aueic0CiZjSlYxdZVbmKm6aefbXstz/FoTdfKW66bHgEToWsaMkU1keZe5rylkkYssyvxnHgcsy0CmAB0A7EkLmABearpPAW3APzeoqBgnGG7AvxiXbMz60qSSSqoNIyN7n3tmFTg822JN0Jl9EQ1mUSobwFZYlpx4xzyuVcw2WHgwvsGPozNSLgVqU+0HngfABhqMpBEC5E+tx1qJ8yKvuahysjpAl4Q/Wm6x6bjHI88OGoB+zF9Xe5RXfLupr/7ECNa75/ZuhPpNLMnR4d131llEbDdyI4hFk6zZpCpuCxNZgMboTQ275aYtBNHQvxAY44DQHQMflAAiXHBGnhpnnTSsqoeHRE577xj45nMVFNnMkypXtD0j5ngTNHyb2crDnIIr6gpzR3IOLYZ7ObDJlL6+4LnbA6/rvAh56T4Q805O6owINyDnAetmoWBPUE6ASC0S05JE+nDz1l1gPjBsW6bsXqslWquuYK3izfnMocTLU3MX3R7g/twW9YDWIHr4spcfyIuAa39IYMwL0zBnJy8UtUEtJjZUrTM+kqn4Az1QL2kCmvuKiT9s+yRPSCLdBJyECmeTmmFLYitt4qOmuv0dleJTUvGoo9X8JmVdpCuWy3kJVaZM5Vv0ur4ree/e7WvLiOzwnCYXqD9RDthhsSan4+Zt8E/n6iDh9ub69EYy0kzPmpELrebUf23PA5D/YFZP8kTWP+Up7GoBkTP3SaoO24bjwGXGmrWh/MzIbQ58vzi/ny9Xx5wQhh4grZ0KXd/6C4GF4tRzrUM+7/8NhqG9jwButINavPm5yBBl7dRXFfyQpXG1zIUDAf7PeYEv1l8rrmzwBjmG1rvv3YtRvuIriXKMu/QditzC290JDfrlv1eiWew9Z+lOWuF5lVhJ9YfOEpWIPP3WvrP88esozeij0CvkS/JNX4JXmQLRi8jWOq3OjsRMXqsWK8f3cLrv8NWgQ00g== +api: eJzNVk1v40YM/SuDObWAkhhpcvFtG2yzi6JtkKQnwwhoDS1xI80oHCpZw9B/L6gPy46VoO12gZ5saPj1yDePs7UOY8pUCQVv5/YWhQmfMRqHAlSgM+TXgUtQAwOrUIsBEytMaU2pSYMX/CpmtTEk0dSenmo05NALrQk5MeTTonbkM7V1pGFiYsIzMpPDmBjwzpQo4EDg1CY2VMhtts/Ozu01ylWXwya2AoYSBTna+WJrPZRo55acTSxp9RVIbhMb0xxLsPOtlU2lFlGYfGabxDI+1cTo7Fy4xibZBfl6Ejg7GUPlCA75Xwd7CfwYK0jxG+It9Uusgo8Y1f58NtOfw4GN/THns5kZHGxi29F4UReoqoLStqlnX6L6bY/rCKsvmLZdZh2BUJeV3GStz1DUOOUNrhsyFDf7cZrkiGkVY0QvcSQGFCZlEmQCU0d0Zh14R7ESJM3JZ6fmV9woP9fk0Tgq0UflpvY+tmxqa4s9STdGchzDSg5iyjqKWaHSThknJIViuBrqUIADQ78F41Xwa8rqjs4j57siGKsCUlQgUBcyVP2So99hHq+MAe7q7dDz0D012cvxqId7PVAvxT/kNsMtGzD/MRS1j/nhjaG/IGW5HB+9xn3DFJhkYzqHbpYSVFOQSx1bWxM7ZBPWO7SoRbc4Ts0nynLkPkA0Ao9oKsYUHXptWs29pOyBZ4yhqFt/+3oWE2jSHHyGD4wQ37JgBEH3AJOYO1m0c+tA8ESoxH2f1WYyZAFRHsrgVB3/WeBDz8nwBxqyeAXwAM5BnYetSjpBPSp0ooK9W3JInkEfdpRZjowbFeu2F6urXqmaRhFczC6OZe4WY6g5xd+D/BJq78zF7GIUuyaxl1Pi+NkLsofiDvkZ+SNzYHP5XVSyxBghw+mZDMgnyplqgXpApivODtL+G3jIsFSLZWJLlDzocsyw24qS27k966/R2ZZco4sG01ovYbsqY0mSb06hotNcpPoZIqUfavVbLHVxvT5HYOSdwXKMdqcN6TC/HXPXBP1+pA6f7u9vTGttoJZcnwpd14ftqJ4rPdfBvlPZ30nTmr+XpzVox6QPnTZoP667ukKuQqTe5xk5dqHPZ+eXJ7OfTmaXWmEVopTQ0qXf/9coZny1vNKhHeP+D4+tvoEtb6oCqF19NRdaaMerhU13SObklH95iKIH2+0KIv7JRdPo56caWdm21NvPBCvt4mJrHUX97+x8DUXEdxryw22vXj+at2rrP4Lf7ERmbm1iH3HTPQWbZZMMr63/PHuXZe+tuKtAL9F3SbX/kjzI1hl8SFOsZO/sSMWafcW4/nhvm+YvWgQ00g== sidebar_class_name: "get api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/get-default-config.api.mdx b/docs/docs/api/get-default-config.api.mdx index e365c1fa9..3dec3eed6 100644 --- a/docs/docs/api/get-default-config.api.mdx +++ b/docs/docs/api/get-default-config.api.mdx @@ -5,7 +5,7 @@ description: "Retrieves a specific default config entry by its key, including it sidebar_label: "GetDefaultConfig" hide_title: true hide_table_of_contents: true -api: eJzFVslu2zAQ/RWCpxaQEyNtLr6l6ZZLGyTpKTAMmhpLbCSRIYdpDEP/3hlJXmQrQbqhl0QW38yb5c1QK5lC0N44NLaSE3kF6A08QBBKBAfaLIwWKSxULFBoWy1MJqBCvxTzpTAYxB0sE2EqXcTUVFnz6kEVERIRdA6lSsQiVpq9i1I5R5iQCFWlogRUqUJ1JBNpHXjFmIuUYvgE+L5lPG8ICeCUV2QAPsjJ7UpW9IOAxE1nhuN2CnN6bjnlZCVx6RgSKJ0qk3UiPdxH44EI0Eeok42Xx5H12cika1c5qBT8bzv7Yf1dcErDH/ib8pvgbBUgMP5kPOZ//Vbtl0kQSqzNiI66hdQqNqTCF0Y3FT7+Hth6dRiNnX8HjVxsz/1A03JzkYdCbrpMJ/VAYhtXKk0Ns6rictcp2eznUoEnpRHZqHEsWheC+KLG6EHEAKlYWC8WBTyaeQGC1UMJO8qZ8myyE5h7G7PcRqRHEGeXF6wvNFhwXF/buPbpB7LTuaoymHlQ4QlEE+aM/pq0oZ6tdT5rpfCkibaliwgvwGuiR0hnCg+PE0m1KPlEEj+M0JCTHZv5cNcKFXBW2pTm+hcd9y0H3feEfLtXw146vTj73Ui6sT6IdCCEjfTWcpxue70/HlfdZJx3Y1HXHO/b8dvDySKojV7DF4sfbaRdRajtZJHV6dA8XpBfT0q/Bv8A/oP3pNXTfzKSJYSgsiHN1Nv8B8IZKgFbqIzXquzKJdp6xXYjc0lp8+aWN3MGTTC8ayfyuLsWRu21cLyivtXcEtDRG1w2mzqUBvPlkXLmKEd071Qw+iyy/e2U1+b+OSgPfgOYbr1dc23a9J/2uakHv5f7S+bzzc2laNBCEZwq0DVgrSO2nPM59/iZyF5C08Cf42kATcdMtbCN065z15F67WwwnQ21L7SuT8Ynp6Pxm9H4lCMkCJaqUU53+5DmRb+L+9Gtthr8T3d9VzqERzx2haIrklKJvuDYWmXdyr6yyGjCO4HUkFPKDFitqE/wzRd1za/vI3jW25T3gDdqznUk9aUm8DNJd6GKAM/U4tVVt7hei6di7F6qarlZNxPZrav2W6QmSa+v+79O39LsfKxsQuA5+idUu58yPbYWcKY1ONw5O9hp9e7y+PThhuT+E9I+pJI= +api: eJzFVk1v5DYM/SuCTi3gSYw0ufiW3W7TXNogSU+DwUAj07Y2tqSlqGkGhv97Qdvz7QTb3S56moFEPj6Sj5RbmUPQaDwZZ2UmH4HQwBqCUCJ40KYwWuRQqFiT0M4WphRgCTditRGGgniBTSKM1XXMjS37o7WqIyQi6AoalYgiWs3oolHeG1uGRCibiwZI5YrUhUyk84CKbe5zmck7oF+HiB/7gDKRXqFqgACDzOattKoBmckX2MhEGubtFVUykUNMmbWSNp5NAqGxpewSifAlGoRcZoQRumSH8jpzWM5MvoWqQOWA3wz2t8OX4JWG78Bb8EnwzgYIbH+Vpvxz3KrTMomrNBVbN5lI7SyBJXZU3tdG9xW+/BzYuz1n41afQRMXG7kfZIbYXOQpyn2XZdZ2E4ntoFSeG46q6odD0C45y8UCGs1qmvXAYoAQgTBqiggiBshF4VAUNbyaVQ2C1SMQPEIAS312gip0saxcJEEViNuHe9YXGaqZ158Dr9PwE9npStkSlggqvGHR01yuVW3yPvRyq/PlIIU3XbRrfCT4CnuNoAjypaLz60QWDhu+kbkimJFp4NBnNd21WgVaNi43hfmXwMeek/BHQp6f1PAonSOex91IxrE+YzpBYSe9rRwX+16fjsfjOBkfx7HoOuZ7nV6fT9YjBBdRwx+OfnPR5uI6vd5PVpfIm6l5vLcEaFX9BLgG/IToUNz8kJFsIARVTmmm2+c/QWeqBOyhSl6rciyXGOoVh43MJW2AKsebuYSeDO/aTF6Oz8JseBYu2xfYdNwS0BENbfpNHRpD1eZCeXNREfkPKhh9G9l/vuC1eXoPCgF3Bos92hPXZkj/bcxdPfhcni6Z35+fH0RvLVSkCiyNDdjqiD1XfM89fofZ14Tpzd+L0xv0HTO2cD3o2Lmn6AG9C2b0WQOGAfoqvbqZpb/M0htm6F2gRvXKGV+fOyBx3MVTdu1eg//TWz+WjuCVLn2tjOVUItbMbVDWXB4rSyYy452wSGTlArFB265UgL+w7jo+/hIBWW8L3gNo1IrrOG9lbgL/z2VWqDrAO7X46XFcXD+LtziOh8pudusmk+O6Gr5FukWXbJ/7/zz8EObgY2VHgefoh4Q6/JQ5ijYY3GoNng7uznZad7g87j49y677B9I+pJI= sidebar_class_name: "get api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/get-dimension.api.mdx b/docs/docs/api/get-dimension.api.mdx index 11a981b0d..354cd23f4 100644 --- a/docs/docs/api/get-dimension.api.mdx +++ b/docs/docs/api/get-dimension.api.mdx @@ -5,7 +5,7 @@ description: "Retrieves detailed information about a specific dimension, includi sidebar_label: "GetDimension" hide_title: true hide_table_of_contents: true -api: eJzNVktv20YQ/isLnlpAsoU0vuimOopjwK0MWT4JgrAiR+Qm5O5mH64Fgf+9M0uRIiXKTZoG6EUiuTPzzc5889hHCdjYCO2EktE4moMzAl7AsgQcFzkkTMitMgUnAcY3yjvGmdUQi62IWSIKkBaPBigX5z4RMmXCWWbjDAo+YLHKlHFoTYNMQMY7lhquswHjMsFDuRWpN5XxAhET7vhVNIiUhurrfYJe3YH7UAPhoeaGozAYG42X+0jiCwolLQlBd9HcZfhceRKN95HbaRK0eEWZRuUgMvDVCwMI4YyHctDYeh0qkw5FUpvKgCdg/rWxv5T5YjWP4QfsreiL1UpasCT/bjSiv2762oFiKMFqFYTCYDuQjpS41rmIQ3yvP1vS3J97ojafIXYUbkPZcKLCPYa5z2mtrHDdQ+mLDd617LlsA8GTJKjx/LENhjqn95NgkHZfYDd84bkHVplg6IGPnTfAvEXOImPZNodXscmBEacwEBpjgfevuOYyo3yaEZtdBmzyeE+sc8Ll5Nes8gvhA8gaf0USFNdbL+PwUCW3JwQdj3vO44zLFNYGuL0gkXPr1oVKsMIgWXN3LjSIqpok2nMHQ4dJOdfc7PodQGj3nYZrnQsmj+W9DuX9HTmu5bgxfEf14aCwPSDlMT0fGrS7AEYO1KxcV2r7SEmYbUN/OHWkNjOf3j0/TOZnDK+/99yhVn2WwgWXjkW6bPRWVPuXNB9mt5OH9e3s02y+OEPuHPaGoI3XkX4TdD79Y7aYXkLtnv4jbFd8RY2pSUydhQVZaMonVoX2Dr6hdgqcCtwp02bZRqkcuDzzo1tHHVp3+NrDzm6RDjqj44RJPdXYU2Ztz1tNsGl5rRi1W/T80J1vD625LOmS70fvzzs7iipvYvhTuY/K4+xEqWN3R62bvnlwj3YNVtwTmBcwU2OwL978lLFQgLU87ctqq3B73OkLAWnwlIb7kVGWYohDP1O0EKQQPKABP46um5Rd75vHkoIPsTfC7UIXsIVw2e6Ka3GVOad/51bEE08GlqF2Ts+BGzCNwOpo7YkiUl36ss0mCvQ9Oh1jnxaLRxakGUdxvPch7DVjAu/pPIzNy559C0wQfwsnCIQ80aoXjB7y9eQxwy02Y9KqyY/bx7ub4ei34ejmMPUdFgCpHnYeZDlrr2wnQ7Eh3f9m4TzE0cGru9Y5xy0N7+VNTt5WPFt22sT4+ILcyDAAJLHfY9bg2eRlSZ+/eqBWtlxRJzSCbyiqS9qhLD0jk7c8t/BGeH6ZHzrer+ySk/X8lNR6QsPFN3zEHamzFZdI83rx/M+dqMBaa3PjCNXWT4FqL9UdtEpgEsegXevsrLuV7Y5yN11gCfwNZ2yLzg== +api: eJzNVktv4zYQ/isETy0gJ0aaXHxLs6k3QFoHjnMyDIMmxxY3EqkdjtwYhv57MZIlS7Gc7rZdoCfL5Dw+znzz2EsDQaPNyHonR3IKhBa2EIQBUjYBI6xbe0wVCwi18jkJJUIG2q6tFsam4IL1LhLW6SQ31m2EpSCCjiFVkdA+9kjCQAbOgNM7sUGVxZFQzgjt3dpucqyMp0DKKFIXMpI+g+r0wciRHAN9qh3JSGYKVQoEGORovpdOpSBH0rQkLL8lUxTLSFZI5GgvaZexYCC0biOLSCJ8zS2CkSPCHIqosfU28LgZWFObikEZwH9s7E+PryFTGv6FvQWfhMy7AIHlr4ZD/ummrx0ocTUcilpFRlJ7R+CIlVSWJVaX8b38Elhzf4rEr76AJg43cjbIVn6PYe4DnflgqXvp8nQFyJfnXShjSjWVPLWdFdHJ+xyg1eIVdoOtSnIQlQkRCHNNOYLIAxix9ijWCbzZVQKCOSUQMoQAjiquUYw+38TMZopB3D49MOvIUsK4JhWuIpKlk+VWJdaUist17nT5USW3JwQdxD33OlZuA0sEFc5IJCrQMvXGri2YpaJToUhWNcm0VwQDsimcaq52/QAQFH2n4VrnjMljeS/L8v6OHNdyClHtuD4I0tDjpDim51PjbVw6YwA1K5eV2l56B5N12R/eA6nNTO/HL4+30xOG1+c9b6hVX5ylEtKxSOeN3oJr/5zm4+Tu9nF5N/k8mc5OPHcue0PQ9teR/tDp9P73yez+nNfu7d+67YovuDE1iamzMGMLTflon2Y5wTfUTqqcUeSxzbKV9wkod4KjW0cdWnf42sPObpFGndHxjkk91dhTZm3krSbYtLxWjNotenrozneH1lwU/Mjr4fVpZ59C8Dlq+MPTbz53RlwPr4/dvYjkTd88eHAE6FTyDLgFvEf0KG5+yFhIIQS16ctqq3B74PSFgDXUhof7kVGBY5gCxZ4Xgg2UCHjAj+Rlk7LLffNZcPBB52hpV3aBkFqKdxcqsxcxUfarClbf5mxgXtbO+3tQCNgILI7Wnjki1aPP22yiwOfy/Rj7PJs9iVJaqJxicHQIe82Ykvd8X47N88i+xU0p/pGfUqDME696pdFDvp7zDLDF5i1gNfnl1fDqZjD8ZTC8OUx9SlXJl8POMwYS7ZXt3VBsSPe/WTgPcSR4o8ssUdbxu3JMGG3Fs3mnTYyOfxaRjH0gltjvVyrACyZFwcdfc+BWNl9wJ0SrVhzVOe9Qgb+NHK1VEuCD8Pw0PXS8n8U5kPX8dNx6yoYrR1JG8hV2na24WBRRvXj+5yAqZ621uQHCtfVDXLWX6o63SuBWa8iodXfS3Yp2Rxnfz2RR/AVnbIvO sidebar_class_name: "get api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/get-experiment-config.api.mdx b/docs/docs/api/get-experiment-config.api.mdx index 649a8c0b3..2dfeb3e74 100644 --- a/docs/docs/api/get-experiment-config.api.mdx +++ b/docs/docs/api/get-experiment-config.api.mdx @@ -5,7 +5,7 @@ description: "Retrieves the experiment configuration for a given workspace and o sidebar_label: "GetExperimentConfig" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/get-experiment-group.api.mdx b/docs/docs/api/get-experiment-group.api.mdx index 7ea7cdb1b..0a81cd437 100644 --- a/docs/docs/api/get-experiment-group.api.mdx +++ b/docs/docs/api/get-experiment-group.api.mdx @@ -5,7 +5,7 @@ description: "Retrieves an existing experiment group by its ID." sidebar_label: "GetExperimentGroup" hide_title: true hide_table_of_contents: true -api: eJy1Vttu20YQ/ZXFPrWAZLNu/KI3x2Fdo2gQSMpDYQjEijsSN+Yte3FNCPz3ziwpkRQpI03TJ1525szMmdmze+ASTKxVaVWR8wVfgtUKXsAwkTN4VcaqfI8vJWiVQW7ZXheuZNuKKWvY44crPuMFLgryf5SI8AA2PJk/kDWalEKLDCxowxdPB57jB5oqiUuKwpbCJvhu4gQywRcHbquSLAxmk+95PeMavjqlASNY7aCenUBe54XezzuoBIQE/d1gfxf62ZQihv+At6E/pixyA4bsb4KAHkOmxzwxtGNHRwwYF7nFNXIVZZmq2JN8/cWQ/2GcT7H9ArFFx2GglRW5FFqeoBkm7mLrNLBdoZtGD/tLXS019dWqpgTkd6pwn+KrjRJhkkmDhteJhUGOU8iJyPcQaRDmkkUTe4oAIaUiZJF+6ldxHhanvURSsGzDEO3ow9ACR1UJ5gxIz1Ebi2XCxgnGv2J/QGWYhJ3KgUmizqAvo3Jp60j2IlKHr6aEWO0qZhPoYG0iEMoZy7bAcFsQ3VbZlGq4P+ZBJVotdjsVR1hCjFmKfZ/L3GVbP5iZeFWZy/jilyDAL5U3XwECZEA2UdffSEnTwxBai4om3UJmJlgmmrEFFmQk7Hh9xpGcjFa4RKO5xRi857OtJjuXCmOjrJBqp/4l8NDzAvzWxc9gv6XM08AMh31A12SIF4F9vLQ8EISnM7SB76br+3uftHf2WzBqQMfEQE7NfeKfV+Eyul+Gd+vwA/5e/bVah39GD+HHcOl/9bC9uqwJ5zy3I1Xn+63bXWd7fDAPg0YP99agilmj9KO2T/Tz0si2SjK5JfqVjkR12YrefSumdU0cvAvejRUZTQuHqB8L+1vhcA+jVafH6HU7peOPiKtRNVagX0CHWqNc3P4gIR+OJUqLGUpAb+KODEykM0UBeYg9nca8I4x5xgwRiqqUFHSc78EnQufzgl93XZn7/prrg5I1HY4QO5S3yh/vJlM2qa5Eqa4Sa8v3wqj4zhHC04YO2/N1EBr0yWDToa2Imab4y5gnNuj/6PT7fb3+xLw1E2iOmbf0H0908tzSOnX4jcy+JYw3fyuON/D9Uvmu8KBt31YOmS0Lo1ofbJ5poG+Cm9t58Os8uKUM0cRmws9Ne2fBmWfnPTzP79DN4Hdd8drSSQeuy1Qofzo5nRJyMxt9nWtnA/0WjcglmDSZHA7INHzWaV3T768ONE3MphXFLTGB8yOVoXccv51IDbxRy0/LVsx+ZpeyPB4BeeW1F09l/MLXZ6iaK2iNM3m85f3w6E2U3h31lAFthP8lVP8GO4jWGNzFMZS2tzaSpLq//x/CNc7rP7zPPHw= +api: eJy1VlFv20YM/isHPm2AnGhZ8uK3NPWyYlhR2O7DEBjGWUdb10inK4/KYhj67wMl2ZZsOei67imxjvxIfuR9vB0YDAlZz7ZwMIYpMll8waC0U/hqA1u3UfjqkWyOjtWGitKr1VZZDurD+yuIoPBIWvw/GBjDI/LkYP4o1hCB16RzZKQA46cdOJ0jjMEaiMBKWK85hQhCkmKuYbwD3nqxCEzWbaCKgPBraQkNjJlKrKIDyOuooM3oCJWiNkjfDfZ3Qc/B6wT/A95CvgRfuIBB7G/iWP70mT7nSd3Esdo7QgRJ4Rgdi6v2PrNJTfL1lyD+u/N8itUXTBiik0Az1s5oMgdoFZjKhEtCtS6oaXS/v9JVT9JXtk0J1gwWXqf4ystUh3TQoOF14KCX4xByqt0Gl4Q6XLJoYg8RoI2xgqyzT90qTsPCFD1hQMdBJYXb+6iELCNZrcqApuaojaVyzUlq3eZK/YHboAyurUNlhLpgC6ekXLk6Rr3orMSggsfErreKUzzCcqpZ5WVgtUKVIwvdbDmTGh72eUiJTHq9tsnSIyXoWG+6XLoyX9WDmetXm5c5jH+J4why65pfcRVBjmKzPPZ3aU3oYGgivZVJZ8zDAMtCM6FmNEvN5+cRrAvK5QSMZhyxzRE6PqvtYOcyHXiZF8au7b8E7ntegF+VyTPyt5R5GJj+sPfoGgzxosnqS8c9QXg6Qev5Lo59f1cnXTvXV3DZgJ4Tg06a+wSfZ5Pp8mE6uZ9P3kMEs79m88mfy8fJx8m0/tTBrtVlLjinue2pOr1vx9t1csd789BrdP9u9aqIGqU/a/tAPy+NbKskg1eiW+mZqE5b0XtoxbSqhIPb+PZckacYipIS/Fjwb0XpjLqNb496XEVwN6TjHxwjOZ3NkF6QJkQFqbsfJOT9scwxhL4EdCZuz8BAOkMUiIfeyDaGI2GqZiwIoTlyWsg632CdiOznMVwfuzKq+xuud9ZUshwxKcnytl7vIbecbq+0t1cps3+ng03uS0F4WsiyPT1HTUgHg8URbSbMNMVfxjywId/Ptt/v8/knVVsrXXKKjlv69xtdPFdyLh1+I7NvCVObvxWnNqj7Zd26qEHbvs1Kj+SLYFufF6TQQN/EN3ej+NdRfCcZ+iJwruu5ad8sj8jqtIen+e2OM/hdT7y2dNGBa59pW2+nkjJBbmajq3PtbEAE40bk0iKwmOx2Kx3wM2VVJZ+/lkgyMYtWFFfCxNMOjA3yv4HxWmcB36jlp2krZj+rS1nuV4Db1tqblfILInjGbfMErRZVtH/l/fDoTZTOG/WQgVyE/yVU9wXbi9YY3CcJeu6cnUlS1b3/j5M5VNU/vM88fA== sidebar_class_name: "get api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/get-experiment.api.mdx b/docs/docs/api/get-experiment.api.mdx index 49cfc9372..a82f8332c 100644 --- a/docs/docs/api/get-experiment.api.mdx +++ b/docs/docs/api/get-experiment.api.mdx @@ -5,7 +5,7 @@ description: "Retrieves detailed information about a specific experiment, includ sidebar_label: "GetExperiment" hide_title: true hide_table_of_contents: true -api: eJzFV11v2zYU/SuEnjbASYysecmb56iZsSwJZKcYEAQGLV1bbGVJJak0hqH/3nP1ZcmW03RtsSfL4v3iPYfnUlsnIONrlVqVxM6l45HVip7JiICsVBEFQsXLRK8lGwi5SDIrpDAp+WqpfEEvKWm1ptgOYOhHWaDilVDWCD+Jl2o1EM9SKxlbMxDGSpvhV8aBWHMe35w6AydBhCL6JEAB12TdJiZWU6kljEkb5/Jx68T4AysVYElxwam0IZ6NH9JaOpdbx25StjCIH6+cfOBo+pwpTQhudUb5oAnycpLo1ckuVEgyIP2fg31J9CeTSp9+IN4TvzFpEhsybH8+HPJPF6NOiwRMRO2DXGi75c7BS6ZppPyitWcfDbtuD0tJFh/JLxqtGQirysToSl+5viZpKZhLe7g8cEqe4E0AoxOL+to+i01vyEgaO18nAehEPUmPRS3b3hNvx8h5uXYYkeJsDTY5V+770cPNDG+u3Bt35s7vPrieN7lypw6AsMpG7Lbr9YzjIEXyTFqrgOafaGNaCaTWcsPoW1qbnuLgWp6B14oae+5o5l7hzfjudnzzcFU8T27vvbtrz51OudrJdDzyyoX70cMUD731TotkddVWyyWO7ByrPhblqt0bJF+Aq3lFoBfbRxEZBIrZJKP7NlngtC8iKRiJHIUK1D4CFjjHSorMQFYAq6hyCeDrh2jDqfgbHYX0LFVMIuBNGJYdBtsUuvEsowyPpf5shA1pF9aGEqEyY8WCWGBYXOqmjOs6eIu1JL0Buu87HlXgbxIPyM68uxu8cf+9d73JP+7tbHTTBvFDGanGrmrU/EjehpDfWO/d2VtRHReCnpVaLZqQZds1pRGkj6GTWWRrnL6EFDcoN1wAlLpEqMRb13yphkadg49XG3X2YsTr3AKKINso3zX7zDva+lgOjF0b9qA6bHwRoCNNx/TLDxOUPq/i9Zp0+tgbQsYrmkMnzRELyIb+Xt2tfY7UXU3geaaj19ZLJrREdaWTLO0n2l7Pu9vaKUtnjHTmQ7dVh1o+KHHsjowenKrxsK/Ujfz2imFLF1p86Axbr5qz42rI5jnv+d3w3eGQhmmSIfZtYt8nGTgMq92chtdF32ifIK7GSZySRuWu1hDJi18y4CGopjsCWijWm+8pp68F7CFXfEFrDZ+iLO4kiBQmfLVbUXmhw4Xt0jnbYWvOtirIGR3yM4j5prjpmbWy4eZUpuo0tDb9UxrljzL2fXzie9f+OkEddGPwtIs25Y6Umz4es+kCv3f2pe+v2exeFNZCwhw1V22vL3fsueD14uAdr+wtaQrz1/IUBgVOfDUvglZ4TTP0NE2MqnwAmilDnw/PL06Gf5wML7hCmNi1LPhSXV9Bc9G5d+9pVsO6/+MLoeoZi8cZxowqhnilWyWdHltSwcf7EjoBCkCaLS9utwCHHnSU5/z6c0aaSfZUHfkFNw+UC5ThZ3B1KSNDrzThN6/Sud/Fsfrqi0W8KZQFAwz/8AglKj9gctC4/kb46dnLLK0vnKYCPju/JFX7+6eTrTQY+T6ltrV2oF55Wyyu3Rko/hWJEBeR +api: eJzFV01v4zYQ/SvEnFpASYw0ufjmOto0aJoEtrMoYAQGLY0tbiRKOxxl1zD03xejD1uK5Wy27aKnOCL5Zvje8A25hRBdQCZjk1oYwgSZDL6gUyGyNjGGythVSomWCUov05yVVi7DwKxMoPBrhmQStOwpY4M4D41dK8NOBaldmbWnXjQZbdl5yrHm3HlK21AlEidwp+BBmiGV6DchDOEa2d9hggeZJp0gIzkYzrdgdYIwBBOCB0YSzjRH4IELIkw0DLfAm0xmOCZj11B4QPg5N4QhDJlyLLwdyNeTlNYne6gIdYj0j8G+pPTsMh3gv8B7ki8uS61DJ/PPBwP509WoQ5E6HwxUswY8CFLLwtxwCzrLYhOU1J59crJ0e5hKuvyEQUk0iRBsqsAm7E03INSM4ULz4bAHVZ3AEELNeMImwfaa5aYXMtaOF0kampXBnqDHUCvae/D2Fbmoxg4R0eYJDOdw5X8YPd7OwIMr/9af+Yv7j/5kcnPlT+HJAzYcy7I91zPBKTxIX5DIhLh4xo1rBdBEeiPqMyauJ7nCg+oMvJXUeOKPZv4VeDC+vxvfPl6Vv2/uHib31xN/OpVsb6bj0aQaeBg9Tv2r/nynZbAmaya9WplgkSEFaFmv29zYPFkilXJJAX3lvhLRYWikmnT80C6WwjswkYzQoa1coFmjAjKMZLTKHYZqlZKqY6lEcxAZuz5Vf+JGrGdlLKpQNuHEdkRsV/rGi45zdLX/bBRHuIflSLNKcsdqiWIwYi4NKeMmD9liY0nvkO7HjkcN/N3CG9/fzSb3t+CB//eDP7n5y7+bjW7bIn6skBrtaqIWR+LuCvI74707e6+q49LQ88qr1Q6yop0wi3WAIp3OY250+hKh3am8qwWnNFUKVXpTUy9102hiyPFqqy6rRPEmtgo167bK97t9Fh1vnVcNY0/DK6kOiS8BOtZ0zL+CKHVoFzVe75QOj70Q2q5xQajdkRmONf2o7zZrjuRdd+BFTvFb41UltEx1TWme9RfaK86729o7S6eNdPpDl6pDL/cqHbsto0enuj28duqd/faaYcsXWvXQabaTus+O6yZbFLLni8HFYZOeoEtzCvAu5Q9pbkN1MbjY9+nCg8u+1n5jGcnqeIr0guQTpaQuf0qDT9C5bgtoqdhsviedPgpkhV7LBa3VfMq0hMkEOUrlarfG6kLHEQzhbK+tO9uasBB1MMjJ8Ka86bnEcLQ51Zk5jZiz37UzwSiXtfMnuXe9HkdNSLsJT3u0qTBSbfo45o4F+Q6vre+P2exBlbOVzjlCyzXtzeVOVi5lvDx4xzN7T5hy+ltxygmlTnI1L0FrvaZ5hpSlztRrXpBcBX0+OL88Gfx2MriUDLPUcaLLeqmvr9fIqnPvfuVZu6r7P14INWdiHmdZrE3ZxGvfqspp3rIKOd5DE0rpRaljGdxul9rhI8VFIZ8/50hSZE/1kV8KefMthMbJ7xCGKx07fIOEXya1z/2qjuXXXCzspnSWOJf/wINn3FQPmOKp8Jo3wn8evYrSeuHsMpCz81NCtd8/nWjVhFEQYMatsQP3Ktpmce3PoCi+AYkQF5E= sidebar_class_name: "get api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/get-function.api.mdx b/docs/docs/api/get-function.api.mdx index c4db2e528..5a4920509 100644 --- a/docs/docs/api/get-function.api.mdx +++ b/docs/docs/api/get-function.api.mdx @@ -5,7 +5,7 @@ description: "Retrieves detailed information about a specific function including sidebar_label: "GetFunction" hide_title: true hide_table_of_contents: true -api: eJzFVttu2kAQ/ZXVPrUSJPSSF95oStNILakIiSpFERrWA97E9rq767QI+d87YxtjBxP1FvUF7J0z9+OZ3cgAnbI69dokciin6K3GB3QiQA86wkDoZGlsDAwQsDCZFyBcikovtRLLLFGFRCcqygKdrIT2TqTZItIuJG1IAhFYWHrxgNYR0vWEMgH2CklMTgLwcCR70qRoCy/nAQVyhv5DZZtkKVggLFmQw5uNTOiFMFvn8+K9JzVnkIIP6dmpEGOQw43065TBjhJLVjLvSYvfMm2RvHibYd6r7f3oG7vq62BrKkQI0P6xse/G3rsUFP6FvVs+cSmVDR3jXw8G/NduWqNWggBiq0GelEk8Jp51IE0jrYoKH985VtzsB2IWd6g8V9xyP7wu3bYr3RV33fE5d7cTUtDgsHhnwWaJ1zHOK8bso3sSkywmKshXRwNJNfLaRyzflmFaWriuDNTOn8PyLm7wXQbLr4dOiOjYZ+VdPBho/5uKO3eL9RNlriwfwETg/Dw2AX3Dv+m+rXnAvAohWeHcIriuInOQTQJ3yGvClZLDbboefboaz+n3/P1odn4xIVF5dHrx+cvVbEzvpxeT2fjrrA06/TianI3n0/Ho8mLSFHX0fEa+ncxbX+fNoyTbKbXIvt/s/SYdImhvb8i1K9PRyo4eNXJqzIppNSZOqxmR55zi28Hb/QlDUJNZhRPjP5iMBjehdmOGtE665tI52bUJRJdoKZ+xtcaKk2eZTzE6B6uuuZLvUu8Ip6sErAErXjQ1ARxXkPZPaHg1rbAIgPfMUB5v+3G8aXUq5zGPKrPar4ud5WLtw/URpPoo9D59B06rUcY2bm55bTyWI1i0NeB2Z+2Sa1KmfdhmXQc+f0TOofw4m30RBVoAwSnzqvDb3cSaC5Zzb5+I7FfcFPCn/BSAolN81SiMVh27zKjHqXG60qnHNu3B1yf9wZv+4KSYicb5GArGVNuXaC4a94dH46Zm3f+871SV8/jDH6cR6GKZZDbiAEty3dQfO8GH7UFAhAgpawZtNtQqvLJRnvPxtwwtU44eH8BqWHApiYCBdvxMDF5C5PCJoryYVmPupTgUZ3UICY+uB4gyfqPHe1zvXcxy4vf27vPPAykdNm5udTD8UT2Lq+a9ruWtBIyUwtQ3ZHuDLW9Ok7PxjLj/EyYkBKU= +api: eJzFVlFv2zYQ/ivEPW0AnWhZ8qI3L3PTAJ1TOE4wwDAMWjpbbCVSJU9eDUP/vThZlqVYDtpuwZ5s8e6+O353/MgdxOgjp3PS1kAIEySncYNexEhKpxgLbVbWZYodhFragoQSPsdIr3QkVoWJKos2UVrE2qyFJi/yYplqn2AslIlF7NSKxAad19Z4KSIbo6wsGZKKFakLkGBzdFWW+xhCuEN6V2ODhFw5lSGh8xDOdmBUhhDCIfmi+pageQe5ogQk+CjBTEG4A9rm7OzJabOGUoLDL4V2GENIrsBSNnhfB9atBzo+QCWoYnQ/DfaPdZ99riL8F3hzXvG5NR49+18FAf90m9biSlwFgThEgITIGkJDHKPyPNVRxfDlJ8+Bu9NC7PITRsSMO+4H6X3aLtN9dTcdX3B3e12qMThvPiK4wpDOcFFPzKm3BDRFBuEMfrsIYC6BNKVsP9Aw2SM81wBN8rdAPtatqA9wf3oghFgRDjj4WA/Gmn4w8JhuuX2F5hr5jE+qPC0yG+uV/sH03cgz8FGizBoXDpXvI5mLbA9wj70ZuL3lfJuehx+eRovn4Yf7P4fT+4cxyHrp9uGvj0/TEUi4fRhPR39Pu06374fju9FiMho+Pozbpp6eT7c5eig7p3P2YpPdLXWG/bTZp006N6DyROS6zPS0sqdHrT21tGJSy8RtrRFlyVu8Dq5PFWaC3hYuwrGld7YwsbgOro8yU0q46dOle0PojEof0W3QjZyzTty8iT5l6L1a9+lKedx6Tzl9FHCEWvNF0wyAZwYzpMTy1bTGqgC+Z0K4PPTjctfpVMkyj1HhNG2rO8tnmpLthcr1RUKU/6G8joYFY8zmfG28tKNy6BqH+RHtkTnZb/s8ZsMDr78YzhDeT6cfReUtVEEJGqqJP9xNHLlkO/f2lcq+J03l/lqeyqHqFD81KtC6Y49Fji63XtcxjWzDVXB1Mwh+HwQ3lSZaT5mqJqa+fe+QROv98EJumqn7P987NXOEX+kyT5WuLpPCpVzgfrhmzWEHCWFXCOYSEuuJnXa7pfL45NKy5OUvBToeubmEjXJaLZnK2Q5i7fl/DOFKpR5fIeWXSS1zv4pzddaLyrB0bVRa8BdI+Izbk4dZOS/l4e3znxeyT9h6uTXF8KF6k1Ttd10n295hGEWYU8t2ImxlW03uRlMoy28mJASl sidebar_class_name: "get api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/get-organisation.api.mdx b/docs/docs/api/get-organisation.api.mdx index 5816e2645..ac21ef63c 100644 --- a/docs/docs/api/get-organisation.api.mdx +++ b/docs/docs/api/get-organisation.api.mdx @@ -5,7 +5,7 @@ description: "Retrieves detailed information about a specific organisation inclu sidebar_label: "GetOrganisation" hide_title: true hide_table_of_contents: true -api: eJzNVU1v2zAM/SuCThuQNkHXXHLrhq4rhn2g7U5BUTA2G6uzJVeigwWG//tI2W3ixAmGAQN2siw+fujxiap1iiHxpiTjrJ7pGyRvcIVBpUhgckyVsY/OFyAABQtXkQIVSkzMo0mU80uwJrRWY5O8So1dKkNBBQKqwkglzhIk1AXkDbCpgrQw7EeePVeoCralQHCqR9qV6GO865QLukL6tpWD7SV4YDz6oGfzWlv+YZxJ2WTkCCVQxuuQZFiAntWa1qUgOBmXppuR9vhcGY8cnnyFzb3shNLZgEHwZ5OJfPrE7NShGKRevDibHBItiR+UZW6SiBo/BXGu94txiydMSE7j5bxk2tR8iqGC2zMOGBJXWfLrh8SlhwCR/AfObvKjiDJz9kAMj0CYPizWg+bYyiMJWh3sm0YabVVwD/VFIiLgjWsLL8vvaEVJn9cLzf0hQ7m4cgtu23ASmBl0/mjJQEN5Wz3zDksOT8gwuexTlelf+wxS01PavMdTr8Iew6NWybHjr9z1iutl3eJmR6E3nTg/dMpsGinofHK+r22Guson+NXRRxZUqhi1ETd7TYduxDXH9RbyW/Qr9JfeO6+m/+RWFBgCLIfE2WyOP1DOEAXiAUsZHbp3n7+A5RSFwJhTni+Zk/GzxFiOjJSZHoeKqypdMPEY27MvjGuTNjqKsvKG1nE2hcJQtj6F0pxmROV7CCa5qCTW/L4Z7dsRPPpXwP0m2q0w1ZJxOOYrO7LPpfTb9enu7ruKaAUM54N27XiZleK5EHu8W4cr+5M0EX4sTwTE/snzEoN2fbzd5ph9uJmhDX02OZueTN6dTKZSIUOogKij7gngC6B23opebfVGj//DO9exSPiLxmUO/HbJQPFxiLaCm+uwQ0ZPcvw/42HBMsmYC4HXNTcQf/i8aWT7uUIvQuTlCryBhRDMskw5Aq9Z34+QBzxC05ubboC9VYcq7jbByuxaQV7JHy9/4rp9lhuWus4QUm64ZG8NF0mCJW257A2IZvseXl3esVp+A7ANCyc= +api: eJzNVU1v4zYQ/SvEnFqASYw0ueiWFts0KNpdJOnJMIKxOLG4lUguOTJqCPrvxVBKYtmyURQo0JNlztebN4/DDgylMtrA1jso4JE4WtpSUoYYbU1GWffqY4PioHDtW1aoUqDSvtpS+bhBZ9Ngta6sW2PdRllOKjFym7QqvWMseUyYtEJnFJrGOps4ItstqYYYDTJeggYfKOZ8DwYKuCf+vFcDNASM2BBTTFAsO3DYEBRgDWiw0kJArkBDKitqEIoOeBfEI3G0bgO9hkjfWhvJQMGxpX4lJyl4lyiJ//ViIT9TYg5wqOvFQr1FgQZpkhxLHIZQ2zJ7XX1NEtwdg/Hrr1SydBOlX7ZDaWtmAQ89zhhK3zqOu5fSm1MOmfwXatDWZz1C5d2JHJGQybysd7PmPMozBQYdHJs0kGsbKJZwV4oIQMODw7fPL+RESb/u1rDSwJZrCf0cN09DOklMJft4FjLyXN1Bz1CAQaYLtg1JTBvMv46ZpWaitOWEpwnCCcN6UHKe+Dt3E3CTqnvcHCj0cRTnT6My+14A3SxujrX9SMm3saTfPf/sW2fUzeLmQ9y9htu5G/HgmKLD+oniluKnGH1Ut//JrWgoJdzMibP/aH8GzhwFEoEbWR0wuc+/ocMNNeK20tAQV17Wz4YyHFkpBVylNlAMPtncxv7uS1edNT1kUbbR8i7vptRYrnaXGOxlxRx+xGTLu1ZyLVe9PrYTRorvDquPbE/C1EDG6Zzv7Mg56INx/fL8/EVlb4UtV+R4HMfbrpTItdjz3TqN7J+Uye7n6mSHPD95XnLScY5P+xyDhi3FNKS+XlzfXix+uFjcCsLgEzeYdTQ+AffE6uCtmGDrPvT4f3jnRhaZ/uKrUKN1eaHEvEQHwS0hHZAxkRxoKKwRuVY+sbh33RoT/RHrvpfjby1FEeJKwxajxbUQvOzA2CTfBopXrBOdoem7x3GBfa9OIR4P0cnu2mLdyj/Q8Cfthme5X/UaKkJDMVcfDHdlSYH3Qo4WRL9/D+8/PUPf/w2wDQsn sidebar_class_name: "get api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/get-resolved-config-with-identifier.api.mdx b/docs/docs/api/get-resolved-config-with-identifier.api.mdx index 87ef4b227..cb4e71cea 100644 --- a/docs/docs/api/get-resolved-config-with-identifier.api.mdx +++ b/docs/docs/api/get-resolved-config-with-identifier.api.mdx @@ -5,7 +5,7 @@ description: "Resolves and merges config values based on context conditions and sidebar_label: "GetResolvedConfigWithIdentifier" hide_title: true hide_table_of_contents: true -api: eJzNV0tv2zgQ/iuETlvASoIucuktNYw22A1q2FnsITUKWhxbbCWRS1KJBcP/fWdIyZL87gttDrFIzfObp9aRAJsYqZ1URfQmmoBV2TNYxgvBcjBLfExUsZBL9syzEk9zbkEwVdC1g5WjXyGJPTBJAYWTCwlmwLjWWSWLJVPPYAy+6chl1hnuYCnx0immjRJlAsylwBay4FmttkQilH0VDSKlIRzuBVr6DlxtrBh6yn+lS++3ypHewH9osHurRBW9WUfe3sLRI9klEy/r+rMlx9eRTVLIOT25SgMqUPPPkDiUg6ahZoeGbsWs3CFCLgIQPBt3WTaDHZAfuGYGtAFL1iI85HQt9+pj8RdUBLrB9xqxJXSIoOA5QqUW/iBkDoUl0AkZJ11GlgyDDJQfbTbt9RmoJgGnYY3PZkO8mhvU58CgB0/riJSjJLR5IVeoUZIfyGYqPFhXeT0LZXI67iLJjeFEJx3ktnOPGYDee1NhpTMl8NKZEjaDrULMG/JyT+OuilbUltWm6uWTAY7xpVfnJMyVyoAXPRF1TD5J8S0GmIA52pArB7sS+ilxT9gLLCzE0KeCURnzAkqf/uwe447QDBhQHWLh1NVWJFlJdRWUIGuqjItDkdbmWyZKMq4p5I7YU0D8LiZ2IZXd+v7qgKxi33niuvNUjYwUuPASjwnB/CzKHAshehhN3o3wPBmN/74bjqJZW2UPJHvaiO7rVWYZt0l0Vt8mNC9pQOxVxCp+UeaL1TyB75A3oxtqLzZ0tdc3N/TTj/iZvsGQiTVSUHsww4vLuHVxrgTRiYPd9bin6CEvsZESYKc4PWXIl7hpE1+lCW8unwmXtdIPpdOlG/MqU1zUnfT2ELRUTAYHxRQM2j4yBmvqtg/nD5pXODQsX8JhABu3DpgzqS3pjgXi4EuaCNGwO53ZAy9QR050mFk4N1JFM1or6w3iLsXTdd0QKVEhwXp3lZ8tNkcMqyuu5VXqnH7LrUzuSmJ5mlHi774HbsBsCWattClBErw+LnMLA93vNbn3j49j5qkZR3KKa8C9qS7fIek9JdQJyy5R48lP6fEEPlAU9Um7z4xWPNcZ9PcRopPFQnXzdVpiKmAYZC17WyhY8a9v45s/45tb8oQilXOfWHWfwUxnTaqzEG1Gyc56O1bPrc6O9VsvknVkSOm1zjj2UESgNBl5EHL1qRnelM4pZTFerddk8j8m22zoOkweSmAhLZ9n1FcWPLMwiL5A1V2WvMN4EVE2HyFuF51LqPd2m0uYetvMaYajYf11e8rBoAXH9hatS9DorRItw4wORhJH6D/NdD0Y6KM4nTb4wCLyjfH4Y1LPtFfsnMrtDvLzVXU3lJ62QFCPlPiRZLQUe1Ou5bhLEtDuJG137ow/TB+ReF5/+eX+yyIy/IW+CvG/j4/yPvpp4e9oaymWpZ+VUZBJf/8D/NBPpQ== +api: eJzNV99v4zYM/lcEPm2A3QYd+pK3XhF0xVZckXbYQxcUqsXYurMlHSW3MYL87wNlJ7GbH21vG3Z5SayQH8mPFEkvQaHPSLugrYExTNHb8hm9kEaJCilHLzJr5joXz7Ks0Ysn6VEJa/g44CLwt9Ks3ipphSbouUZKhHSubLTJhX1GIq36uMIHkgFzjV4EKxxZVWcoQoFiro0sO7M1ScY+gQSsw/bhWsEYrjB0zqrLKPmnDsX1xjgkQPitRh8+WdXAeAnRXxP4J/uls4h1+sVz4EvwWYGV5F+hcQhjsE9fMAuQgCO2HDT6Dcwi7BOUqiVClrd9lVXyiuQb6QShI/Tsrclj0B3uyV/mN2yYdCL0zhrF7LCAkRV6YefxQekKjWfSmZmgQ8meXLYYN9LBarU9foOqacvTZcfPasW6TpKsMCB5GD8sgY3DGBzhXC8gAc1xfKuRGkjAhybamVuq+PE1k5JIspwOWPneuQ+kTR5dxYUrrUIYB6pxlWwMPiNxlDsWX5vYQm1UfWFfHgmlt4b/egvhydoSpRlAdDl51Op7HKCW80fCygZ8jTAsiWvmXqESc0uxFMiWIgLUsfzF9VwwNYlAvocydFdJm6ys+V61RkRmC0shbS9p574Xqmbn1he5B3uMiB/FxT6lun+/P5yQRRo7T9p1nmaNUaBUEfEQSAJo6grGD3AzmV5NIIHp5Pb3i8sJzLa37Iax79bQQ7uW8nRbRG/aW7XNSxOqnRuxSF8sffVOZvgP8GZ8wu3Ft13tbDTir2HG3+gb4mw0EmsUSDo3IlwpfUgrq1hO7e2uhyOFRSprpQMTdkwzSrb1kq7bxIcsrZIPzIT3tdLPdXB1uJVNaaXqOun5Pmr5MpGR5R3SM9KEyJI4H9L5L82rCr2XOe4ncB3WHnemnSf9scAaMueJAJf96SxupJE5Viw3S6DCUFie0c766JAMBYzhtGuIXKiY1aRDE2eLr3QomhPp9EkRgvskvc4ualZ5mHHhv/4fJSFtBGZbtDumpI36MOaGBj7faXK/3t/fiigtZB0KzmvL+/p2xQ7J/3NBHfHsPWai+DE7USAmirM+3e4zk4WsXInDfYTltJnbfr3e1Q7JWa877M1FgbPR2Xk6+iUdnXMknKlKxsLq+swVBrEuddFmW3Cxi8GONQirt2P90Itklxk2eupKqQ0zUFPJEbS1+rAe3lzOBVfx+AGWS3b5DypXKz5uJw8XsNJePpXcV+ay9JjAV2z6y1IMGMYAXM0HhLeLznukd3ab9ygNtpnjCgfT+v/tKXuT1ga2s2i9h43BKrFVmPEDadZo+896uu5N9EGejju8ZxH5znz8NO1m2s/iLZObHeS/N9XfUAbWWoFupKT3jLGV2JlyW42LLEMXjsr2587t57t7SOCpe/Or4psFkHzht0L50ubHxhjjtIhnvLWYvI6zElpM/vwN/NBPpQ== sidebar_class_name: "post api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/get-resolved-config.api.mdx b/docs/docs/api/get-resolved-config.api.mdx index 1b6a50184..a5af81497 100644 --- a/docs/docs/api/get-resolved-config.api.mdx +++ b/docs/docs/api/get-resolved-config.api.mdx @@ -5,7 +5,7 @@ description: "Resolves and merges config values based on context conditions, app sidebar_label: "GetResolvedConfig" hide_title: true hide_table_of_contents: true -api: eJzNV1tv2zYU/iuEnjbASoIOeelbahhdsAU17OwpMwpaPLbYUiJHUokFw/9955CSJfmWtNuw+sEWqXP9ztXbRIDLrDRe6jJ5n8zAafUMjvFSsALsGh8zXa7kmj1zVeFpyR0Ipku69rDx9CsksbsR48aoWpZrpp/BWin6gpjzlntYS7z0mhmrRZUB8zmwlSy5avRUSITCrpJRog3Ew71A0z6Cb6wT40CJFBb+Qpv8By3q5P02CSaVnh7JEpkF7usvjnzbJi7LoeD05GsDKFIvv0DmUQ4ag7o8mrYXs/GnCLmIvnI17bPsRgc4PnDDLBgLDu0hQMjNRu7Vn+VvUBOuFt8bhI/wIIKSFwiOXoWDkAWUjnAlLLz0iiwZRxkoP9ntuusjcGYRmXGDyG5H1IZb1ODBos1P24TUIS9auZIb1CHJcmSzNR6cr4PklbYFHQ+x49ZyopMeCte7xyijv8E42BilBV56W8FutFeIuUF+HWk8VNGJ2rO6XL98tsAxovTqNQlLrRXwciCiicJnKb7HABtRRhsK7eFQwjAJ7gl7gdWCGIbgW61YEFCFFGf3GGmEZsSAiguLI5aLLDNVUe1EJciaa+vTWHmN+Y6Jioxrq7Mn9hIQP4qJfUg3aegPadMf6hbUHLgAeyEumGFlVWAqJw+T2ccJnmeT6e9340my6CrjgWTPW9FDvdqu0y4NXtW3iw1HWhBHOb1JX7T96gzP4B/IW9ANtQQXO9G7mxv6GcbsqNYZkrGWD/VFxUGA4s6nhRZyJUnJiR543jf0iVfY7giiS5yBMsY4bUv7mzThzds797mG96nypvJTXivNRdPvbk/BRylvsYHPwaK1E2sx82+HAP5LcwSbueNrOA1Z68gJc2aNJf3mTRx8TX07GffnJHvgJeooiA6zB7t7rmlaGu2CQdzneLqO4bluuhflJGRYnL4Og8AV0uf1FTfyKvfefOBOZncVcT4tKMcP3wO3YPcEi07anJCJzp+XuUeD7o860q+Pj1MWqBlHchqfEf62kEI7o/eUSRcse4uaQH5JTyAI8aLgz7p1Y7LhhVEwXBeITpYr3U/UeYUZgdGQjex9hWBxv7tNb35Jb27JEwpYwUN+NS0FU5y1Oc72K8/Ajd7K82Otbg30pOXaKI79EF2srCKTY04+JVm3xcWsxETKKW3x3XZLxv5h1W5H13G+UqoK6fhSUetYceVglHyFur/DBFfxIqG8PUPc7R9voT5aOd7CNFgyLjOcDej/tz6cjF507Gj/6Zxb0MFK8i42jnYCnozbWbcv6z+xLHwnvD/Nmin0M3tN5X5P+O9V9beIgbZI0IyE9JFkdBRHU6rjuMsyMP4ibX9uTD/NH5F42fyjKsL+nlj+QnWK3yE+OvgY2ny4oz2jXFdh1iVRJn3+BqFTCIw= +api: eJzNV0tv2zgQ/ivEnHYBKTGyyEW3NDDSYDdo4GRPWSNgxLHFViLZIZVYMPzfF0PJlhw/knZbbH2xRQ2/mfnm6SUo9DlpF7Q1kMEEvS2f0QtplKiQ5uhFbs1Mz8WzLGv04kl6VMIaPg64CPytNF/3iZDOlY02c2GfkUirIZDwgWTAuUYvghWOrKpzFKFAMdNGlp2emiSDnUAC1mH7cK0ggysMnXXqMkpCAoRfa/Thg1UNZEuIJpnAP9kSncfbp589+7YEnxdYSf4VGoeQgX36jHmABByxrqDRb2AWYZ+gVK2vsrwdXlklr3i8kU4QOkKPJjAh7GaHe/KP+RMb5pUIvbNGMR8sYGSFXthZfFC6QuOZV+Yi6FCyJZctxo10sFr1xzvkTFpmLjtGViuWdpJkhQHJQ/awBFYHGTjCmV5AApot/1ojNZCAD01Enlmq+PE1d5JIspwOWPnBuQ+kzTwahwtXWoWQBapxlWwUPiOxXzsaX6vooTZXfWFfHgmlt4ZfvYXwZG2J0mxBdFF41Op7DKCW5UfCygZ8jbCdBNfMvUIlZpZi8MmWIgLUMcXF9UwwNYlALi4ZunLRJi9rrp1WichtYSmkbeV15nuhajZuXZ0D2GNE/ComDildpLE/pF1/aNakFigV0pG4JICmriB7gJvx5GoMCUzGt39dXI5h2lfGDWPfraG39Vqap30avKlv1TYcTah2cnqRvlj64p3M8T/gTfmEW4JvO9HZaMRf2zHbqXVxNhqJ9T1IOsURoJQ+pJVVeqZZyZ4eeNg3WKSyVjowRcduRsk2xum6tL9J0yr5hs59qOF9qoOrw61sSitV1+/O99HHKU9GlndIz0hjIkvifJvAHzRHKvReznE/ZWtH9pgz6SwZNm++Iefct+FyOCfFjTRyjhXLTROoMBSWp6WzPhokQwEZnLbhOe26F+ck5jXp0MRB4CsdiuZEOn1ShOA+SK/zi5pvPkw5x1+/R0lIG4Fpj3bHzLTOH8bcsMHnOx3p4/39rYjSQtah4PHZ0r8upNjO+D1n0hHL3qMmih/TEwVivDj4k37dGC9k5UrcXhdYTpuZHSbqXe2QnPW6w95UCJyNzs7T0R/p6Jw94YBVMuZX11KuMIh1jovNyrPlxmDl+bVWt4561nLqSqkNu1hTySa3OfkAeb/FtVk5TaDgtM0eYLlkY/+mcrXi43a+cqoq7eVTya1jJkuPCXzBZrjDRFchA+C8PSDc7x/vkd5ZOd5zaWvJOH7hYED/v/Vhb/Rax3b2n965KT+QZu/axrGegHvjdtDt4/r3LAvfSe9vk24K/S7eUrnZE36+quEWsaWtFehGQnrPGL3EzpTqb1zkObpwVHY4N24/3d1DAk/dP6oq7u9A8oXrVL608bHRx9jm4xnvGWZex1kHLSZ//gWhUwiM sidebar_class_name: "post api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/get-secret.api.mdx b/docs/docs/api/get-secret.api.mdx index 458df85eb..d59f544b0 100644 --- a/docs/docs/api/get-secret.api.mdx +++ b/docs/docs/api/get-secret.api.mdx @@ -5,7 +5,7 @@ description: "Retrieves detailed information about a specific secret by its name sidebar_label: "GetSecret" hide_title: true hide_table_of_contents: true -api: eJy9Vclu2zAQ/RWCpxbwhjS++JYWaZpLUcTuKQiCMTWxmEgiQ1JpDEP/3hlttmzZCNq0J8ucN2+2x+FGRuiV0zZok8mZvMHgNL6gFxEG0AlGQmcPxqXAAAFLkwcBwltU+kEr4VE5DGK5Fjp4kUGKI7GIUbxAkqPQXqTgn4iEKBibOx3WIzmQxqIrKa8jinqFYV4SkcWCI5aAzsvZ7UYyJSHKn4HUnKOFENO3VzGmIGcbGdaWMZ5Sz1ayGEiHz7l2SNTB5VgMWprXoXGroY4aqhghQvfHZL+Me/IWFP4F3x2feGsyj57xZ5MJ/3TH0jZIkFk0eIqjTBYwC+wB1iZalU0dP3p22xymYZaPqLjN+2OvGAWlmauQO2wmxjHbYfmRqNMo5+sFEDAjuTjKibyynklbx+5BV9VVrevpSiefHruKIVvhvUPwxxBkCxjdL9cnzRAOzQNZSZxOIgINg6YsyScBH+5TE5HUjxN3QW+n70jhdq/ATr6d2rqt6gnfk/ag6jtJLeiQ4K6gmsl/qYVUFJzY+eT8UIQENblT+N2ErybPIkGorRbJa9on3WvidRkkc3Skk0vnSB/TdxJxV1speg+rPnkV28J70ulrAXvAileQrPrkuXu0l2LDC2tVrypaRDM5rq6JH2+4ywXf/lr/5QbzqQ7xegRWj+IQ7GfwWl3k7Hl7x9tk3450qVwLuNuyzbkPVanHOdva+fzgnn9bLH6IEi2A4FRt3exmZbHnku08zxOZvSVMCT8VpwSU0+E3piStpzTPaa7WeF370Kh8RX02OZsOJ5+GkylnSJCQQrbdLCxs0b4le0ul1dl/e+bqJgV8DWObAL0RlHTuEs6mUs+trNVD6FlzS2Mqi02bDc0Cf7qkKPj4OUfHmqLPF3AaltwrUlikPX+TMB8g8Xii7g839cb5KI5lVx9CxmujrI/+0ecTrpt3uCDdNk/du8ev4uw81G0OfFn+SajdZ7wTrQJcKIU27NgOllSxuxuuLhek6d8TOT/D +api: eJy9VU1v20gM/SsDnraA7AjZ5KJbd9F2e1kskvRkGAEt0dY00syUQ7k1DP33BSXZsWIlCPp1kjBDPpKPb8g9FBRztkGsd5DBDQlb2lI0BQnaigpj3dpzjWpgcOUbMWhioNyubW4i5UxiVjtjJRqHNc3NXUlmi1VDxkZTY3ygwqw9q23DVnZzSMAH4g7yYwEZfCC57YAggYCMNQlxhGyxB4WErP8kYDXHgFJCAjEvqUbI9iC7oDZR2LoNtAkwfWksUwGZcENtcoT5NvO8mdniAFUSFsTfDfbV80MMmNMP4C31JAbvIkW1v0xT/YzbciTIXKapOdhDArl3Qk7UA0OobN6RevE5qtv+PA2/+ky50vy07T2iicJNLg3ToWMa89isODdDGl1/o0Em42hLbJikYTfR6cDqLravrqdugpVRPhP3eYluQ/dMGJ+zYEKh4n61e/Ea5fw6gV7ikEGBQjOxNalPhVHua1/YtX0eeGz0eviRFBZPChzlO6ptTNVE+Im0k573ZQJipaJTQR06//cgpLbVxK7Sq3MR3lD0Def0r5f3vnGFuUqvHrXYJnA9Jd2PTogdVrfEW+J3zJ7N9U8S8VhbNcWImyl5tY+FT6QzRYF64EZHEPQ8RWWvJim9DqzNMKqkhAwu+mcSL/bKcquvf9B/N8FibaXczTHYeSkS/sJo87eNei6WOk2e3hMy8dFg+Yh2qzz0pT6Peaxdz8/e+T93d/+ZztpgIyU5Gcg+jCz1XOm99vOFzF4TpjN/KU5n0HVHd0wHOnTptgnEwUc7+GyJYw99mV5ez9I/Z+m1Zhh8lBrd42RRYZvjLnkyVI46+21rbiBJ6JtchAqt06QbrjSbXj0LGNQDCWSHV1r6KHq1368w0ieu2laPvzTEqqllAltkiyvlarGHwkb9LyBbYxXphbr/uBkmzhvzXHbDITodG119kAEk8EC7wx5ul21yWHU/PX4f52RRH3PQx/JLQp2u8VG03uBtnlOQk7uzIdWezoYP7+6gbf8HEzk/ww== sidebar_class_name: "get api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/get-type-template.api.mdx b/docs/docs/api/get-type-template.api.mdx index 3b33faa90..bddf9acd1 100644 --- a/docs/docs/api/get-type-template.api.mdx +++ b/docs/docs/api/get-type-template.api.mdx @@ -5,7 +5,7 @@ description: "Retrieves detailed information about a specific type template incl sidebar_label: "GetTypeTemplate" hide_title: true hide_table_of_contents: true -api: eJy9Vk1v2zAM/SuCTxuQNEHXXHLrhq7rZSva7BQEAWMztlrHViU6a2D4v4+0nQ87TjCs605RpEfykXyinHsBOt9qQzpNvLH3gGQ1rtGpAAl0jIHSyTK1KxCAgkWakQLlDPp6qX1FG4OKcGViIGSoH2eBTkKlySnnR7gCBUmgVuwsAIILr+elBm3p7S7ggLdIE/YxqV3wuQELjEfrvPE09xL+wzgJNC/XPU8LUwMU8boK4o3zEsH7jhNIQq/oeRZfMm2Ro5DNsOjtfL32Uxv2dbB1FSEEaP/a2a/UPjsDPr7B30x2nEkTh07wl8Oh/DSb06qVYpDaWnE0P00IExI7MCbWflnlwZMT4/yYTLp4Qp+k4lZ6QroKva90F+/y9LQrCAItUSG+P3TKhu1UErSsn2fc9NcQZ6gqF4ojZT5lFlXmWHwsPbWM8VUvYlSiIE7YcM6cZ6VIimyahZHIkiJU1/d3ojHSFAuvHxWvdviOvPwIkhDnFsGdQvAZYTBfbM4eAx0f97zqCvEO54B90lxdtonB0XyVBnyV3mTZSakhsmkrwQbfRm7NUnVw7Ajea1zPQ4nM9r1oqfehFu6XWrVFIYyvhlfHumdomlkfv6f0Nc14nDBqL3y2GnXdljv2a1mIj2jXaG+sZSmN3uXGrNA5CLvuS7FPv4NOVwnEAkIZfZ5US23L5aSUPBajVKZmiCULGYFjbyBB3SDf9aCQ0YN+ZjVtyhnqVpqizQUYfRERmc/gtH+difF0JqOsfY5g0e4As723R6lIlfRpn7sqyL7XvvnfJpN7VaIVMJzzrsu+nZdiuZBz6ewZZn8SpoSfi1MCyj7JM1c6rfv1mHGHTep0bcNNc5Xry+HlqD/81B+OhCFDaAWlXuoXgYWuGr1rk8v3wvsfD25dJsJXGrAZP1FMO7OxEKkkNC0xjrHj/UXmtkecm5zmOTcEf9q4KGT7JUMrwuLlGqyGhRSMZRZoJ2sW6BJih2ey/vBQT6aP6hTBehMSGS/lE8H/eMkvRuNzoGAFb1/cf06iCnbwvbAjItfmXUIdfk00olWAa99HQwdnR4OrOBwUtzcTVvdv3YR15A== +api: eJy9Vk1v4zYQ/SvEnFpATow0ueiWFrtpLm2QuKfACMbi2OJGIrnDkRvD0H8vRpK/naDo7vZkg/P1+ObNUGuwlAp2UVzwkMMjCTtaUjKWBF1F1jg/D1yjOhichUYMmhSpcHNXGFlFMkJ1rFDIOF9UjXV+YZwkk4qSajToralJ0KLgBWQQInGX7d5CDnckk1WkyZACMojIWJMQJ8if1+CxJshBC710/zNwijSilJBBXwTydecBOSRh5xfQZsD0tXFMFnLhhtpsm+ttFHgxcnaTqiS0xP852d+BX1PEgr4h31RPUgw+UVL/q/FYfw6bc8SVuRqPzSYKMiiCF/KicRhj5YqO5csvSYPXp2DC7AsVooyz9kRcX3rH9DncnfX9VGit06pYPewnbbOTq3hiV5hXWo2WWDVk+hQmCTeFNEymSWTNPLCZV/TmZhUZVZBhikyJvPSKlJJDsyhVllKSuX24V42Jk0px/dnjOi5/5l5FiX5BL0yY3vNgQiH7Mlt9aEY5NWfQjxDkYFFoJK4mjakwyUsdrJu7b4o8C+lAZM9HFzzAe3C3Q6rOYDxTPDsYz32JTHe9OFLv4yDc3wbVtq0ivh5fn+r+kVJouKA/gnwOjbfmeny9E36bwc25abn3QuyxeiJeEn9iDmxufsjE1JQSLs7NS7u7/hk45yjQCFzo6gNly2zoSkplTVIG3ZoL6lDoCszhUoumy/W2B62uHioadrLqdmiqnZSrC4zuohSJv2JyxW2jwc9TXWXHdkIm3jpMd9melJH+0u/n3LKg53A8+b9PJg+m8zbYSEleBto3+1IjZ2rXzn6A7N+U6dw/qtM5dH3SZ65LOvTrqYnEMSQ3xCyJU5/6anx1Mxr/MhrfKMIYktTY6WV4Ee5IzEHvjsGtd8L7Px7cgSahN7mMFTqvsBuuFEgvoefOJ0EG+W6QpxmUIYla1+sZJvqLq7bV468NsQprmsES2eFMCXteg3VJ/1vI51gl+uDWPz0Om+ln8x7A4RC9rpfuiYAcIINXWh18DrTTNtu8uN8dRF9s73thC0TH5oeU2v+aOKjWO9wWBUXZs50srnZ/Udx9mkDb/gPdhHXk sidebar_class_name: "get api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/get-type-templates-list.api.mdx b/docs/docs/api/get-type-templates-list.api.mdx index 92e6c3d97..68a4461af 100644 --- a/docs/docs/api/get-type-templates-list.api.mdx +++ b/docs/docs/api/get-type-templates-list.api.mdx @@ -5,7 +5,7 @@ description: "Retrieves a paginated list of all type templates in the workspace, sidebar_label: "GetTypeTemplatesList" hide_title: true hide_table_of_contents: true -api: eJzFVlFv20YM/isHPXWAnbgZ8pK3bCjSAMUWJN5TYBhniZaulXQaj8piGPrvJe9kR7IVIW7Q9UnQkUd+JD/yuI0ScDGaiowto6voHggNPIFTWlU6NaUmSFRuHCm7VjrPFW0qUARFlbPIKVMqykD9Z/Gbq3QMEz6J8zoxZSoCg8rFGRSaDZaJKoB0okmrtcVgqdClTqGAks6iSWQrQC1QbhMGcwM0Z535ztkXhsFKlUbNhgBddPW4jUr+YeXY1qVIjYTxbw244Z9+cH/VxQpQAjEcgFNk1QoUAtVYcpQcCug4k7hBwATg0dU2EqR8v/T332e2aSZ7yHIyjviONVRwK2axrc5EOdJIkuM12kJ9PAXu2212sXLpx6HerhVhzWZC4M6TBYGVnVDIp4bJkZYWxUdLLr6rXurpc+SJ4qs5GNXK2hx0+f/472bgeWoxnZpkl4YMdOLTewTRkbiImkkk/g0Ck1mw9YztO+Yd9hZy4ipbOnCifzGbyaefmKEuUqypdlfZZWxL4haUy7qqchP7zJx/dWJhe4zIrr5C7HsRpWXJBP9kSedLSaI75iHDD3JfikG5jIaOQCNqIdrhhde8s3QZ8juQOi99PRCdJEZi1vld12hzSLMbKAFNrL7BZvqk8xpUMMHdg3XMzANVO+abDLh1Ds9mlYPyIw+h4oxzlgPrKENbp5mtyQ/Q67tboTsZygXX3wHXofuBuOJMlyksEbR7TYNl3ALL1WZUrOlYPIk4jkIkUhuYkuHs8p1cO1oWNjFr866bg5B6PH88CLCHtxdbP1UDGAecTzqk6VNk8VKLXvfc75qmOcTpydvn+KTXER2TQz25s/xn24uN93A51NK3rIFM1QfAJ8BPiEy2y5/S0QU4J6/UYJV20QzAGQpGbuhUHm2fUrWPXjLDAziz8uinEN54yvjnXJxKHh3ENRra+BffFYayzZmuzFlGVP2hnYmva7nwuJAZeygHjYB7hcWLtQfJQgj0dZv7yOX86Nn5PJ/fKa+tNKtzrG2qd4Pcv1kiF/aPIHuLG68+5scr+NqYcm290bZGDzVXtbLOtHe4UC6YvphdXE5nv09nl4KQVYh3MrnaPlXMVdWvl2oXsYPRtKfcr94i20QSPNM5O+DXlQOrMReQgViPUSAWcyHjgOVgu+UqwT+YN40chyVH2JYYp3mIMzfXOncwEvaJ++UgTH5XOsusf2H4PxJavx3IKWvjCIp2P/1BED9pIRzBG3bUF7gL+UEjeMNo2O1Yp5X1w3075X9T4/47G+IP5uwEV939sectKFzHMVRdCh29Ak136t58mvPY+A5ZmOsC +api: eJzFVk1v40YM/SuDObWAnLgpcvEtWyyyAYo2SNJTYBi0REuzGc1oOVQaw9B/LziSHclWjHiD7Z4Mi0PykXz82OgMQ0qmYuOdnuk7ZDL4jEGBqiA3DhgzZU1g5VcKrFW8rlAxlpUFxqCMU1yg+tfTU6ggxUQZl9o6My4XgSEV0gJLCApcpkpkyIBBrTy1lkpwkGOJjs90on2FBALlJtMzfY38sK7wYevsTxNYJ7oCghIZKejZ40Y7KFHPdOprJ1IjYXyrkdY62Qvur7pcIkkghrEMir1aoiLkmhxmEgpCWkjcKGBa4Hq20YJUz7SL+h8z2zTJDrJ8OY74FnJUrVsxS111EhUYiCXHK/Kl+u0UuO+32ccK1h6HerNSTDUmXeAhkoXwW41BKBRTkyiTO0/ioyOX8U691jPmKBIlVnM0qqX3FsH9P/77GXiZeMonJtumoUDIYnoPIAYWF7pJtPg3hJmeCbaBsV3HfMDeXL6EyruAQd5fTKfyM0zMWBepi+lUbVV1olPvGB2LMlSVNWnMzPnXIBY2h4j88iumsRdJWpZN6589g11IEsMhD5ukk8dSjMplNPQEQARCtH2Ft7yvK1y0+R1JXZS+HQhkmZGYwd72jTb7NLtGh2RS9YTryTPYGlVrQgWmOuWaUNUBszjgVhZfzNKiiiOPsCIM6LhlHRfk67zwNccBenV7I3Rnw1Zw/d3i2nc/EldagMtxQQjhrReEMsUXy/VRMfChONErT6VIpDY4YVOi6FgIvCh9ZlbmQ5qjkAY8f9wLcIB3ENswVSMYR5wnPdIMKTJ/rcWge+62TdPs44zkHXI8GXREz+RYT24t/9H1YhM9XI619I1jJAf2HukZ6TORJ3X5Qzq6xBBkS41WaRvNCJyxYEQDclnaMaVqF71kpkQuvCz9HNsdz4We6XNxKnkMmNZkeB03figNF+szqMxZwVx9gmDSq1oUHucyY/flCIS0ezB/tXYvWWgDfdvmLnL5frB2vjw83Kr4WkHNBTruUr0d5HFniVzYfwTZe9zE58f8xAexNsatfDTa1ei+rpAqH0yn84wUWtMX04vLyfT3yfRSEFY+cAmRI92qukZWw3qp7hDbG007yv3sK7JLJOMLn1cWjJPAarICsiXWo26JNU904QPLh81mCQH/Ids08rk9coRtmQmwtNLjK7ABj4R94n05CvMJ171jNm4YPdNaaP1+IKecjUdQdPfpd4L4QQfhEbztjfoKdy5/yAjedjRsb6zTyvrLXTflf1XH/fcuxO/M2Qmu+vfjwFv74CpNsepT6GALNP2pe/35QTfNf1mY6wI= sidebar_class_name: "get api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/get-variable.api.mdx b/docs/docs/api/get-variable.api.mdx index 00270c8ef..0ceca9a06 100644 --- a/docs/docs/api/get-variable.api.mdx +++ b/docs/docs/api/get-variable.api.mdx @@ -5,7 +5,7 @@ description: "Retrieves detailed information about a specific variable by its na sidebar_label: "GetVariable" hide_title: true hide_table_of_contents: true -api: eJy1VU1v2zAM/SuCThvgNEHXXHLbhq7rZRjabpcgKBibjdXalirJWY3A/32kvxInTlBs7cmC+Eg+ks/URkboQquMVzqTM3mD3ipcoxMRelAJRkJlD9qmwAABS517AcIZDNWDCsUarIJlgmJZCOWdyCDFMxlIbdBWLtcRRb1C/7sBks2AJZRH6+RsvpHsQpjqE0jFLAz4mM4ujDEFOdtIXxjGOCKXrWQZSIvPubJIwb3NsQy6MC8jbVcjFbWhYoQI7T8H+6PtkzMQ4n/EW/CNMzpz6Bh/Ppnwp9/4nRYJAojWgzKFOvOYefYBYxIVVo0dPzp23BwS0ctHDD032vIYvKrT1jUN0F1Dkg9behQH7GEM2QrvLYI7hiCbx+h+WZw0gz80B7LWHd1EBBp5RfzJJwHn71Mdkf6OB+6DXh++N735XoE9vr3a+q0aSD9AO2glX/efVOKVT7CvhZtGBl8bDZQlU7yYXBwqiKA6tyH+0P6bzrNIEGorI/KaDunumuLaDJJbtGu0l9ZqK6bvor8UnYPVkNDKbekDdIZawB6w4v0h20457iCtlVjzxllhRYD3yEyO2y3lxhvuecm/L4a5Vb6oVpBLlY+LMzDqLPbefAGnws85+84XvA727QgWbQdYbKPdci/qco/H7Orn+z3pzOT3u7ufokILIDhV3DS83TnsuWQ7z/QEs9ekqeCn8lSAakL8DFRBm0nd5jRbo51qfGhcrg59PjmfjiafRpMpMySITyHbbiCWt9h5DvaWTKe2N3uLmjZ4fPFjkwCtcaKV24Sz1QqZy04hhJ9VPGmqMVFn42ZD/cZfNilLvn7O0bJuFkHnVqkoUo7PJL8HSByeqOzDTbNjPopj/JpLyIpuQ8wkHZ+waB/LkrTZvkdvnr/Os/Oadhz4h3iXVLtvbS9bDfgchmj8ju1gGZW7G+Dq8o50+xduyBJd +api: eJy1VU1P20AQ/SurObXSBixKLr61FaVcqirQXlCEJvYQL9jeZXecEkX+79X4I8TBQaiFk6Odr7dvX95sIKWQeOPY2BJimBF7QysKKiVGk1OqTHlrfYGSoHBhK1aogqPE3JpErdAbXOSkFmtlOKgSCzoCDdaRb0ouUojhnPh3lwgaHHosiMkHiK83ICUQtx8NRlA45Aw0hCSjAiHeAK+d5AT2plxCrcHTQ2U8pRCzr6jW2zaPE+uXE5P2rTLClPw/N/tj/X1wmNB/9JvLSXC2DBQk/ySK5DMkfocidRJFqq8ADYktmUqWGnQuN0lD7PFdkMLNcyB2cUcJC9FenoFNO7a90wjcFebVeGQAcSSeZFgu6cYThkMZnpApvVmsXwwjPw9raHUHMaTINGFTkNTkGPimsKm5NYcbD5Ne337wetd7FxzgHdxtSNXI+BHYupd8y/9cAxvOaaiFWSeDr50G6lognkanzxU0o2Arn9APy99sVabqNDp9klGtYTqmu4uSyZeYX5JfkT/z3no1fRf9FRQCLseEVj9dfQTOGAVSgUvxD+iZCsJgQZxZcZwlNQDER2I47l0qHG+E81r+vpRU3vC6saBQGM7WR+jMUcbsvmAwyedKaq/nYgf7cUJPfpswf+p2KVy01z3cc3t/Od+TTgzfr65+qiZbYcUZldwR3nuOVC4kLm/6ArLXjGnSX5rTJDQvJGugadq91GXlyDsbTFezIh/a1ifRyXQSfZpEU0HobOACyycHEnmrnXWwZzJbtb3ZLupoYHrkY5ejKQVW5XOZ1irkGrYKAQ1xg3OuIbOBJbjZLDDQL5/XtRw/VORFN3O9LWtUlJogv1OIbzEP9MLNPsw6j/moDuHrDrFcbx0iBtBwT+t+WdbzWvf76M3nt3N2tukWg/wh3mXU7q4dTGsTPicJOd6JPTOjetcBzs+uoK7/Am7IEl0= sidebar_class_name: "get api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/get-version.api.mdx b/docs/docs/api/get-version.api.mdx index 98054a5af..56d8f90fb 100644 --- a/docs/docs/api/get-version.api.mdx +++ b/docs/docs/api/get-version.api.mdx @@ -5,7 +5,7 @@ description: "Retrieves a specific config version along with its metadata for au sidebar_label: "GetVersion" hide_title: true hide_table_of_contents: true -api: eJzNV1tP60YQ/isrP7VSAik9vPBGgXJQoUEh9AVF0caexHuw1z57AaLI//3M7NqOHTtwCkXqky8zO9dvLrsJItChErkRmQxOggkYJeAJNONM5xCKpQhZmMmlWLEnUBq5GE8yuWLPwsRMGM1SMDzihrNlphi3kTCMy4ipLEkWPHxkuVV5pkEfBIMgy0FxUnUVobJLMP94mUjKueIoCr+Dk4dNIPEDWUSEJEGW5dzE+K7DGFIenGwCs86JQ6PBchUUg0DBdysUoGSjLBSDWsjLMFOr4VZUDDwC9W5hz5l61DkP4QPyZvRH55nEwBD/0WhEj3YytvFhSGfVAVSEGTEgDR3heZ6I0AX18Jumc5uuHdniG4SGoqwoBUZ4rRiSPlt9vt8+7qx4MbrByZXia4qLgVR/xACEkfDO7Ergkafx5LYpC4/tQjnHiGGUNKvl8YQhB4JMcGY1RA6zpRss5SaM0YID9hesNYtgKSSwSKQgXQ4IANph+4knFl99gayZiWEr1sQcRVlt2AKoNgj2RpiEfDir/SooEiLDQ+uGj9KmCwQSEp9BrGLTS8qwDpWIYE4VOH9EU38i/tvYpvzlyhN/ww8hq4+iBdKHRg4Gvgp79DacqE2etdylwN5yzBFPgqJhfC829mT23Qg4czi2vuOwWrVPkYI8wRqmNHObmCqnzzHIGhF1DDDtymfTY0NV2Cp7Y6WDotJECJ0idFS6GTXKJiLGdTyKnp83PA+cV87Eudf1oZBcgkSUhmTo0NnIvAiGALGhsWhvXRfLBF7EIvFGb132nppYZXYVZ9Y4B09vr1puebtIfVU+H8p4u2vsb2//2zDgBNxtaNuKrmM096RNkEkYL90c3PWwEj25uLy/Pp10YlP97wlOdfReChPslnt1bkajbt/J6/HZ6fX8bPx1PJl2NLeI3c6zo6/F/arSycXNeHqxT2ub+qbaNvusaHSr8yoLU5LgIJODjECG6/lK8Tx+B4DfaseNoj+vtV06ZUhyyMSqT3NrYL60MiRVc7+IvOVpx/oOzhqorFeXvnhcyWXWbE814RwLoqO3Xgq6favVDZqzoD0zkNdLrjaRecx13L8oKOAGojk3XfIgwOpNiRJg5cLQoO5gtxP0yDR89a9S2PWflqe27S1L2ya46doIwHbpm5T73lm57BVO15fRl+6miKyZVSH8nZk/M4vzB7m2+yKeOu7bL69QrkLo3oHCVFwohd3u+FMWTVycNF/tQW3leY85fSGoU/SwM+BvuEQdKfFhPHFYxxndMlbg7KHrw0lwWF5iDjciKgj2EFq/hGGv1SluNusDnouD2Jj8D65FeGrp3IPrULt0wPGuaobZVtodhaWcVXtl1qGg/8HuhPo6nd4yx413Khwt0pSxr2qVTi6ITul9xbKfUePYX9PjGFyyBDUDElom7c5imht9pIwvUo5GR8fD0e/D0XE5AE3KHWjKixQCnW2vfztVWePus2+kZXCoZR3iQijcam5VQkZ4zDzUPg2CE1+rMTpDhM0GMwD3KikK+v3dgiIkzah1411gQRFCXEVC0zuCcckTDa84+8uk7CS/sn22VW1JUlNyEwK/8BVXGX9fLhCr1ZX0P9futTQu1LUFVCCfoqp53W5p8wynYQi5adA6fapodoPLiyni+AftOeuB +api: eJzNV91v20YM/1cO97QBSuJlyYvfsjRLg7VL4KZ7MQyDlmjrGulO5VFJDEP/e0F9WbLspGtWYE9xRB4/fvyRx9voCH1IJmPjrB7rCTIZfESvQPkMQ7M0oQqdXZqVekTyxlkFibMr9WQ4Voa9SpEhAga1dKQgjwwrsJEilyQLCB9UllPmPPpjHWiXIYG4uon0WF8j/1PZ1IHOgCBFRvJ6PN1oCynqsTaRDrSRyDLgWAfahzGmoMcbzetMNDyTsStdBJrwa24IIz1myrEIWiPPR45WR1tTMUKE9MPGnhw9+AxCfIO9mXzxmbMeveifjkbyp1+MLT7qdDRSzQEd6NBZRstyBLIsMWEJ6skXL+c2wzjc4guGLCiTlIBN5dVEe2Ot6v368TKKZ/YdTSCCteDCmPq3BBCZCoShBYgqGSR3XVtFMKByRujRsletPUhUSIaRDKjcY1Rytk5DpcBhbOzqWP2Fa68iXBqLKjIp2rIGQgBfcvsRkhx93SBrxTFuzXIMrNLcs1qg9IbQng0nksNlm1chSBhHhtedHG2eLpBE+IRmFfNekXtEIhPhXDpw/oDr78F/i20KzzeV8LdAp8Y2/xQ9kk47NQiqLtzjt5NEG/Ksl64AewfEBhJddILfy40Dlf1hBlyWPM6riaNa11WJCLMEQpQyQ55wU9OnGG3LiBYDr4CqalbcoIZb9WxsfAgqXYbIKWFH41vJoOwy4rbFo9jz8SNkusyqDHFe+XoTJNdokUwogR6VMarKhPJMecg54bYvlgk+m0VSBb1NucqUY3L5KnY5lwle3N300qriEvdN+7yp4v2pcXi8/W9hyJzfHWjbjm4xmleijXYWb5flPbibYWN6cnX9+cPFZIBN830POM3Rz9aw3m335txMrrpDJz/cXl58mF/evr+d3A8894TDybPjr6f9otPJ1cfb+6tDXvvSV9321WdFZ1q9a6pwLxZKymRoI7Ther4iyOIfIPBr47jT9O9ab9elsyLQJTPnoUuznHG+zG0orubVIvJapoPoBzzrsLJdXfbhcWOXrjueWsE7YBj4bZeC4dzqTYPuXdC/M5ZmVVluNpF5DD7evygQAmM0Bx6KA710lIpER8B4xCaty9qZBHtsMqz+VQmH+cvy1I+9F2k/hPJ27QCwXfom9b53WS97RenrbHQ23BQn6F1OIf7t+E+X20idjc62+2IR6PN9++WNZSQLySekR6QrIkfq/Kcsmil6D6sDrG0y3xPOPgjaEk13LviPYGGFqejNAp0ix05eGSss45Hnw1if1I+Yk42JCqE9hnm1hE032qeG4/UxZOY4Zs7+AG/Ci1zOTcsJtStHIKRWYba19klgqe+qgzZbKOS73r2h3t/f36lSW0HOMVqusW96VU4uRC7lfSGy73FTqr/kp1Qoi2VkGIjRumif8gypM0dqfPVYn45Oz49Gvx+NzusLkFMoSVM/pK6R1fb5t9OVLe9+9ou0BkdG1kmWgClX85wSCaLizLTNKdDjqldj51kEm80CPH6mpCjk89ccSZg0k9FNBhaC0HSjI+Pld6THS0g8vpDsL5N6kvyqDsXWjCUrQ6m8IfRY60A/4Lp6LxezImiepP+598pL50HdRiAN8lNcdZ/bPW+VwkUYYsYd2WBOFd1pcH11r4viG+0564E= sidebar_class_name: "get api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/get-webhook-by-event.api.mdx b/docs/docs/api/get-webhook-by-event.api.mdx index 8541dcf77..94d5ae314 100644 --- a/docs/docs/api/get-webhook-by-event.api.mdx +++ b/docs/docs/api/get-webhook-by-event.api.mdx @@ -5,7 +5,7 @@ description: "Retrieves a webhook configuration based on a specific event type, sidebar_label: "GetWebhookByEvent" hide_title: true hide_table_of_contents: true -api: eJzNVktv2zgQ/isET7uAHXu7zcU3p/U2AbrbIHG7hyAIxtJYYiOJKkklMQz9986QkizbStDdtkAvlqx5ffzmxa2M0UZGlU7pQs7kFTqj8AGtAPGIq1TrexHpYq2SygDriBVYjAW9gLAlRmqtIkEGhRNuU+JIQJbpR1UkorJorHBarFURi8dURWnnUllh0bGQwiUJGrHWRrgUXPB1IkdSlxhCXsQE7B26f4Px2WbBKqRRgoEcHYWRs5utLOgPaWIjVXyeElxK7zZKMQc520oGSd8txS0SWY+kwS+VMkgxnKmwHnV+nsbaJGMVt65ShBjN/3b2qM29LSHC7/B3y19sqQuLlvVfTaf82E/hEVOC1ERrR/Eon44pIksoy0xFnuXJZ8vm22M4evUZI8+34Zw4FYKHkw2A3oMzIMcCVhmfqZOttM4QChZWJhs0ojynOj4Wsbsqp/zLd4sl/bv8cO0fH/3vfPnmnJ5vF+8XywW9nC/mbyWx6JTL2Mm5c+XfwTPFeKBKGgS9C/Lpj775p8aAbKPKOp3fhaTaIfYgjhVzAtlln8dDwih/BRpqqnvcjB8gq1AEF4LAVJGrDHJrxb5j1hk+KSJTxOCAclxSmim1oVNdanSVpLqiRktRzC8vuK1a7B8CLs4HF0kfMhgDGy5Th7kdyAanA57ujJ8VfQUiaUUlTfIMrLtrehvjO3BDpNIJcpZIQo9jp6iemMkUigTJO9hnCigimSOvq82L4v8S1OPNdUzj7HnH+0rf7n6vkW8ODriHd+9s+4Wx65suYwOIBk6yn6yuk0ahgUPH7Wq/V91Hg+SqmSFvmgFS13y019PXx0OIVHVlIvxHu790RfOftHYziKxOh0bXBfk11CDXaAjPwhgq8dOfMrxytBaSoflV7wgYgDNEAVtAwjtINnxZprGdWDLBsKxoE83kpFmBE5/DydY/at4CGFVGuY1fZTZXLt2cQKlOUhpRZ2BVNK/Ywc0tb5VDOYJB0ync7rxdMx/hyM/77Djg7/JwHp0vl5fCawsgdYLbkN6uLj/BWc55fQHZt4Tx6i/F8Qo+S6pYa++0ydZ1RfkttVWNTTfNaU2+Oh1P/xxPTxkhqbgcit0K40IXTebE2Ua014uDPdZV3q90SWoYdfjkJmUGqr9DQ8XdyMZfOzfoOQsvVCcpkcE62y1D/miyuubPXyo0XIn0+gBG8dzxdRkr2+zuNWQWX+Dot6tm4v0unoPZbpuCZ5TfdPSPXmnxdde4msq9vSn9cAAhUO+e14HgHvspofq3wL1oQWEeRVi6nuxoxtX9ycJXnrr+ClmbEoE= +api: eJzNVlFv20YM/isHPm2AHHtZ8qI3p/WSANsaJG73YBjGWaKla6Q7lUc5MQz994KSLNuxErTdCuwlDkTeR95H8uNtIUYfkSnYOAsh3COTwTV6pdUTLlPnHlXk7MokJWnxUUvtMVbOKq18gZFZmUjhGi0r3hQYKJ1l7snYRJUeySt2amVsrJ5SE6UdpPHKI4uRySQJklo5UpxqbrDOIABXYBPyNoYQrpH/aQ5fbSbiAgEUmnSOjOQhnG3B6hwhBGytRu5TaE4hAB+lmGsItyBJQgieydgEqgAIv5SGMIaQqcQq6HCeB46SgYl3UCnqGOmHwZ4cPfpCR/gv8ObyxRfOevTifz4ayc9xCU+YUuejkdqdgwAiZ1koCregiyIzUc3y8LOX49vTdNzyM0Y13yQ1YdMEb27Wk/RROj12tHqZyZ0629K5DLUVY0lZ76EcOXXxqUngyhzCGVxPphDA3YeH+udj/Xc8fXcDAbyf/DmZTiCAm8n4PcwDYMOZgNwwF381yFUAayTfm/Q+yKffDo9/ag9UAUSlZ5cvmqL6PvZ0HBvhRGd3hzy+JAyu0SKZSD3iZrDWWYmqgVCeqYy4JJTRiuuJWWX4bJYZqlizVoQFoUfLzaRySq5MUley4hTV+O5WxmqX+4cmL6mHNMlhyppIb6RNGXPfUw0ph35eUK0Vhw62zJdIgplpz4t2tjFeaO4jdeUoFwvEmnHAJseayVTbBBeE2r/SQBGhZowXy82b5u8JWuebu9iszOvAx07fDn80yLMXFzzK9+hux42xn5uuYj0Z9dzkuFjdJAXNADcTt+/9g+4+EZL7VkPetQJSVXK1i9HFqQjdo3clRfi34z9caWN1MbrYa1AVwGWfdN1aRrI6e0BaI02IHKnLnyJeOXqvkz79qvYE9KTTR4Gc0InsIGj58kLjTrEgwWZZcQohDNsVOKxrONzWP5VsAYxKMrypV5nPDaebM12Ys5S5uNLeRONSAGZz2Sov7agJqXOY79EehI/myq9jdhzId3ipRzfT6Z2qvZUuOUXLLem71VUruNilrm9k9i1have34tQOdZWMXbkatK3WQ1kgFc6b9kyn5nA+Or8cjH4fjC4lw8J5zrXdrzBpdNVWTl1t1O558WKPdZ33f3oktYwyPvOwyLQ53KFNx82gxdvpBgQQNv/MA0idZ/HZbiXlj5RVlXz+UiJJJ84DWGsyojt1X8bGt7t7pTOPb3D0y32reL+q19LcbRsrGlVvOggBAnjETfeMq+ZVsHsp/ecJNIEO3nldEjJjPyXU4SvwKFrjMI4iLPjAdqJx1aGyyJOnqr4CWZsSgQ== sidebar_class_name: "get api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/get-webhook.api.mdx b/docs/docs/api/get-webhook.api.mdx index 091d37d76..52721a426 100644 --- a/docs/docs/api/get-webhook.api.mdx +++ b/docs/docs/api/get-webhook.api.mdx @@ -5,7 +5,7 @@ description: "Retrieves detailed information about a specific webhook config, in sidebar_label: "GetWebhook" hide_title: true hide_table_of_contents: true -api: eJzFVllv20YQ/iuLfWoByVbT+EVvaqLGBtrGsJX0wTCMETkiNya5zB62BYH/vTPLW6aN9Aj6IlKc69s5vtmDjNFGRpVO6UIu5RU6o/ABrYjRgcowFqrYaZMDKwjYau8ECFtipHYqEo+4TbW+F5EudiqZkXKU+VgViVDOCnJUODsTKUKMhl6giAUFSBI0IlXWabM/kTOpSzQhwEVMGD6g+7N2S6ISDOToyFoubw6yoD+kEh4zqRhyCS6ldxulmINcHqTbl6xjKVCRyGomDX71yiD5dsZjNevcPM21SeYqbl3VOP+xs0dt7m0JEf4Lf7f8xZa6sGhZ/81iwY9xlfoMCZKL1oACUR0c5ZxNoCwzFYW0nn6xbHd4jkNvv2DkOM+Gi+BUHbU+0gTaEY4JORawzfgwnWyrdYZQsNCbbNKI6pvq+LmI3fmc6i4/rDf07/LjdXh8Cr+rzbtzer5f/7berOnlfL16Lyl9TrmMnZw7V/5ee6YYD9RBk6D7IJ9/Gpp/bgzINvLUqfld08VT2YM4VpwTyC6HeTxOGBWuQENjc4/7+QNkHkXtQhAYHzlvUHhLM0cTJ3YZPilKpojBAdW4pDJTaetBdKnRPkl5Gl2KYnV5wXPUYv9Y4+J6hAkcQAZjYM/96TC3E9XgcsDTnQk8MFSgJG2pl0megXV3zRRjfAduKqk1Z9AXQo9zp6ifOJMpFAmSd7AvNFBEMkdet/tXxX8naMCb65gI62XHY6Vvdz+a4JujA47wjs42box+brqKTSCaOMm4WN0kzVqC5Inre3/Q3T2DXDXk8a5hjqriM71dvH1OO6SqvYnwD+1+1Z6onLR68iGrsymyuiC/hibjGg0BWRtDvX32XVgrR2shmSKuqj/5BJypFLAFJLx0ZJMoy/lrqUomGOLz7lnK02YNnh447xUTPkbeKLcPS8vmyqX7EyjVSUqk9AtYFa08W97c8gI5liMYNJ3Cbe/tmhNRn/Vln93h+bs8ZqDzzeZSBG0BpE7HbbLdbqnA2Szngr6C7FvCBPXX4gSFUB6+ZQSnTZmuPRW21FY1Nh1/00Z8czZf/DxfnDFCUnE5FP3S4tYW/f3haGF1nfY/3XSanDl8cqdlBmq4F+tmupGPHfhlOBI1QEqnZNHhQKXBTyarKv781aPhFqPXBzCKKSQ0XKxss4Z3kFl8JQs/XDXk9aN4CV27OAqmm7C06B+90g5rb2IVtXF72fnP49dxBle1DgPPzncJNbzIjaLVCqsowtINZM9IqxpSBV9equov2wHxzQ== +api: eJzFVktv20YQ/iuLObXAylZd+8Kbmqi2gbYxbCU9CIKwIkfkxuQuMzuULQj878WQ1NO0kaQNehEBzeub1ze7gQRDTLZk6x1EcI9MFlcYVIJsbI6Jsm7pqTCioMzCV6yMCiXGdmlj9YSLzPtHFXu3tKlW1sV5lViXKstB4QodB60yNAlS0Mq4RDHZNEVSmQ3saX0GGnyJ1AS4TSCCa+S/W7egoTRkCmSkANF0A84UCFH70WAFcmk4Aw0hzrAwEG2A16XoBCbrUqg1EH6pLGECEVOFtd65eR54Sgc22bpqcX63sydPj6E0Mf4LfzP5J5TeBQyifzEcyue4S/sKqYvhUG0NQEPsHaNjMTFlmdu4Kev55yB2m5c4/OIzxix1JmkC2zZqm1IP2iMcPXJ0ZpFLMjvZwvscjRNhRXmvUYGc+eSlSNxVBURTuB5PQMPdh4fm87H5HU3e3YCG9+M/xpMxaLgZj97DTANbzsXJDXP5Z+u51rBCCr2g90E+/XJo/qkzqDXEVWBfzLsp7queSRIrNTH53WEdTwsG1+iQbKwecT1YmbxC1bpQgamKuSJUVcBELT2pZY7PdpGjSgwbRVgSBnTcLiJn5Ks0k23kDNXo7lb2aIv9Q4tL+tFs4AFkQ2TWMp+MRejphrTDPM+p4YFDBVcVCyTxmZvA826LMZkb7itqyxkQQWIYB2wLbCqZGZfinNCEVwYoJjSMyXyxflP8LUEbvIVP7NK+7vhY6evdH23w9CTBI7xHuR0Pxn5vdh3rQdSTyXGzdpuktwQpG7ef/YPp3jPIfUce7zrmqGvJ6XJ4+ZJ27jH4imL8y/PvvnKJuhxe7smn1nDVR1a3jpGcyR+QVkhjIk/q6oewVoEhmLSPuOp95j1w+kogFiaVowNdoYLUb0tVkGITX25PBOfdGTzfSN1rIXyMK7K8bo5WKCxn6zNT2rOMufzNBBuPKrGczuSAnMrRENJOYbb39iCFaHN93ecuefkfThnoZjK5U422MhVn6Lir9vZKNZwtcmnoG8i+Jkyj/lacRqFpj7wyGqddmx6qEqn0wXY2O/6Gi+HF1WD462B4JQhLH7gwbn+0ZLTV/v1wcrB2k/Y/vXS6mjE+83mZG3t4F9thmsLTDnzUpDTTkPnAItpsFibgR8rrWv7+UiHJiM00rAxZoZBm4BIbujO8NHnAN6rw031HXj+r19BtD4cTummOFkQAGh5xvX2J1bNabx87/3n8Ns7BU22HQXbnh4Q6fMgdRWsVRnGMJR/IXpBWfUgV8nip638A2wHxzQ== sidebar_class_name: "get api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/get-workspace.api.mdx b/docs/docs/api/get-workspace.api.mdx index 19c50bbac..b31e9fd3b 100644 --- a/docs/docs/api/get-workspace.api.mdx +++ b/docs/docs/api/get-workspace.api.mdx @@ -5,7 +5,7 @@ description: "Retrieves detailed information about a specific workspace includin sidebar_label: "GetWorkspace" hide_title: true hide_table_of_contents: true -api: eJy9VlFv2zYQ/iuEnjbAToyuefFbuqZdgK0Y4gx9CALhLJ0tthLJksc0hqH/vjtJtqVYTlJg3ZNl8rvj3Xd3H7lNcgyZ1460Nck8uUHyGh8wqBwJdIm50mZlfQUCULC0kRSo4DDTK52p79Z/DQ4yZFhWxlybtdIUVGbNSq+j78xMrir2lwPBWTJJrMN25zrnMz8ifd654U0HHhiMPiTzu21i+A+D9gelzcIk0RKuAyr4O2QFVpDMtwltnKADZ2HWST1JPH6L2iOfQz5iPdk7fJxav57qfOeqQMjR/5Cze1kJzpqAQfBvZjP5GTLaz04xQu1M+ChmidCQGIFzpc4aUs6/BLHcHkdil18wI+HIC4Wk23OfcDMWOecKRofGf8pJv4g56elwWBveq5AEFMMxaJKgiRWXObn6dPnuz6v3vPL+etF+MrukqRT4nsBF62jgHPJKm5Qj0eVoGG0rpg/cULrl9RjiEQjzdLkZ3S4hUFrZnDv+tSCgsWzbQeIVHgSckmbieqf/iE3FIwVk/SbNecVIZn1+wXvYSGcTViO81+JBJj2TTf4DZWm/p/jITSXuKA1YrlLuSW8foE/r0toSwUgIEMmmzrpYcmCptLK3J6BoYFm2GHyklF3qHGhYjRF4AWaNKbPD8/CC0WA4717K51Twg1oM2uLloJ7LcqQ7RrrqUJPjeR2bzlNDMDkWy/GhHRnR3tD1heum06zfO8Gqa2H87eztsd4x1Eaf4SdLH2xk4WfUQfPY6mJMJa/ZrzdQLtDzoF55b726+CliWWEIsB5TrPqQ+0g4YxSIBazlnjpIlPoLDPuXrhM2uaSFlVtujU0scmHNk/M98eF8O6xWLVcQZtFr2jQXYKg0FZszcPqsIHLvIOjsMoqbu3u5z57uI3j0e8D9wdtCGGpJOO1zz4qscyjDMv1xe/u3atCKJ6jgHLsy7O7NZihlXyr9TGSvOaaBP3dOA2jqJm+UxmlXv0XkijsbdGezF3++o99cTGe/TWcXEiFDiKVUTLtnAXe96r9GBoFtD034P72UOpZEUM5dCbrRx+gbnW176e4wxCIc8yezz/UvOEnBbbdcGfzHl3Uty98ieukw/nwAr0W7mn7LWWT4m3t2BWXAZyj45aaT3F/VqVB395EReWNFjPKPP7/i5vhRV3M/795h/3kk7Ym9V98+Ghmidvcyy9BRb+9IaOr+SH+8uuXu+xeSJ/90 +api: eJy9Vt9v4zYM/lcEPm2A0wZd++K33q7rCmyHoelwD0FgMBbj6M6WdBKdaxD4fx9o54fTOG0P2PYUR/pIUR/Jj9qAppgH49k4Cyk8EgdDK4pKE6MpSStjFy5UKACFc1ezQhU95WZhcvXdha/RY07K2LystbGFMhxV7uzCFHXYmlmtKmLUyHgBCThP3c6DhhTuiT/v3EACHgNWxBQipNMNWKwIUtgflLULCRgJ1yMvIYGYL6lCSDfAay/oyMHYApoEAn2rTSANKYeammTv8HnkQjEyeudqSagp/JCzmaxE72ykKPir8Vh+jhnt305djcdqZwIJ5M4yWRYj9L40eUvK5ZcolpvTSNz8C+UsHAWhkE137gtuhiJ3oUBrYus/M/ptzFlPh8O68N6FZOQ6noISIFtXkE7h7tPthz/uPkICHx8m3ecsATZcCnxP4KRzdOQcdWVsRhWacjCMrhSzFYVoOl5PIYGQSWfz9eB2iZGzymmzMO8FIQ/dtmskSEEj04hNRf3Tf8SmQquRXVhn2lRk5WZ9fjEEXEtlM1UDvDfiQTo9l80mASxL9z2jZ09B3HEWqVxk6H1wK+zTOneuJLQSAtbsMu98XSJTJqUc3BkoWZyXHYaeOVthaTTycTYG4Eu0BWWBMDr7htFRc07fus+54I9ycVQWbwf12i0HqmOgqg45Oe3Xoe481wTJqVgON+1Ai/aari9cj1vN+nUrWE0jjF+Pr0/17pGiq0NOnxz/5mqr1fX4+qB5TQI3Qyr5YJmCxXJCYUXhLgQX1M1/IpYVxYjFkGI1h7sPhDNEgVhgIXPqIFHqT7RYkFSdsFkRL51MuYLaWGRgpXC5Jz5ebo6z1cgIorwOhtftAIyV4eX6Ar25WDL7DxhNfluLm+lM5tnLfcJAYQ+YHbxNhKGOhPM+96zIOiQv0vT709NfqkUrrHlJlrdp2M3NtillXzL9SmTvOaaFv3ZOC2jzJm+U1uk2f5PaU/Aumq3NXvzhanx1Mxr/MhrfSITeRa6wrZ/ts+CeWPVfI0eBbQ5F+D+9lLYsiaBc+hJNq491aHW2q6XpoYlFONIXvT9LYOkiC26zmWOkv0PZNLL8raYgFTZLYIXBiHa19aZNlG8N6QLLSK9Q8NPjVnJ/VudC3c0jK/K2wrKWf5DAV1qfPuqaWZPs3mH/eiTdib1X3z4aaaJu9zbPyXNv70Romn5L3989QdP8A5In/3Q= sidebar_class_name: "get api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/list-audit-logs.api.mdx b/docs/docs/api/list-audit-logs.api.mdx index bcbed0c2f..b7206b75d 100644 --- a/docs/docs/api/list-audit-logs.api.mdx +++ b/docs/docs/api/list-audit-logs.api.mdx @@ -5,7 +5,7 @@ description: "Retrieves a paginated list of audit logs with support for filterin sidebar_label: "ListAuditLogs" hide_title: true hide_table_of_contents: true -api: eJzNV8Fu2zgQ/RVCh8UWkBNvFrnk5m7dboBsESTuKTAMWhrbbCmRJakkhuF/3xlKsilbEeQkXezFlsjhzJvHx+FoE6VgEyO0EyqPrqI7cEbAI1jGmeZLkXMHKZPCOqYWjBepcEyqpWVPwq2YLbRWxrGFMmwhpAMj8iWbr1mKy5jh+RJi5vhcAst5BjZmPKFA9JCnrLBg/Lh3kKhMS8HzBPxkpnLhlHeoC6OVBXsWxZHSYDj5uE4R7g0CGxGoG8SEs5ob9Ic4bHT1sInIOVolqsgdzgrK8GcBZo0vzby/FtkcDOUoHGSWOcXmmAG4wuRIgMgZ8GRFlAChsMkKMh5dbSK31hQi9+vf5na7jXeQaaQb8S1asDIsuTXVxsXMOm4c0bYwKmN/nAK3v88QK5eyG+r1gjlToJsycdSWlPiMxpbU5amJmVjm1XaXusO1bL+fniMvDL+brVnNlZLA8/8mfsgAsTIjzR/ycATROgqBM6j4jDscoWUDJ9BP6NGpd/ZHh/DIm1tLDx/XtjnnxnCy8wQdB0X/ETxrqVIcJIJDTfhz/s4BMRyKE092dP31fnw3wYFvt59GkzE+fBrfjPFhGkdOOB/E14VRiaMLal2F+nId0mqx+s3m627531OJVCbFQ0X4q/rla15ZWOuSZltVvUv+LV5r4sgHvnL8DagiXx/XjcyeB8osByKtU1sBT33FeJGWOKIjJQykRxQ/D56U+WE1T+AN/qY0YjVmBF4cF8Mh/TVpadwIDE1YvQZjJSp3gFcBruIaL5vEE3T+3dLSzTEUNf8OCd0c2hCdTpSBnXJczqgg2OOairjL+UMR7+fxiPZR/QvRcU/ayPInfFYS3jJNKn95luoF1vhM9y0tcX3C3/OQ4u1uBNVeOasowqEcnoK38oS1lqK9Wh6C8kMCro9lQFGYckjOITRU0ecC77ftYQQPqbnVcUMYgaeGJu8qOf5VaXHrXV+2afkaLbA0yXswj2DGxuDZvvwlikYqLHUcrcTWabTAaUvGa3FJDVhJIfuN/bPr5YgWvFBXirq3JXgk3K3w5dw3l1QQICmMcGvfwdkM+8z1GdfibOWc/sitSEYFLXiYUoE5nAduwOwMpntv98REmezLPnfZ0/hRxf17Mrll3hobYbfCfCu66yrmexCaJyl3IOsTxpt3xfEGfn9EvlDeaV3NC9xZbJhFtQY3y5auL4YXl4Phn4PhJSFEE5dxr5OqTpNQWblpVUPdgLbZy+3//6FQUezg2Z1ryYWvL4WRlEYpOSwTXnKokhVSQQObDe4ffDNyu6XhqtqgDlNhCR2qdsGlhQ5iTvySaIX5A9bBZ8sjlwXZRCT4/kBO+UDoQFF9ibwSxC9q/Tvwll8j3XBLy7Br72O/78l7WVcddx/b3XXVxzjoV1+5Kae1jh1c79vfPZIpvRjhs/dFum71TjtGv99Vl+0H1o0haFRfSccJocI2thGtNBglCejwyB7dydvw/vsynmAB/xcb3wZO +api: eJzNV01vGzcQ/SvEHIoWoGzVhS+6OYnaGnADw3ZOgmBQuyOJCZdkyFnHgrD/vRjuSlp9eCHZTtGTrSU58+bx8XG4hBxjFrQn7SwM4A4paHzCKJTwaqatIsyF0ZGEmwpV5pqEcbMofmiai1h67wKJqQtiqg1h0HYmJguRK0IRlJ2hFKQmBoVVBUYpVMaJ+B+bizJiSN9TgMwV3mhlM0yDhbOaXAroy+BdxHgGEpzHoDjGdQ4DuNGRrhjUjZtFkOBVUAUShgiD0RI4OAwgc6UlkKC5wu8lhgXInbo/l8UEA9eoCYsoyIkJioBUBou50FagyuZMCTKKmM2xUDBYAi08p7Bp/dvCVpVcQ+Yv3Yhv1QxFnZbDhmbjpIikAjFt0+AK8fspcI+P2caqjOmGej0VFEqUTeFRKGNEwO8lRlZXokYKPbPNdte6086KzX4mjpIw0m4erGrinEFl/5v8bQaYlUfW/C4PexAjcQqQMHWhUAQD4GU90gVuRST3zvH4EO5Fo4VJ8F0oDgVXISielwjaT1pVEvDZG5cjDJjgtibSOX/nhBLQlgUMRnD9+X549wASvtx+unoYgoRPw5vhwxDGEkhTSpJ84arG0QV15ULHct2mNbpAj5NFt/zv2SJdyDEIxt/4V/K82lhXlhYPqnpd/FuirojjGCBBxaxNFcf6sNiq7Lnnwqyn81Vpc1R5cowXaZHAR0oHzPcofu79cOFb9CrDN8Qb85fonY2YxHHR7/OfbVq2bgRx0e+L1RqQkDlLaIlXKe+NzhJB518jL13uQ3GTr5jxzeED00m6TkyOlHlkQ4j7nlrJZnxXxJvxXNExqn8hu84PkpVO+GNN+IFhVvnLo+wXkVThj7UWuTrh73lIJbig2XvNY0NRJcHij9av+oQdtKKNWkYt+2EBr45li6J2yW1ydqHduNmfpTFQ7WZIkLa3Wm4JoxVpS5N3jRw/NlqsUujLQ1q+tsTWZO4xPGEYhuCCuPwpii4wRu44DhK7KuMAnEPFJC3OuAGrKRS/iH/WvRzTUiDNHXdvM0xIFM1hAOepuWRDwKwMmhapg4uFpvniTHl9NifyH1TU2VXJC0ZjNpjdcVQBw3rCeBPtnpmoi3055rp6/r7nuH8/PNyKNFuokuZoqaF75WKpB+FxlnIHsmPSpOldedKEtD/aTl0KunLz0iM3zLpZ84Qh1qEv+heXvf4fvf4lI/QuUqGSThqfZqGKetOahnoL2nIjt///Q6GhmPCZzr1ROvlLGQyXUUtuBLXkxhLmLhJ/WC4nKuKXYKqKPzduM1pCriOjy2EwVSZiBzEnviQOwvyGi9az5UmZkucAC/54IKc8EDpQNC+RV4L4Sa1/B976NdINt57Z7tqPmb/pyY+a3XTcx8xdX1fHTG71q6/clNNaxw6uN+3vBsmYfwSdqk8mvWr1TjtGv941l+1vohtDq1F9JR0npGq3sVvZ6glXWYa+fWT37uSqff/9NXyAqvoXG98GTg== sidebar_class_name: "get api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/list-contexts.api.mdx b/docs/docs/api/list-contexts.api.mdx index 55355081f..5af7347e0 100644 --- a/docs/docs/api/list-contexts.api.mdx +++ b/docs/docs/api/list-contexts.api.mdx @@ -5,7 +5,7 @@ description: "Retrieves a paginated list of contexts with support for filtering sidebar_label: "ListContexts" hide_title: true hide_table_of_contents: true -api: eJzNWN9v2zYQ/lcIPW2AnWQZ8pK3tuvWYOsapNlTEBi0dLLYUKJGUrENw//77ijSpmxFtWOk2EtTS8e777vf1CrJwKRa1FaoKrlO7sBqAc9gGGc1n4mKW8iYFMYylbNUVRYW1rC5sAUzTV0rbVmuNMuFtKBFNWPTJUs1cNLHMjw9YqXKRC7S+NEcxKywI8arjClbgMYzghTws2SUqBq0k77JENJfaPyDN4wva655CShrkuuHVVLhDxRKVVNZfCuIxL8N6CX+6FL7uymnaAhpoKXSMKvYFJgG2+gKOYqKAU8LYg0EwqQFlDy5XiV2WZOJyp0/Te16PdpApifDiG9RgrVmSa32sRkxY7m25Oxcq5L9cgzcw3XGWLmUw1BvcmZ1g2pa4pg+UuL/UdhQAjnXjJiYVcoliU8tSohtPJ2PXEq4aPaymiolgVc/xn4nWhpysdh1grFLSW+xBMo+uFxrTnLOfvTcWIJBBhJY1FJl+JDwRwYNltZEVXsWd014VagIo4olkUhu7KStOcgmnKrCFWT40dZe8jhKrLAOva+u310Nf0W7X6oOdwdluhzOADrHlM4wrwiJr2DXHNr2EYra9AZ2Q+MUrcEFpAN/cvw3okm63i87zIJj9sm9YWS7AfqhpmvJhYv1oWkVOysTJVQGfT0puU2LCYqg82bfywsvRd0mV1KqOZsXQoIfGb5rTrnBMsXI4jAIY+aYNDnFSMgaWPDUGW2mBjoF8ltg/pmIB2Md5yzGSs/GIgvOKIBnrv2+6NlRQv1JaMj2wrQYz5V+MjVP4QR9j/TE1Fgb4NLk8uKC/nQ9F09XhhIsHKG2Qc9xrOIhXtfSj/Dzb4ZOrvaRqOk3cB6sNdWlFa1dqyyXE2quZn8+Iez2/W42b9/jynBI+r9gHUPS56tnLhvoO82zTBBNLm9jPevdlLsDHAkG3WMolcKZzR7DGso16lM+0ZgrGrR+xv6EpWEZzpMK2KaoGMXeuPHjsBlmakhFvmyzNai1BUdVDbY+3DJwblHbi/p4i4MIqmfQWmQncUSFuZg1vukGjaYFoQG7SQpEhDfSBtTzAqoN541nkJhu8bbsdfAeiUQ2nuhl5AM6RfyDbdofecz5SwAVc568EHQ/+r7bTm61wD3BLv2e2sYSW0tGe0JJYXOY3FjarsUMCLTjccY+4UF82ypAj/EnYEg5hQwqclrj9pAuefSIko07n+zGoodNWvBqBhMcYeYlie3c7+FM84XeUIHB2GIixmdwLvWp3NsuDla8N/Z6J9e2hz3sENxZYzqjO3bVKHFduGcN6hm8myrpJk/oDwPb0l3ok+td2K5fddvaqNMEI2Vx+w0aP/i2u3aar/q69g1KaCzfr6AR9Uetsc9cvUnzxp5k6KLSG6zAogdOHxk6wWd0bwtOZJ95hdpLkkCvYH8oFN35ZuCQcFvgj/NoH4C0ocJ0Vz9T4i10ecZrcVZYW7/nRqTvGjry8EjDdPc9YDPRG4HHrbav5IuW7ss6N/zp+V7H+HR/f8ucNOMojny8w8PEdpcXek+lMIDsEDNOfMiOE3ARElWunNKwAzcY21oZ4c9guEyr+vLi8mp88ev44ooQoogtucsUv5NQprLoHr7TnTbp9v/4hOCdSKbO3dJLpBotCWqbVg9JSCvMhALp0qPVinbEf7Rcr+lxu9FSrmXC8Kmk+s65NDBA/8jPDL1AcQpG3zT8qpIklNSHAznm68EACv+Z4pUg3ui7wADe9lPFMFzPLFzpDxHeXsdf6YnjbrIDBLe38UNwd8bkIQd6huRBzoxulq/10CmXuAGHDdxbt0gf6Qc2jym1SZof4cZ1XPX/dOcXgZ/ZMKjovvhKdx1hKr5Ndqy1Au/SFOo4cHsLwzoezn98vMfZ8h9phsZV +api: eJzNWE1v20YQ/SuDPbUA7agufNGtSdMmaNMYTnoyBGFFDsmNyV1mdmhbMPTfi1mSEinRjGQjQU+CyN2Z9+Z7+KgS9DGZio2zaq6ukcngHXrQUOnMWM2YQGE8g0shdpbxgT3cG87B11XliCF1BKkpGMnYDFZriAm1yINEM0ZQusSkJu4/ukeT5RyBtgk4zpEgJiMC9LmKlKuQwun3iZqrv43nN61iFalKky6Rkbya3zwqq0tUcxW72rKKlBESX2uktYr2qP1TlyskoWEYSw/sYIVAyDVZTMBYQB3nwhoFhI9zLLWaPypeV6LChvsvE7vZRFvI8mQa8ZXOEBq1IpZa30TgWROLsVNyJfxyCtzjZfax6qKYhvo+BaYao5a4B10UQPi1Ri8BFEwTgcmsC0HShpYExM6fwUYhJII3R1mtnCtQ2x+jf+AtwtQ87BvB87qQt6mjcgyuJtJyLujvPfcsMESBwoeqcAmqueDvKfSOeOnsgcZ9Fa2oSKGtSzW/UYX2vGxyDpOllqwICdn9aXJPLSLFhgP6Nrv+CDn8yRF/tAPuAcpqPR0Bcg8cJUggSNoMDsWhKR9dUvtRx25pvERqZwKRoSKlfdynKbJerwfMOsMckvuOnh066Ieqrgptgq+PDau+sRJTovXG2WWpOc6XnkkzZt+Ki/aUVJvUFYW7h/vcFNi2jLZqrrTHBJwFzrFrM6eEyUuUdFGDDzoOSuuVx0GC/N4x/yDEO2UD4zycOcrOTNIZI0edhPL7pGUjJfXJECYHbno4u3d06ysd4wvkLeSJr5z1GMLkYjaTn6Hl+t0VLmYz6K5I2ZDnluWSrqqibeGvvni5+XiIxK2+YLBgRZKXbBq97FgXSymu/rA/baL2/X40794nmo8J/ye0m2TUVne6qHHstk4SIzR1cdWXs9kPuWusCD1a9hJK3Z3tHAO1xJrUqTbQICSNsdk5/IVrDwmmxiJskwrE9z60n4DNg68wNum6idZOLOeaoaw9y5RRYuiSvTre4BCC7g6JTPIijm+cTU1Wt0W3k+gbEIRVoWMUIrouuEN9n6Pdct5axoOmBm/DnjrryZGejlt52bOB3BL+nW6ZH3Wf88cOVJ/z8gmnt63vm+Xkiowjw+t2Tm18yQ4SmRNKcVvAFNrSbiwGFNCBxzm8M5mMtY0AD6xvESrCGBO0YrQ6zCFD8oTeFXW4r/Z9McImzrXNcEmo/VMndn1/hLP0F3kjCYZnbErs31mtR0UeTBdHCz5oe6Oda1fDbvYI7o0xg9bdN1WkQhUeGYNGGu82S4bB09WHiWnpuquTm33YoV4Ny1o0KII9Yf3y20l805bdTZB8OVa131tGsrr4hHSH9JbIEVx+l+JdoveyqIw6q2MxAmeMjNzQmextnRHhg7Y6w1JOLCJVIudOdr4MAxLNuZqrV715AONaEjOsfr40nK/PdWXOc+bqtfYm/q2WKzcLaab771ET0vbAYiftk9iiofu0zC1/eX5QMd59/nwF4TTomnO03Bq869hheZH3kgoTyI5RE45P6QkHgoeMTV0Q2s3AdYVUOW/aO3dIvhF9Mbu4PJv9eja7FISV81zqECntTCKRCr09fK86bcPt//EJoTWiqHoVhl4hVVMhUJuwulFdWC0ilTvP8ujxUWbEf6nYbORxM9FKrCXG61Uh+Z3qwuME/RM/M4wCvcV175tGO6ooJUF9PJBTvh5MoGg/UzwTxHf6LjCBt/lUMQ23Zdat9Mcc3q3jz7TEaZvsBMHdNn4M7kGbPObCSJM8ypi9zfK5FnrJEjdhsIm9dYd0IX/ICNSmf3Qb12nZ/9N1Owj8DNOgevviM811gqr+NjnQ1hz4LY6x6jvuYGDY9Jvzn28/q83mP2mGxlU= sidebar_class_name: "get api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/list-default-configs.api.mdx b/docs/docs/api/list-default-configs.api.mdx index e5c906ba6..70f838d9b 100644 --- a/docs/docs/api/list-default-configs.api.mdx +++ b/docs/docs/api/list-default-configs.api.mdx @@ -5,7 +5,7 @@ description: "Retrieves a paginated list of all default config entries in the wo sidebar_label: "ListDefaultConfigs" hide_title: true hide_table_of_contents: true -api: eJzFVt9v20YM/lcOetoAO3Ez5CVvWVd0AYouSLKnwDDoE2VdK+lU3imLYfh/H3kn25ItG3GLbi+WpeOPj+THI1dJik6Tqb2xVXKTPKAngy/oFKgaFqYCj6kqjPPKZgqKQqWYQVN4pW2VmYXCShScMpXyOap/LH11NWgc8RddNKmpFnJgSL1A0aAbKadzLIH/QJWqEj2k4OEiGSW2RgLBcZcykk/s84/o631w5VikBgJWQXLJzfMqqfiFRbVtKs+nRiL41iAt+aUf1+emnCNJDMZj6ZS3ao6K0DdUcYCMHkHnEjIKlIgxuVklflmLiyro/5jZ9Xq0hSxfTiO+ZwkV3YpZagvD+fNAXtKakS3Vu3Pgvt1mFytX/TTUu0x5athMDNwFnhCysBP2hNQwHxaVJfHR8op11a6eIUeBEqGag1HNrS0Qqv/GfzcD4bGXggN0zov1nt7r2NJibNKNbo6QhrIcVR4lgtsQcgtITD1j2+b6AXtT+eJqWzl0In81mcijn9DD3lMspzaK7JC733PriyrUdWF0yOflFyf6q0M8dv4FtfRoTdLm3kTv3nooZpJ6d8heBh/PQwEHz+Xq6BwAEUht9hWOeP+Ky8GUhZuKT9YDid2agjQ1EjMU912j631yfsQKyWjFzsbBsIomuOeo0cxXVI1jlmaWVFbgq5kXqCQuTnfNGecsR676nGyzyG3jw017e38nTeKNLwTXXxHXvvuB6HQO1QJnhOCOSASYM/41aXA9y5pKhz+RikdVtC3rxuMb5DW7596cgT88HiWci1JOpL449oaNdHTmw1UrwPlZaVOTmTMN9zUHzfca6Xkvh71wejj71RgFxg0gHYCwpd6GjtNdrXut+bBpyvU+yNAc/R4a9TquY/Kw4zd237edvg72r4euizuWIG6ER6QXpA9ETOXrn3JflOicTM7BAm1iGYAzFIxowEIWiU1CVQy9iVuIpIdnQ25lG1lgAAM+55fLdgcaxx1IaoW6IeOXYStxpfH58gJqc5F7X/8OzujbRjSfp3Kf758jENJWYLqz9ihZiYEft7nNhHw/GI1/Pj3dqyCtgMU59jb1G4KFuSrn0ggnkL3FTRA/5ScIhFqZKrPBaFuzx4arXFtnWh0unIumryZX1+PJb+PJtSBkEV9C4Ew7FoW5ql9At49vtePf/7rhtin0+Oov6wJ4hnNIDRWCMHKLu7bPLaZDzjHLyWrFhcK/qViv5XNcRIRwqXHAU4N5mkHh8ETwZ67Bg3jD1Nzu3O2sTBJh9tuBnLPdnkDRrtHfCeIn7a0n8MZV+jTcKNmunDvRqbyQEdl4kWy2v/MY8MtDOyF+VaehdnbX70zvGa66m23PWxS41RrrLtsOZsi6e1l//PDEl8y/nhwvwg== +api: eJzFVlFv4zYM/iuCnjbAabMOfclb73a4FRi2ou2eiiBgbDrWVZZ8FNW1CPzfB8pOGidu0Nzhtqe0FvnxI/lR4loXGHIyDRvv9EzfIpPBJwwKVAMr44CxUNYEVr5UYK0qsIRoWeXelWal0IlDUMYprlD94+kxNJBjpozLbSyMW8mBIfUENmLIVMgrrCFkClyhamQogOFMZ9o3SCA8rgs903+YwL91sT6mUEFnugGCGhkp6NnDWjuoUc907qNjnWkjGXyNSC8628vrz1gvkSQHw1gHxV4tURFyJIeFsEfIK0kZhUrHUc/Wml8aCeGS//fBtm22pSxfjjO+gRWqLqzAUt+YTAUGYilrSb5Wv5xC9/2Yu1zB2uNUr0vFFDHrEw9JJ4RfIwZRTypNpszKeZIYva6Md+q1n6lGSRKpm6NZLb23CO6/ib9bgfSzV4IDdoEFfeD3PPG0mphi41shFKktbzpnWngbwkLPJKcB2Ha4vgNvLl9C413AIPYX06n8DAt6OHvqYjpVG0ed6dw7RsfiCk1jTZ7qef4liP/6kI9ffsFcZrQhGXM2XXT2DHYhpQ+H6m2z/jw1cPRcro6dAyAC6c2+wxvRH/FltGTpptKzdTtS2C0UFIWRnMHe7IK2++L8jA7J5OoRXyYJWHUQKjDFnCOhigELVXpSpcVns7SoJC9F2BAGdNxplSvycVX5yOmmvbq5liFhw1Z4/dXx2g8/kl1egVvhghDCGxaJ5uIJrClS6EUZXZ7+6KT4pkvu6yYyvsM+J5SXZQF8eJzp0lMtJ9JfnLCpcddnOd41C4EXtS9MaU4EHnqOwg8G6WGvhoN0BjyH3ciS4kaYjlDYSm8jx/lrrwejebsZynafZBqO4Qxlg4nbgTyc+A3ux37S24R/OXZdXDtGcmDvkJ6QPhF5Upc/5L6oMQR5OUcbtMllhM5YMuIBK1kkNgVVXeqx20KkPDVy5WUbWWEiA1zpmT7vd6BJtwNJrzCPZPglbSWhNly9nEFjzirm5gMEk19F8XyYy32+f45ASFuD+SvanVSlS/xtzG0l5PvB0/j7/f2NStYKIlfouC/9RmDpXZVzGYQjzN4TJpkfi5MMUq+MK30C7Xt2FxukxgfT+zwhhQ76YnpxOZn+OpleCsPGB64haaZ/FkW5atjAsM9v/aq//3XD7UvI+MznjQXjJKVIVhh22nrQe9qaZ7rygeVkvV5CwL/Jtq187hYREVxhAiytDH0JNuCR5E9cg0f5pldzu3P3b6XWouz3Ezlluz3Col+jv5HED9pbj/DtVunjdDvLfuV8NZ3LP2TEtrtINtvfaQr46bZ/IX5Wx6nu7K7fWN4TQu1utoNoncFVnmOzq7aDN6Tdvaw/f7rXbfsvnhwvwg== sidebar_class_name: "get api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/list-dimensions.api.mdx b/docs/docs/api/list-dimensions.api.mdx index 7426e81a3..3ffe204e5 100644 --- a/docs/docs/api/list-dimensions.api.mdx +++ b/docs/docs/api/list-dimensions.api.mdx @@ -5,7 +5,7 @@ description: "Retrieves a paginated list of all dimensions in the workspace. Dim sidebar_label: "ListDimensions" hide_title: true hide_table_of_contents: true -api: eJzFV0tv2zgQ/iuETruAnWS7yCU3NzXSANl14DinwDBoaWSxlUgtSaUxDP33naEepizZjVt099LG4jy+mflmONwFEZhQi9wKJYObYA5WC3gFwzjL+UZIbiFiqTCWqZjxNGWRyEAalDZMSGYTYN+U/mpyHsIF+7Q/5BqYBltoiQa+CZuQrNAsAstFiucyYhn+HXHLL4JRoHLQnFDcR4jjAT3ujeFxzjVHcdAmuHnZBRJ/oFioCmnxVBD2fwrQW/zRjejvIluDJvTCQmaYVWztIcMYgIcJBQsEw4QJZDy42QV2m5ML6fR/zmxZjlrI9OU04keUYJVbMqvrkoyYsVxbITcs1ipjf5wD9/02faxY79NQ72NmdYFmqsCNY4gGFDbEG5eaERMbqTT5qBmFumxfT5cjRwdXzcGo1kqlwOV/49/PwNtY6c1YRE0aEuCRS28PorHkIihHAfkXGpDGhK1jrG2Vn7C3pC8mx7YAQ/Ifrq7ov25iuv3DUIY1SugsVNICNg6q8TxPRehycvnFkO6uj0Wtv0BIfZZralMrKs9WWZ6uKH2mz0AEXp27IgyeU+t7B1xrThQ7VDjivR1Eg0nLlRG2e7h3fDxAHkVOjaePvrPykHh3IEGLkH2F7fiVpwWwygT2ky5C5CKwwiADY6VZnMKbWKfAKF4sQ46VwOxXPLSJVsUmUYV1s3TyeE8NYIVNCdeswoXunZMV/isip7iKCxm6PypyDaSgg3jgPEy43MBKAzdHJFJu7CpTkYgFRCtu+0KjACPM6ISqCWOLRelrrrfDANC1PdNwo3PEZAQ5yAhkuF1tNM+TM2r8PRo2Tsp9eT613u6cMwLQsHJVqe0CJWEWu0vrEEhjZj69e36YzHsMb74PxNCoPkthHaT9kHhp9ZY0e45pPsxuJw+r29nn2XzR89w5HEyB768jfdLpfPrXbDE95rV7+l23XfElDca2ME0VFmShbZ9QZXlh4R29k+F9wK3SPsuaS+gQR7ePOrTu8HWAnd0m9dgT9Jg00I0DbeYj94ZgO/KGcjRvLobyMDI3oLtzfNSZ+p657o3T2Lytb5rS2b4euqruUUJjMz6BfgU91RpH5vUvua8yMIa2r5M9PQBnKBjS4BtaRgNvT8V84FKRKFphN+AQcItDKLj0K2sgLLSwWzcUTIa78faC5+IisTb/yI0IJwUpvbhWOjwHXKx1K7DcW3uiLFSBHrfZRk7fe+vU58XikTlpxlEcY61T3RDItQGdu1v0OLL3uHHip/w4AVcbIWPljNY1eiqwqh65sVDVIoDL0Ifr8dWf46vregmw2A+kWq9gxFLWeVgc3JIt1f7Hp1CdOwtv9jJPOS6KGEuhU8JX8enFmxRIgQTjpI+7HRYHnnValvS52tmJZJEwHDcQpGXMUwMnoj7zuTQIFZci723mRi/+DojN7wdyzivoBIr6ufWDIH7R++YE3urJtYe7pB9aEN5qIjRPhvPK+tu8Huu/s9P+vQfPD+bsDFf+c6jjrRKYhCHkPoV6w7/0B+7ddIHT4l9Bd9tH +api: eJzFV1FP4zgQ/iuWn+6kAD1OvPSNYxGLxB2owBOqqmkybbwkdnY8Yamq/PfTOE2btGmX7mrvniixZ75vZr4Z20udoI/JFGyc1UM9QiaDb+gVqALmxgJjojLjWbmZgixTicnReuOsV8YqTlF9c/TqC4jxVH3aLAKhIuSSLCbqm+FU9hpSCTKYzCuwicqRIQGGUx1pVyCBsLhN9FDfGc8bZzrSBRDkyEheD1+W2kKOeqhjV1rWkTbC/WuJtNDRVkT/lPkUSdgbxtwrdmraYmasQohTCRaFho9TzEEPl5oXhUDYYP9zbqsqWlOWL4cZP8AcVQ0rbmlVkkh5BmJj52pGLld/HEP34z7bXCHLDlO9nSmmEqNV4D4ohPBriV50E1ITKTO3jgRjpSjjrNrUM+QoyCFUszeqqXMZgv1v8NsZeD9xND8xSZOGFCEJ6d2h6FkgdBVpwTeEiR4Kt46zdav8hL+xfPGFsx697D8fDORPNzHd/lHng4FqjHSkY2cZLYsZFEVm4pCTsy9ebJe7XNz0C8bSZwVJm7KpkdkxZBNJn99VYBWt1kMRetel9VsLQAQisW2DPejrQdSbtMJ5w93FDfD+ACFJghlkD22walt4N2iRTKxecXHyBlmJqnahPFMZc0moSo+JmjlSswzfzTRDJfEqwoLQo+Vah5ySK+epKznM0suHW2kANpwJr/uaVxXpADJ5g8wkwXAyK20cftTi6klBh3HPepyCneOEEPyeHRl4nuQuMTODyQR4d1OkZ45yWZFq4gmbHHctp4t+AoRyvBzluLHZ4zLBAm2CNl5M5gRFekSNvyfDBqTalOfTGu0mgAmBRpWT2mypncX7WTi0tok0bkbXN893l6MdhTffe2JoTJ+t4UBpMyRe1nZjmT37LO/ury7vJlf3n+9HTzvIncXeFLTxOrsPgo6u/75/ut6H2l39Lmx3+1gG47owTRWexMO6fWKXFyXjB3onB5sAO2qrrDmEtnl0+6gj645ee9TZbdKWevSOknq6safN2sxbQ3A98vpyNGoOhmo7sjCgu3M86kz9lrvuidP4vFqdNFXwfdF3VN1aRrKQPSK9IV0TOVIXv+S8ytF7uX0d7OkeOn3BiAXM5TKqW/fUcaRz5NTJFXaOgQFwqof6rF1Zj3FJhhdhKPjccLo4hcKcpszFX+BNfFmK0Utope11BEJabxhvvD1KFupA9/tcRy7fd65Tn5+eHlTYraDkFC2vUt0IKLSBrIdTdD+zj8CE7YdwwoZQG2NnLjhd1eixLJBa4n5Dqi8C+nxwfnEy+PNkcLG6BHAOQSOrK5ioVHUeFlun5Fpq/+NTaJU7xnc+KzIwVmIpKRN+tZ5eWpNiHOnUeZaPy+UUPD5TVlXyub6zi8gS42GaSVPPIPN4IOojn0u9VF9x0XqbhdGrh1qLmj9O5JhX0AEWq+fWD5L4Re+bA3zrJ9eG7lj+ISN864nQPBmOK+tvo9VY/10dxm89eH4wZ0dAtZ9DHbR6w2UcY9GW0M7wr9oD9+b6SVfVv0F320c= sidebar_class_name: "get api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/list-experiment-groups.api.mdx b/docs/docs/api/list-experiment-groups.api.mdx index f54b44ef5..e585eedaa 100644 --- a/docs/docs/api/list-experiment-groups.api.mdx +++ b/docs/docs/api/list-experiment-groups.api.mdx @@ -5,7 +5,7 @@ description: "Lists experiment groups, with support for filtering and pagination sidebar_label: "ListExperimentGroups" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/list-experiment.api.mdx b/docs/docs/api/list-experiment.api.mdx index c55494e79..fa10d334d 100644 --- a/docs/docs/api/list-experiment.api.mdx +++ b/docs/docs/api/list-experiment.api.mdx @@ -5,7 +5,7 @@ description: "Retrieves a paginated list of experiments with support for filteri sidebar_label: "ListExperiment" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/list-function.api.mdx b/docs/docs/api/list-function.api.mdx index 5f58818e8..ce7af0282 100644 --- a/docs/docs/api/list-function.api.mdx +++ b/docs/docs/api/list-function.api.mdx @@ -5,7 +5,7 @@ description: "Retrieves a paginated list of all functions in the workspace with sidebar_label: "ListFunction" hide_title: true hide_table_of_contents: true -api: eJzNV99v2zgM/lcEP92ApM126Evfcr1sC7BLizYdDiiCQLGZWJtt+Si51yDI/36k7PhXHKPZ0OFemlqkyI/kJ4raeQEYH1VqlU68a+8eLCp4BiOkSOVGJdJCICJlrNBrIaNIrLPEZ2UjVCJsCOJfjd9NKn36T9mQlxSKlTTKJ421xliyupBJIPwMERIrjJU2MxfewNMpoJNPA/L+hfx8LOyTMJUoY7CAxrt+2nkJfZCSr7PEklQx3n8ywC19NKOYZfEKkBErC7ERVosVCASbYULhEHCQfsgBAoMwfgix9K53nt2m7CJx+3/O7H4/KCHzSj/iO9IQuVs2i0UZBpwqtCrZiDXqWLw/B+7rbdaxUo37oU7XwmJGZvLAjWMFAikb5opLzUCoTaKRfRQsYgpU9XQ5yinB1eyMaqV1BDL5Nf7rGTgwfOmAtHJh7DZySkTsLtQSUbKeg1FbN5bRkACoIkRn7+v4y+NkSX+nf47n09sZifKlm9u/7h7nE/q+uZ3NJ3/Pm0o3n8ezT5Pl/WT8cDurixYDzyrrwB3O0Jx8G47Ng5c00gHJOHW1WF+GGjdDFRzCDEEGjkpHgRUBkC3OtUIIOoyVveAn7C14xaTUYcAl8MNoxD9NEtQ7hSANcdhCrnydWOoyvEmmaaR8V/3Lb4Z37o6R6NU38LmjpMjtyKrcr9VWRksmijk+awQ7l7frXMkDaV9DjBPeSxLmue1IW5qtqC+HECx9V9kOlQDl2p4WVxaQDoGKYflMZ0PlaTrF2/cXoy6q3ecWvhYGSudvYbnCLW2XwfzSoRUqAQx5c4UHAirAeRsrd6ttT5oLyyd0ImnsMtaBWqsz3Td3njDvhzLZwBJBmq4k71tNtEPe7Hr/m8ZVNYenVpDNkBpkPy72cZFOEXTQOnrtzHSUsqNGXTw+dKh9Oy7XKZoNZdBoPzVr9cZ3sHhTNLy9s3zV1S+npIGJjB4AKdAJokZx9SZtMwZjeNw55ti+iqIDTlcwvENuePors+iSQZd4qHlg3IADIG1IH5franQ0QLOmsls3OJqYBtPthUzVRWht+gfPpuOM9zwt+Ppqy0EiYKmwqKw9cA7yME/bLOPm9aPp5fN8fiectpCkTpEWiT7ckW70YTkfyh5kr3Hj1Pv8OAVXGR7VndGiQg8Z1TTVRhV7yv5N9/GHq+Ho9+HoyjVHbWwsHUOKKYAZKmpTfKvxlDT75W+NIl8WXuxlGknl7pIMI0aVU+ipPOvMspBC47XdjjzAI0b7PS/nkyDzKlBGriI+w2sZGegJ9cwHSSfS77CtvX6eZZSxjscEfj2Qc94ZPSiKB80PgnijF0QP3vxR0w8312w3+2rPgj9Q8aa8cRyG2/Oo8Nt90fnfiX7MtdH8B/N8hqv64N7wliuMfR/SOu2Oboh9vS1/msypqfwHFB6sAg== +api: eJzNV1Fv2zgM/iuCnm6A02Y99CVvuV62FeilRZsWBwRFoNhMrM2WPIruGgT+7wfKTuw4TtBs6HBPQSSK/Eh++kytZQQuRJ2RtkYO5D0QangBJ5TI1FIbRRCJRDsSdiFUkohFbkI2dkIbQTGIHxa/uUyFIH5oinlJo5grp0OhzcJiqthcKBOJMEcEQ8KRotydyUDaDNDvX0dyIG+0o0+VfxnITKFKgQCdHEzX0qgU5ECGNjckA6kZ7/cccCWDVhbjPJ0DMmJNkDpBVsxBIFCOBiIGDiqMOUFgEC6MIVVysJa0yjiE8ed/zW1RBFvIvHIc8Z1agijDslus2hBwqZC0WYoF2lR8PAXu2302saokOQ71eiEIcwiqxJ1nBcL3HBxzxZcmEHppLHKMikVMgbqfvkYlJbibnVnNrU1Amd8Tv1mBDcNnHkirFo5WiTeymHahVoiK7TyMxrojRiMDCSZP5WAqn4Y3j6PZ0/Dm+u/h5Pp2LINq6er2n7vHyUgG8up2PBn9O9k1uvoyHH8eze5Hw4fbcXPrOZCkyYPb3KHJKgPHuUl4zRIbgRxw6Rq5vvYsLns62qQZg4o8lfYSqxIoAsm11ghRh7OtFvyCv2decZk1DnwBL/p9/tklQVMpxEW/LzZHZCBDawgM8SGVZYkOfffPvzo+ud5HYudfIWRFyZDliHQZlyypZMZEcft3rQiq/Xaf6/1I0VuIcSD6loRlbTvKluXzRLsYolnoO9thEqFa0OHt2gPmhnQKsxdAp8syHeLtx7N+F9XuSw9PlYNt8PfwXONW1OWw/OjIAbcAeny4xgORphMP1uHmqyNlrjwfsEmUo1lqI73QJ4bfPXnAfRgrs4QZgnJdRS5aItqxv6t6/xvhqsVh2kpyN6Udsu83e79JhwgatK5euzIdrezoURePNwpVtPPySrErKMGO/DS8NYVv4/GqErzCe77s0strQ4BGJQ+AL4AjRIvi8l1kMwXneNzZ51hRZ9EBpysZPqGWPP1tq+iLkQLFlgfGJXgAimI5kOeLenR0EOaoaeUHR5dqildnKtNnMVH2F8+mw5zPTJ/589XeB4WAW4Pn2tsD16BM87DPbd68vje9fJlM7oS3FiqnGAxVhd58I/3ow/t8KY8ge0sYb34sjjfwneFR3TutOvSQZ4CZdbo6s9VvedG/uOz1/+z1L704Wkep8gyppgBmqGhM8S3h2dLst781qnoRvNJ5lijtvyU5JoyqpNB0e9eZZbF1xGvr9Vw5eMSkKHi5nASZV5F2ap7wHV6oxMGRVE98kHQi/QarxuvnRSU520gm8NuBnPLOOIKietD8JIh3ekEcwVs+ao7DLS3bYl+feeY/qPlQKRyb4fY0KvxxXyn/B3Ecc2M0/8k6nxCqObjvRCsNhmEIWZN2e1+IoinLn0cTWRT/ARQerAI= sidebar_class_name: "get api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/list-organisation.api.mdx b/docs/docs/api/list-organisation.api.mdx index 6f5ecd4e4..c2481a4bb 100644 --- a/docs/docs/api/list-organisation.api.mdx +++ b/docs/docs/api/list-organisation.api.mdx @@ -5,7 +5,7 @@ description: "Retrieves a paginated list of all organisations with their basic i sidebar_label: "ListOrganisation" hide_title: true hide_table_of_contents: true -api: eJzFVk1v4zYQ/SuEzkripsglt7RYbIN+BZv0FATBWBpb3EqkdjhKaxj6752hZEeyZSHZYtuTLXI+3rx5HHKb5BgysjVb75Lr5BMyWXzBYMDUsLYOGHNT2sDGrwyUpfG0BmcDqEMwf1kuDBdoySwh2MxYt/JUxd3UZITxn8mRwZYhNeBykzVE6NgEBm7CeZImvkaKhre5YPhFsv0+yCIGNRBUyEghuX7cJk4+xDDzjWPZtYr8S4O0kY9xPb811RJJsVvGKhj2ZomGkBtyUph1BiErtFRUICErsILkepvwptYULvr/u7Btm+4h68o84juxMF1aDUt9Q1Kli9i6tVmRr8x374H79phDrNLteai3K8PUSJiu8BD1QSjGQVUTqUmNXTtPmqPXk+rhtZ+Ro04W2s3Jqpbelwjuv8nftk9pQhhqkTcGRXG5WOjPOPehSI1YmZ2bIM28YxG5OkJdlzaLVhefg3pvj2v0y8+YqZhr0tPAtsvNnqF8VozhuM1t2u/HSif3c+BhFiAC7eOhw4nsNh/YBFYWNWinj4mNSCFtnjOfnzJwDBk/S+22nLWoC+9OxNChgvnzcjO5DXll3UyCbuocb6UJCm0yXpKbjO2L9vDWwe7vHbpcrH7eLBORB1su1VUEcN+F08DCoKdZyMBTebuBKSvSLDxjK+SKT1PnX+0zSU2rsv7SWMJcqxzyNEI4YjhVDfQd33M3AjfKOuZmfzg+7c5Fe4gi6nMs43Qk+kHEwyO3i/pjf9TaGP1q6rTeigU5KO+RXpA+EHkyV9/kwFYYgs74Sf53lUzAmSpGPWCtV96ITfMrOElRqZnQI3Os8HpvrjHCAS7k4yI0gqr2wcYyRrd2EsXakOVNvE5DJbf45hxqe14w1z/oRX7TaJjHJ70PDvcRCGlv8PQa7V5J6ng4HXNPjK4fzfSfHh7uTLQ2IOZSY9+J3cUQLwTdj2fuNLK3pInmc3miQWydvmti0L6F90N6xUf6GLrQl4vLq7PF92eLK0UoJlxBlFB/raqMzcH7ZgRu+6rF/+k91jPH+Ddf1CXIE0CHC8WB2unrMQkHBIwVJqIopHI13G4FCf5BZdvqcveUUNnlYr0sdQ6soAw4w8I7X3GT8P/EzeDJ+AJlozaJ6vvtQN7zOJtB0b8CvxLEN3p2zeDtXoKvcJ/0g6zi7WZEUiDkclK0rZ3LTZZhPWT6aKi2w9n18cODHLN/AM13Zo4= +api: eJzFVk1v4zYQ/SsEz0zipsjFt7RYtMG23WCTngIjGEljiVuJVIYjt4ah/14MJTuSLQvJFts9xRHn482bx+HsdIYhJVuz9U4v9WdksrjBoEDVkFsHjJkqbWDl1wrKUnnKwdkA4hDU35YLxQVaUgkEmyrr1p6qeGpUShh/qQwZbBmMApeptCFCxyowcBMutdG+RoqGd5le6t9s4E+DLNroGggqZKSgl0877aBCvdSpbxxro60gf2mQttoc1fNHUyVIgt0yVkGxVwkqQm7IYaasUwhpIaWiAAlpgRXo5U7ztpYULvr/t7Btaw6Q5cs84nvIUXVpJSz1DTFCF7F1uVqTr9QP74H79phDrFCW81Dv1oqpQdMXHqI+CF8aDKKaSI1RNneeJEevJ9HDaz8jR50spJuTVSXelwju/8nftiujCUPtXcAgKK4XC/kzzn0sUnW9WKi9mzY69Y7RsThCXZc2jVZXX4J4705r9MkXTEXMNcltYNvlZs9QPgvGcNrm1vTnsdLJ8wx4mAWIQPp47HAmu80GNoGFRQna6WPiIFJI2+fUZ+cMHEPKz1iBLWct6sK7MzFkqGD2nGwnjyGrrJtJ0E2d0yOj0TWVXj7p25TtRnp452D/8x5dZl3+cZvoldFsuRTXT5Q/dOEkMKbsaRYy8FTebmDqpTQLL9hWKD5NnX21zyQ1rcj6pbGEmVQ55GmEcMSwEQ30HT9wNwI3yjrm5nA5Pu/vRXuMIupzLGMzEv0g4vGV20f9ub9qbYx+M3Vb7xwjOSgfkDZIH4g8qZtvcmErDEFm/CT/+0om4EwVIx6Qy5M3YlP9Dg5yrMRsZXSFXHh5N3OMcIALvdRXoamRah9sLGP0auso1oYsb+NzGirLxfYSantZMNc/yUN+20iYp5W8B8fnCIR0MFi9RnsQkjoezsc8ECPfT2b6r4+P9ypaK2i4QMd9J/YPQ3wQ5DzeufPI3pImms/liQaxdbLXxKB9Cx+G9GqjN0ihC329uL65WPx4sbgRhLUPXEGUUP+siozV0X4zArd71eJ32sd65hj/4au6BOvicKE4UDt9PelwRMBYYSujCx9YDHe7BAL+SWXbyudulRDZZTZAUsocWEMZcIaFd25xk/D/wu1gZdxA2YiNFn2/Hch7lrMZFP0W+JUgvtHaNYO32wRf4a7kH7KCt5sRukDIkGJbO5fbNMV6yPTJUG2Hs+uXD4+6bf8FzXdmjg== sidebar_class_name: "get api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/list-secrets.api.mdx b/docs/docs/api/list-secrets.api.mdx index 21b9ceea6..a312c5ea8 100644 --- a/docs/docs/api/list-secrets.api.mdx +++ b/docs/docs/api/list-secrets.api.mdx @@ -5,7 +5,7 @@ description: "Retrieves a paginated list of all secrets in the workspace with op sidebar_label: "ListSecrets" hide_title: true hide_table_of_contents: true -api: eJzFV0tv2zgQ/isDnVrAdrxZ5JJbuui2ARa7RZ2eAsOgpbHFhhK1JNXGMPzfO0NJlmTL8iNNe7LFx8z3zZvrIEIbGpk5qdPgNviMzkj8hhYEZGIpU+EwAiWtA70AoRRYDA06CzIFFyN81+bJZiKkf9LFoL0goWAhlUMj0yWINAKrjaP/I7jbSoBvQuWsxyAkwj5hNAoGgc7QCBZxHxGaf0jvpNBHe5kwIkGSaoPbx3WQ0gedCXWeOtqVDP//HM2KPtqk/s2TORomIB0mFpyGOQJJzU1K7IgJijBmvsgYbBhjIoLbdeBWGatI/f2Xid1sBlvIvNKP+BOdgEItizWlVwZgnfCWhIXRCfxxDtzTZTaxksv7od4vwJmcxBTErQ8Sg3TYcuh40wxALlPto6EMKroLtT+9jXygeG92spprrVCkv0Z/0wL+p9cEf/tYh/mqCm2+4km4lWIRC22SLk7CGMHiPMjGunWMNdicqIjO4XOmdER32RYN8HSKM3g2X51KgZM6t/T/e6yhvO4XC5WvS+uo8h6qSlg3S3QkF/JywiwEKiG/h/ZhCD3kucDOdHqMM6qIc59Pe8kGba6omM9XnTlXIie1VDeo6Fa5UEWV4MLbtjstTQeBk86bqijeE1L3X9pKKo/3mI/4HmgTkWHeCBtiGnEGawN8rPh624/7oDwmVHYaIH+WHa5qPnbU4Mwy6JMAtJiRrHerFqfnoTbLoYwqUjGKyNfhQ/jIn1yopMFoz6HPw21nfYG8Ka/YjBihj8jr8Zh/2mZpdFmgA1DdYEfr1CG1V7ojskzJ0Jvn6qvli+t9IHr+FUMOisywMZ0s1DrthJpxkbX7fYpQF/u7eVPvR8Kdkmhb7bszTcGHGp3JQ2oS6F1eltCG02GyN5mk1CFN3dPLe7mRzmdMm2bhumN537EfxiJd4oyyyh46Udfxvm3hurKACxbvsB1x6CSh3Ozm7QHBe8l9ovhWKD7uENwpIK0e1TRVh/oO2IPC7ntVp3I7gdlB48OpHXWDVow2ZDWSoxL4V5kUGy/4piul7umEoTF4gobi570xFDc3r5JaCVrL4+S+8zY1iQ44XWT4hljydB1UUzdZgkakWPM0vkSvXriYPq7sdi6vEsJP5TahZ8BqJDI5ip3L3gkrw7ucrzxOubzt7iNlmdkemNbSJmyAguNhmVvSvL6X+B8fHj6BPw2CjhPN0spVDfVzJe9zqPcgO0WNP96nxx/wbpHpQnuhVbzm5NBMW1neIR/ZQvT1+PpmOP5zOL5hhHTEJSKtS42PTqhfSDt1Zhtiv/1ZV5rP4bO7ypSgdkZ0cqMYZRFQj4GtQy4mory0XpN38ItRmw0vF1MCR1kkrZgrzuaFUBZ7mJ/59usE+oSrxkPTE6TvgMP5dCDnPOl6UJRvxwtBvNJjrQdv8X68EO7Bh1WPwnJEfbHGE95BfcHS7Gk/F0vfE6UHUUffvBhX/zOiB0T9TLlQ96lPgmMYdvhP+cNIBlE0qmrYPq/YvPlcThlvoR9D46lwoSHOUNV8SLS0FQfuwhCzZmHbG0c2zSngw/sHamI/AMhfBS4= +api: eJzFV01v40YM/SuDOe0CcuKmyMW37GLbBijaxSY9BUZAS7Q1G2lGy6GSGIb+e8GRZMu2rDhO0z0Z1gzJ9/g15Eon6GMyBRtn9UR/QyaDj+gVqAIWxgJjojLjWbm5gixTHmNC9spYxSmqJ0cPvoAY1ZPhVLmgCDI1NxkjGbtQYBPlHbGxizN1tdagHiErxQ6hysE/YHKmI+0KJBAV14me6D+N55vano50AQQ5MpLXk7uVtpCjnujYlZZ1pI3A/1EiLXW0Q+qvMp8hCQHDmHvFTs1QEXJJFhNhghCnwhcFg49TzEFPVpqXhZiwQf5taqsqWkOWL8OIv8ICVW1W1FITlUh5huBJNSeXq19eA/d4nV2skGXDUK/niqnEqCHuQ5IQ/ijRS+oE10TKLKwL2dAklXFWbeIZfBQSJUSzl9XMuQzB/j/2ux4IP4Mu+C3kupot29QWkUCCl5momDvK+zgBEYi6ALLz3bNg1dWRhqpI43ORuQT1RHzRAR8TSgXfz5bHUpCiLj2SekqdasTDx9rk+9J60fgA1Qw83+cuMXNzOmFRololP4f2YQgD5KXB3jv7EmfMEql9uR00E/oyY69my96aa5BHGm2Z68ldWwttVoE03m2/A+tppNlwcFXdvG8c8d92q6gC3pdiJHLKUYKkPoCP0SZSwY6UXKv/fRzGfVCfEGpeGjV31Lxw7ePjzzqcRYeONPh4i5kj/rTc4vQ8crQYmaQllSIkoQ8fwldFWhqVIUz2Avo8Wr+sb9A3lS++cNZjyMiL8Vh+tt3SeWXVxXisWgkJtLOMlkUGiiIzcXDP+Xcvgqt9IG72HWNJioLEmWxqs+wYsntpsn7/naqi5ny3bjbnCfAxhba2vjvT1HyUZypjLglDyJsW2gm6utmbTCw+Im3e9EauJMOhYrZp1qF7qe57zuMU7ALvCcEfurHp40PHwH1VIA1LTsSPOGKTo8js9cs+xXvFfaT6rVS82yG400C23qiuq3rM98COar/vdZ027LraRRPSaTvroq0c7ejqFEer8HNTFFVQfNlXUteWkSxkN0iPSF+IHKnLdymtHL2XcXI/eNWGRA+cPjIiAQuZrnU7dU8jnSOnTqbxBQbzwKme6HO/nsvbgghTuc8Np8szKMxZylx8Am/iq1JE7qbS3nbPEQhpfWG60XYjDqg5Hta5Ji3f9wr/j9vbryrcVlByipYbL7c9NMyVci6pPoDsGDPh+pCdcCGExdi5C0rbfC0LpMJ508g8Ivla9cX44nI0/nU0vhSEhfOcg920mpCdarMh7fSZdYr99LWucR/jM58XGRgrdErKBGWdUHfab1IudZ7l02o1A4//UFZV8rmeEiTLEuNhlkk1zyHzOMD8lbtfL9AHXHYWzUBQT7SWdD4eyGtWugEUze54Ioh3WtYG8Nb744lwDy5WAwabEfXNFo/Yg4aSpfum/bdYhlaUAUQ97+bJuIbXiAEQmzXlRNvHrgQvYdjhP5U/ZARE/VC1w/brms2Hb82U8VENY+isCic64hWmuovElrX6wlUcY9FtbHvjSNWdAn7/cqur6l/IXwUu sidebar_class_name: "get api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/list-variables.api.mdx b/docs/docs/api/list-variables.api.mdx index 051de62d6..f3429bf37 100644 --- a/docs/docs/api/list-variables.api.mdx +++ b/docs/docs/api/list-variables.api.mdx @@ -5,7 +5,7 @@ description: "Retrieves a paginated list of all variables in the workspace with sidebar_label: "ListVariables" hide_title: true hide_table_of_contents: true -api: eJzFV19v4zYM/yqCn1ogabMOfenb3eG2FRi2Q9vtpSgKxmZiXWXLk+RcgiDffaRsJ3biqEm6dk+JJYr88T+5jBK0sZGFkzqPbqI7dEbiDK0AUcBU5uAwEUpaJ/REgFJiBkbCWBGFzIVLUfzQ5sUWENM/6VKhPStQYiKVQyPzqYA8EVYbR/8vokGkCzTARLcJSfydeP/d8KTbAgxkSC9tdPO4jHL6IKpYl7mjW8kg/ynRLOijC/2PMhujYZjSYWaF02KMwqArTU46EFqEOGWtkFHYOMUMoptl5BYFi8j9+7exXa0Ga8h8Ekb8jShEJZbZmtr2A2EdeGuJidGZ+OkYuIfzbGMlx4ah3k6EMyWxqRS3PhQMErHlAPGmGQg5zbX3eB069FZs/Olt5IPBe7NXq7HWCiH/GPltC/ifoAl+8fEsxot1Cgh+JM5wDrETGTgKA22ELcfWMYqBSLDAPGFABGQM8Qt9CZkVCjPMncd37s3gFopBTLTJ+qwCxgAD8mq2zis50erDoJIknBdKJySd/dEyYGyQa8XzeHGoGbl4lJb+/0i1qJ/7wwb0u1rmdekBZRVY95zpRE7k6SozE9Ew+Z8UD2AIqM/F/Fnnr2mNKuEaxNSetUFbKmcJRG/u19BJLNUvKv5NTjaRBdwAupano6dB5KTztmrayD0J/DPvpLdH/Jqf+B2lRUK2OQMbN/lgBJNVX+dh5Hv5sUp11xPk0rqjNo3QXrS0Zh70SQDaujGvz4uOTvOhNtOhTBqlUoTEd4R9+MijXDKlwWTHpfPhuo+/gd8Tn9iCNEIflFejEf90zdLp+IJIRPOGna1zRwWHX0FRKBl7A11+t/x0uQtFj79jzIFRGDank5Vgpx2oZy74drdnEu7qfjt5NvcJuEOybY/0yqY95pqBKvtvOibquY9TyKf4TKlg91FsCnDoGlxf4HKZ4RtWHIdOZj7/d8pcH+OdjDyQfSd6HrcU3Mr6TnNpm6pHfA/sQVNKKvv3lIy7JgJX27h8JHQDZtAJrxa3TmQ3LL/UEb3yrK/7MuKWKAzNzPdoZmi+GkMV4vpd8iJDa3ku3XXkaqNGD5w+ZfgFTHlMjzYDPFmDpq1U82g/RQ8AXEofl7PWkG8xLo10Cz/i24z2hsUFFPIida74DFbGn0p+9PjEFWr7HsGgWRM8bbjdsxEqPffzXCvO5zsl+7eHh2/CUwsgclK1tnRTBv2Qyvcc+gFkh4jx5CE5nsC7RuYT7Zk27aAkpxbayvoN+clWrK9GV9fD0c/D0TUjJBKXQb4pSj5GRXvh2qo860D7kF2wNpLDubssFFDfIdClUYykCpzHaNYOrpQU4sPlkryAfxm1WvFx1dA5mhJpmZjibwLKYkC/IxfGXqgvuGhtp3V5jyIO28OBHLMHBlDUC+eJIN5pwwvgrZbOE+G+4zYWgNxpI2/AfMjqE4q3djv8b8EEl5IApJ6eezKw8N4QALHZS06UfegG8BqGLf2fBusiVjW1ZrY+rmCd3dVzybkIY2htBica4ghR7b2hI60i+BTHWLSL4874smrPDL9+faCG9y9vcyjm +api: eJzFV1Fv4zYM/iuEnq6A22Yd+pK3u+G2FRi2Q9vtpSgKxmZiXW3JJ9Fpg8L/faBsJ3biumm6dk9BLIn8+OkjKT6phHzsdMHaGjVVl8RO05I8IBS40AaZEsi0Z7BzwCyDJTqNs4w8aAOcEjxYd+8LjAkeNKdggynMYK4zJqfNAtAk4K1jbRYnKlK2IIey6SJRU/WH9vxPa1NFqkCHOTE5r6Y3T8pgTmqqYlsaVpHSAvJHSW6loi3of5b5jJzA1Ey5B7YwI3DEpTOUCFrCOJWoSFD4OKUc1fRJ8aoQFyacf5vZqorWkOXLOOJvuCCo3YpZ13AfgWcMbMHc2Rx+eg3c/W12sWKWjUO9mAO7kqImcB+k4OhHSV4EEqiJQC+MDTfeSEdbA5v7DBwFMYTbHIxqZm1GaD7Gf5eB8DNKwa9BzzBbrVMA5BB8okeMGXLkOAXrwJczz4IigoQKMokAsgZmGN+TSUDnRUY5GQ74jgINvMoExNy6fIgVdA4FUAiz8732o6oPg1pFih6LzCakpnIfHQJjR1Ir7marfWmU4lF6cvCQWmiOh48t6Hdl5mXvI8Fm6Pkut4me68NDFiPQGvmfAh/BMBK+FPM7a16KmrJEapDsDqYd+TJjD7PVYO430CNFpszV9KbNyVZZKA2gzzyyuo0Uaw5ctW3kyjr+y/TSOyB+6Z7kHFiXkINP6OM2HxzItvrf0TjyZ+1JSE3Xg7l1TUdtG6E/6UQtNlSk0Mfd2MTWl1Uvpsdj6xbHOmmDSgmT0BGew1dFSkqmdpTsXOnj8bqPv8HerXzxhTWegijPJhP56dPS6/hwNplAe0Yu2xomw3IKiyLTcSDo9LuXo0+7UOzsO8UijMIJnaxrx2wZszsp+H63Z1ZRs76dPJv1BHmfbHvGe83pAF1LzMrhlR5FA+tximZBd47QP7djU4DHlpGHhCtlRlYkcDpmnYf83ylzQ4Z3MnJP8z313GwFuJX1vebSpWrA/QDsqC0lNf8DJeOyVWC1jSsooS+YqCevjrWesluTvzSKroLp86GMuDBMzmB2RW5J7qtz1sH5u+RFTt7Lu3T3IqtNGANwhoKRE7iQZ7raPOBvI5UTp1ae9gsKAJBTNVWny84j31NcOs2r8MT3ueZ0dYKFPkmZiy/odfy5lEM3t1KhttcJHbn1htuNtSshoY7zeZvrwOX7Tsn+/fr6G4TdgCWnZLhhui2D4ZEq6yL9EWT7uAnbx/yEDeFqtJnbYLRtB2VBrrBeN2eW5Hxt+mxydn48+fl4ci4IC+s5R7MpSkGj0B24tirPWmgfMgs2JDE98mmRoTYCunSZIKmFc6OWXXGl1rN8fHqaoae/XVZV8rlu6KKmRHvZnKjpHDNPI/G9cmAchHpPq8502pR3pUS2+wN5zRw4gqIZOA8E8U4T3gjeeug8EO47TmMjkHtt5A2Y9xl9xvTWbYf/LZjRoWQE0kDPPRjY+NwwAmIzlxzoe98J4CUMW/HfRusiVje19m39uoL16bJ5lxzBOIbOZHAgEa9w1Z0bet7qDZ/jmIpucdx5vlTdN8NvX69VVf0Lb3Mo5g== sidebar_class_name: "get api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/list-versions.api.mdx b/docs/docs/api/list-versions.api.mdx index e8baf37e7..73d2f8301 100644 --- a/docs/docs/api/list-versions.api.mdx +++ b/docs/docs/api/list-versions.api.mdx @@ -5,7 +5,7 @@ description: "Retrieves a paginated list of config versions with their metadata, sidebar_label: "ListVersions" hide_title: true hide_table_of_contents: true -api: eJzNWN9P4zgQ/lesPN1JLbCceOGNA8SigysqcC+oqtxk2nhJnKztAFWV//1m7CR1mrRQ0Er7FCVjz89vPo+zCiLQoRK5EZkMToMxGCXgBTTjLOcLIbmBiCVCG5bNWZjJuViwF1Aal2v2KkzMTAxCsRQMj7jhAxZzHbMXnhSgB4zLiIUKOKlnRqSgDU9zzeaZYryIhLErVJYkMx4+s7xQeaZBHwSDIMtB2X3XETp2gy78V9lFYc4VR5P4ITh9WgUSX3BRmBXSoFRQKD8LUEt8aQf4b5HOQFEwwkCqmcnYDJgCUyiJkQrJgIcxxQ7khA5jSHlwugrMMicT0u7/mtqyHDQu05fdHt/hCubMklpVVWjAMJXKCLlgc5Wl7Ns+7n5cp+/r2zBTi6GIan9j4JFV3jGrUZ9cBOUgUPCzEAqwhEYV0FL2mqlnnfMQvqBvQl90jqAATeuPj47o0Y7Wxw7DFazegqYQ0gYQNLiJ53kiQgu5wx+adq66nmSzHxASxnJFADXC2TWZ4cmUiqm72Ue3ndxio1dOreMJuFKckLC5YYt1LElfrly7vr/d5uDN6F/hALa4cKnc1MAjJ+PJna+r3MTqGHKsF9ZIs0YfT5BV0DclOCs0NhjxSRUGS7kJY/TggP0DS80imAsJLELykQQBRgDUlnccSzGdQyjmS2KytVoTc1RVIPFhIyPVUHsZYRKK4byJq6RMiAw3LXvr+gpiEZteUYY0qkQEU2LR6TO6+oH8r3Ob8rdrJ/yGL0LWL2WrSZ68GgwC27o9dr0gGpcnrXApsXdEDTwhSmiU9GJjS2U/jYBzi+PCnQasMe1KpCBPkEOozLxITF3T1xhkg4gmB1h25arpsKFqbFVHW22DsuIjhHYROmrbjPrVR8SoyUfZ8/GW57bJnYtTZ+tLKbkCiSgNydGh9ZE5FUjgqgjx1IF1X8wTeBOzxDm9Drk6k2OVFYs4K4wN8OzuuhWW84vM1+3zpYq3WWM7uf62acDpZJPQPBKvczR1olWQSRjN7YSyGWGtenx59XhzNu7kpv7ek5x666MUJths93rfhI7abTtvRudnN9Pz0ffR+KFjuSXsMs+GvdbqnUbHl7ejh8ttVtvSd822l09Kj60u6io8kAYLmRxkBDJcTheK5/EnAPweHXtNf9FYu7LGUGSRiV2f5oWB6byQIZmaukHovUg73ndw5qGyGZ368nEt55lPT43ggoaPnnPDDQVd3mqxgX8WtM8MXOs04yBAVwCIptx0Ax4E2J0pSWgKgiHdEoLNTu85AA1f7FWibnw0HLV8axu156UXkj9G3oJr+k61KOD2uDdoDYdb9I2rifS8GkdLq/mkb5q9xhUKgXoPChN/qRRy28kvGWpxTNJ0PdmJ9x53+oJpCva0cZzfcok2UlqHucGjOc7ovrcA6w832K7BoSvW4cv6AqghLNzUheSqUxxllgc8FwexMfnfXIvwrKCtT5aSNuWA57lqFkzW2u4pM9XhtFVnkw363rlafX94uGN2NV5w8SyRpkp/3Zy0c0ZyAvEOzz5ixi7fZccusPUS1P2ktKrbfYGV9oijyi1Kjo+OT4ZHfw2PTqoTz6Tc4qa6uRFumXcX32jUBny/08+EKpXEaIc4Lwo7uRcqIYcdyDxGaGCGyIgxfBKuVlgzeFRJWdJnd1Un7EVCc5wqELNznmjYkY49fz30uoyDjvefwyYG3wMC+ccd2eePwg4vql8Xaycm9IJ3pxkBjDqvvtHvl6c/xhWh/sl2O+D9j/hkJvYw5f+taFlzC87CEHK/Jh3iLX16u7p8wK78H+Tf0Eo= +api: eJzNWN9P4zgQ/lcsP91JAbqceOkbxyIWHRyoy94LqqppMk28JHbWngBVlf/9NM6PJk0osGilfaqasWe+mflmPPZGRuhCq3JSRsupnCFZhY/oBIgcYqWBMBKpciTMSoRGr1QsHtE6ZbQTT4oSQQkqKzIkiIAgEAm4RDxCWqALBOhIhBaB1QtSGTqCLHdiZayAIlLkV1iTpksIH0Re2Nw4dIcykCZH6/ddRnIqr5Sj/2q7MpA5WMiQ0Do5vd9IDRnKqQxNoUkGUrErPwq0axnsOPhvkS3RsjOKMHOCjFiisEiF1RgJpQVCmLDvyCBcmGAGcrqRtM7ZhPb7P6a2LIMWMn/Zj/gWYhSVWVZr6wwFwhFYUjoWK2sy8ek9cN+us4v1+cDY+EBFDd4EIfLKB2YdWaVjWQbS4o9CWYzklGyBPWVPxj64HEL8gL45f3G50Q4drz+eTPin722XO+J4MhHNFhnI0GhCTbwJ8jxVoafc0XfHOzdDJGb5HUPmWG6ZoKQqu2QI0gUn0w2jXwa13HNjVM6l0xGAtcBM2N3wgnUVjcaqKtfXt/sYPJP7FQAiVSVhqAGiSgbpbVdXucvVGeYWHWpyotUHqQitIrQKROEw8v2kdkNkQGGidHwo/sG1ExGulEYRqQw1U0AwAZ3vO1WXEi7HUK3W3Mm2aikBElnhiAs5Q+LyIkUp+3DW+lVyJJSxitajeX1CFSc0KjKPaK2KcMFddPGA67fEfxvbDJ4vK+GnQGZKN3/KXpHcd3IQSF+6I3Y7TrSQ5z13ObC33Bog5ZbQKhnlxguZ/WkGnHkeF9VpIFrTVYos5imEyGmGIqUmp08J6pYRbQycAFtls+KGbbhVH22NDY5KlyG8i9nR2BZcr11G3LTxKEc+XkPui7yCuKhsfSgkF6jRqpCBHniMolIhHNkipMLiti5WKT6rZVqB3rpcn8mJNUWcmIK8g6e3lz23KlxsvimfD2W83zVebq6/bRhy43YbWqeJNzFaVKKNNBpvVn5C2fWwUT07v/h2dTobxKb5PhKcZus3rUjulnuzb85H7Us7r27OTq8WZzdfbmZ3A8s94bDz7Njrrd5rdHZ+fXN3/pLVvvRVs/3l87LTrT43WbhjDZ4yOeoIdbhexBby5CcI/Fo77hT959bahTdWBtIzcxGaLC8IF6tCh2xqUQ1Cr3k6QD/gWYeV7eg0Fo9LvTLd9tQKPvPwMXJuVEPBsG/1ukH3LOifGSsVV5oD6a8AGC2Ahg4HcmVsxhKegvCAbwlyt9JHDkCC+F0pGvrHw1EPW9+oPy87LnXHyGusin6QLXa4P+4FveHwBX2zeiI9q8fR0ms+GZtmLzWh1ZB+RfuI9txaY8XJLxlqM3SOryd7+T4CZ8yZNmH3O8f5NWiIMeN180BmSInh+16MHg9QIqfyqErW0eP2AugwLKqp634jXaYoWR9Crg4TovxvcCo8LXjrvW9Ju3IEi7ZdMN9q+8qRqQ+nF3W20eDvg6vVl7u7W+FXCygoQU11+Jvi5J1LljOJ9yB7ixm/fJ8dv8DnS3H1s9I6b1+LHG2ncdSxlVN5PDk+OZj8dTA5qU88ysDzpr65MW9F5y6+U6gt+X6nx4Q6lNzRjvIUlJ/cC5sy4IpknY7Q0mweyMQ4YuFmswSH32xalvy5uqoz9yLlYJly9a8gdbgnHO98ehiF/IDrzjuHD4ycSskkfzuQ97wo7EFRP11sQcz5j1WMoqq85kb/vjj9Masb6p9iP4DOe8RPRuIdprqvFT1r1YLTMMS8m5NB4y277e3i/E6W5f/k39BK sidebar_class_name: "get api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/list-webhook.api.mdx b/docs/docs/api/list-webhook.api.mdx index d5c43dad1..0351d442f 100644 --- a/docs/docs/api/list-webhook.api.mdx +++ b/docs/docs/api/list-webhook.api.mdx @@ -5,7 +5,7 @@ description: "Retrieves a paginated list of all webhook configs in the workspace sidebar_label: "ListWebhook" hide_title: true hide_table_of_contents: true -api: eJy9V1Fv2zgM/iuCn25A0nY79KVvuS1YC2y3oM12D0URKDZja7Utn0S3DQL/95GSndiJayQbtpe6NkXyI/mRYjZBBDY0qkCl8+AquAU0Cp7ACikKGatcIkQiVRaFXgmZpuIZlonWjyLU+UrFVqhcYALiWZtHW8gQRvQlTMtI5TELlBEWJZZkMI9qJREBSpXas2AU6AKMZOc3Ebn/RI7+8w5IVkgjM0AwNri63wQ5vdCZUJc5klQx3v9LMGt66Ubxb5ktwTBihZBZgVosQRjA0uQUDkEGGSYcIDAGGyaQyeBqE+C6YBe50/81s1U12kLmL8OIZ3RCeLds1tRlGHHyDHIuV0Zn4u0pcI+32cZKNR6GerMSaEoy4wO3jhUG6LBlrrjUEAniXBv2UbOIdMWuni5HNSOomr1RLbVOQeZ/xn87Ay9jbeKxipo0JCAjl94DiBbZRVCNAvavDBCHGVvH2LYzfsHeA3+xhc4tWD7/7uKCH93EtJpH0AHRaJAn6jsE6hrSkUWRqtAl5Py7ZcXNIRC9/A4hN1lhuEFRebeoUaYLzp09pB+h9nJXgV55JLHtRRojmV/7Cq949xntSVYnDT1yyOUy5VwecIuEpUl7lYgoiY4ORWyuzGggBR+nc3qbfblzj6/u72T+/pqeH6afpvMp/XM9nXwIqHqoMGUj14jFZ2+ZfDwRFXtB75x8e9tW/1YrkG5YWtTZwpOpN3syihTnRKazdh73ExZ8hByMCsUjrMdPMi1BeBM0J0wZUo+BKC111kobsUrhRVEyBZeSGFYQyYhYvr8wMbqME12iuxImsxtu7Ab7F4+L6/FEKvYIIjTV4HLIl4WfYP3USqXFBYnjGKhtFhL7kkoRZCxhIsIYFfGJM5nIPAayLu0rBApJRrNlsVwPik9x6vBmOlIr9brh7qHjzXcGyP1egB28ndi6xNj1zbZiPYh6IukWa9tJI9/AvuN23G+xux5et83cqvYDcfOjO2ZGnaHUMtaaho3B9/UUrJzhy74ZekMnDHXMHRgCODWGOH/5W2ZpBtbyWtDL9iaIHjh9wbCGjHlLanLoUtGMsCAG519iQi/nz9sFy0JYGoVrt17ZTGGyPpOFOktoSv0jrQonJavcP/CFti8HacBsDzzsrN1xBnyQr9vcRs3fD+746/l8JtxpIek4xVmnubk13RBnObfJALJj3LjjQ37cAVcXla+0M1rX566kihbaqlpnO9Dphn53Ob74e3xxyQjpCGYy391ijp5it+ruXWFbjv35hbzOF8ILnhepVO1L0jPoPmgYREVPKDL+tNlQOeCrSauKP/vVkWkVKVvfviuZWhgI9cStvRco3WGtnwjuNqP3gPl7PJBTlvEBFPXW/5MgftOaPYDXb/47uA/8YhTj9TOg2VxPK+tft/UEfyOG/bf27p/M2Qmu2lt5x5s/MAlDKNoUOhj1VXvA8ipYVT8AgkpOaA== +api: eJy9V8Fu20gM/ZUBT7uAnLhZ5OJbtjWaAN1tkKTdQ2AYY4mWppFmVA6VxAj07wuOJFu2FSNu0V4SRDMkHx8fOcwLJOhjMiUbZ2ECN8hk8BG90qrUqbGaMVG58azcUuk8V0+4yJx7ULGzS5N6ZaziDNWTowdf6hgjZWycV4mxqRwYUp41V15pm7RGKkHWJvcnEIErkbQEv0pgAp+M5/+aABBBqUkXyEgeJvcvYHWBMIHYVZYhAiN4v1dIK4h2svi3KhZIgtgwFl6xUwtUhFyRxUQgo44zSRAFg48zLDRMXoBXpYSwwf7n3NZ1tIYsXw4jvtYpqiasuKW2DJGQRyxcLskV6t0xcN/us49V5/lhqFdLxVRh1CbugyoIv1foRSuBmkiZ1DqSGK2KjLNqU8/AUauIyvJgVgvnctT298TvM/A8cpSOTNLRkKFOAr17ED1LCKgjkPiGMIGJYNtytu6Mn/A3ky++dNajl/tn47H82iam1zzqbDxWnQVEEDvLaFlsdFnmJg6EnH7zYviyD8QtvmEsTVaSNCibJiw71vlcuPP78quj9jxUYPA80dyPoom06GvX4JXoDaMDZG3RMHCOVi9y4XJPW3UEFeWDRgVy5pL9I3FXFTC5h4/TO4jg+vNt+PUl/Ly4e38JEXyYfpreTSGCy+nFB5hFwIZzcXLJXP7TeK4jeETyg6A3Qb6+65t/bQ3qCOLKsyvmjZgG2dNJYoQTnV/3edwlDD6iRTKxesDV6FHnFarGhfJMVcwVoao8JmrpSC1zfDaLHJWUUhGWhB4tN/3FGbkqzVzF4Um4uL6Sxu6wf25wST0e0bJ/gxC6akg59PO8mWDD0sq15zmTSVMkTOaah0hdOirkRISIIzYFBiYzbVOcE2r/ioBiQnkH54vVweNjgga8hUvM0rzuePvS291vDZD7nQS38G7lti2MTd+sKzaAaCCT7WKtOylqGrjpuI32e+puh9dNN7fq3UTC/NgeM9HWUOo5603DzuH7dgrWwfH50Ay9soxkdX6L9Ig0JXKkzn/JLC3Qe1kLBtXeJTEAZygZsdCpbEkdh4GKboRBiiG+5gwmcPq0XrA8xhUZXoX1yheGs9WJLs1Jxlz+rb2JLyoxuZ/Jg7Z7jpqQ1hdmG2+3wkCT5Os+11nL9703/vLu7lqF20pXnKHllubu1QxDXM6lTQ4ge0uYcP1QnHAh1MXYpQtO2/rcViVS6bxpbdYDHc7GZ+ej8V+j8bkgLJ3nQtvNKxbkqTar7s4TttbY71/IW74Yn/m0zLXpP5KNgu6hU9Asgsx5lk8vLwvt8QvldS2fm9VRZJUY376+S517PJDqkVv7INAHXPX+RQivGUwARL9vB3LMMn4ARbv1/yCIX7RmH8DbbP4buDP5g4zgbWZAt7keV9Y/btoJ/qc6HL+3d/8gZ0eE6m/lW9GaCxdxjGVfQnujvu4PWFkF6/p/gkpOaA== sidebar_class_name: "get api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/list-workspace.api.mdx b/docs/docs/api/list-workspace.api.mdx index d82871843..ffe3e3809 100644 --- a/docs/docs/api/list-workspace.api.mdx +++ b/docs/docs/api/list-workspace.api.mdx @@ -5,7 +5,7 @@ description: "Retrieves a paginated list of all workspaces with optional filteri sidebar_label: "ListWorkspace" hide_title: true hide_table_of_contents: true -api: eJzVV0tv20YQ/isLnlpAst0UvvjmNEZrIA0Cy0UPhkGMyJG4yXKXnV3aFgT9984sKYm0KFlKkAI9Sdydxzevj8NlkqPPSFdBO5tcJXcYSOMTegWqgrm2EDBXRvug3EyBMerZ0VdfQcYizzoUykVVMGqmTUDSdq6mi62UslDiSGmbmTqXy1CgJuUDhNqPVObsTM9VjgG04WewuYK81JY9EgT9hKw6c1SCeDlLRomrkOLDbc54P7Lc32tffFsBsT/G4ZOrh2Uizlkqc7UNfKslxH9qpAU/9AP/VJdTJAlSByy9Ck5NURGGmixnQFuFkBWSExQUPiuwhORqmYRFJS5s1P8+s6vVaANZTg4j/swSqnErZqmt3EhyS0FSPSNXql9OgXu8zS5WbovDUG9nKlDNZprAfWwkQhb20l4xNdwjc+ti/7SNx7pqW8+Yo9gfsZqDUU2dMwj2v/HfzcDL2NF8rPN1GgqEPKZ3ByK3NbtIVqNE/GtC7mLBtnqUE18569GL/LuLC/npB9Jrd8Uiaq3DvniWAnKfsxZUldFZDOH8ixfV5S4UN/2CmYxFRTJUQTeOgwtgUonW7zYM427uY84G73MIXS9ABNIRrxX2eN8QR9qkdiBxnGpgfojRpZzzN2X2Wto6a5JzlGRkrl2hUYKcA2ad5ObT9fuPNx/45MPtpPnLxQ06GBHflG/SGOoZj9SXMhJtBmE0dJk+cT/qpqq7IoTC2el0MXhtwIe0dLme6WOFIAxF25Ayn3C9cRw0J67j/RSdkocKgqNFmvOJlcj8EQ20hisWhKcyueQHnm33nOILN5WYC6lHM0t5Isg9gRlgC9Gpg0srV9WGgaUySOT2iKKFqWlk8CWkbFLnEPrVGBAvwM4x5ezwNL6h1OOGh7fi2Qe+V4teW7wN6lCUA90x0FXbmuzO69B07huC0WtC2De0AyM6NHR3a7pcvU5zpK0+u416XNgx16PhtcnfWvpdRdOXQ/R9yxLEu9IEiUf4hsiRuvwhJF6i97JBDI7LOowBOEPBiAbMZaHa5lH9CZbtSz9KYrjYhZN9bI4RC4SCH863u6K8CjGrSYdFXMx8ybvj4gwqfVaEUL0Hr7PrWrQeHuW9+voegZA2Ao9baxNJSBPzfpubJMj5znbwx/39ZxWlFY9SwSG1WV+/v+N0yr0M9AFkx7iJ4of8RIFYJll8o9G2XJOaC1w5r1udzVuAd4V3l+OLX8cXl4KQRQJzqqi264n0q+quyT1ky23T/Q/2/zbFQkvnlQEdWbamyNZN3z0knb7jVik4H3K6XHIR8S8yq5UcN6uqNGPOVMRsx/07A+PxQHpO/EoYxPoVF51PEmbWWmQS6frjgZyy/B9A0X5lfCOIH7TWH8DbfGls4T7KA2nB2zDHevM+raw/3bUvgp/VYf+dPb+Xs+b2Osuw6hZ1h8FXXa78/eae5/xfrMN80w== +api: eJzVV0tv20YQ/iuLPbUAbasufNHNSYzWQBoEtoseDIEYkSNxk+UuMzuULQj878UsqQctSpYbJEBPtnbn8c3r2+FK5xgyMhUb7/RY3yGTwQUGBaqCuXHAmCtrAis/U2CtevL0NVSQYVBPhgvloypYNTOWkYybq+lyK6UclJgo4zJb53LJBRpSgYHrkKjMu5mZqxwZjA2JApcryEvjTGACNgtUxs08lSBeznWifYUUf9zmeqw/msD/rH3pRFdAUCIjBT1+XGlxrsc687VjnWgjIX6rkZY6eRH4p7qcIkmQhrEMir2aoiLkmhzmyjiFkBWSExQUISuwBD1eaV5W4sJF/e8z2zTJBrKcHEf8GeaoWrdilrrKJZJbYkn1jHypfnsL3NNt7mIFa49DvZ0pphqTLvAQG4nwW41B2iumJlFm7nzsn67xjHdqW8+Yo9gfsZqDUU29twju5/jfzcDzmaf5mcnXaSgQ8pjePYiBxYVuEi3+DWGux4KtmchJqLwLGET+cjSSP/1Aeu2uLkcjtdbRic68Y3QsWlBV1mQxhIsvQVRX+1D89AtmMhYVyVCxaR2zZ7CpRBv2G6ZJuvuYs8H7HHjXCxCBdMRLhQPeN8SRtqkdSJynOTgTYnSpyV+XOWhp66xNzkmSkbn2hRKNri71+FHffLp+9/Hmg070h9v79t9JotmwFfFN+e5bQz3jkfpSLMHYQRgtXaYLpGDaqu6LEApnp9Pl4LWFwGnpczMzpwoBD0XbkrIeS73xjE2Ju97folOCy4E9LdPclOgksnBCA63higXhqUwum0TYyD+l+FwhiTlOA9pZClVFfgF2gC1Ep2afVr6qLTCmMkjkD4iig6ltZfCZ0wVYkwP3qzEgXoCbY0oIwbtXlHrc8PhaPIfA92rRa4vXQR2LcqA7BrpqW5P9eR2azkNDkLwkhENDOzCiQ0N3t6bL5mWaI2312S3pceGOuR4Nr02+7+i3iaavhuj71jGSA3uPtEC6IfKkrn4IiZcYgmwQg+OyDmMAzlAwogFzWai2eVR/gYM5Sj9KYkrkwss+NseIBbjQY32x3RXlKcSsJsPLuJiF0nCxPIfKnBfM1TsIJruuRetxIu/qy3sEQtoITLbW7iUhbcyHbW6SIOd728GfDw+fVZRWUHOBjrusr9/vOJ1yLwN9BNkpbqL4MT9RIJZJFt9otCvXfV0hVT6YTmfzCujL0eXV2ej3s9GVIKx84BJiu3TrifSr2l2Te8hW26b7H+z/XYqFli4qCyaybE2Rrdu+e9Q7fTdJdOEDy+lqNYWAf5NtGjluV1VpxtwEYbtcj2dgAx5Jzxu/EgaxfsXlzifJAmwtMlq6/nQgb1n+j6DovjL+I4gftNYfwdt+aWzhTuQHGcHbMsd6835bWX+56x6CX9Vx/zt7fi9n7e11lmG1W9Q9Bm92ufKPmwfdNP8CrMN80w== sidebar_class_name: "get api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/migrate-workspace-schema.api.mdx b/docs/docs/api/migrate-workspace-schema.api.mdx index c4d646a60..51c733f1c 100644 --- a/docs/docs/api/migrate-workspace-schema.api.mdx +++ b/docs/docs/api/migrate-workspace-schema.api.mdx @@ -5,7 +5,7 @@ description: "Migrates the workspace database schema to the new version of the t sidebar_label: "MigrateWorkspaceSchema" hide_title: true hide_table_of_contents: true -api: eJy1Vt9P2zAQ/leiPG1SSytGX/oGg2lIgyHKtIcKRdfk2hgSO9gOUFX533fnpE1L3RYk9hTH/vz5fD++8yJM0MRaFFYoGQ7DKzHTYNEENsXgRelHU0CMQQIWJmAwMHGKOQRWOYDEl+AZtaG9gZq6KYt5kRFD2AlVgcRFa5dJy/x3yTlyTAQrQEOOlmjC4XgRSvoh+OrsyE10QsHmFWBTGtdWhMNFaOcFo43VQs7CqhNqfCqFRjrR6hKrzorwtav0rCuSJVWKkKD+ENk9z5hCSYOG8cf9Pn+8Hnxzz4CwwXIzHRoraVFa3g5FkYnYOar3YJhjsW2TmjxgbNlbmt1qRW3BGy/57kC3BimM44/o+gcxO5naw2rz3oW0YEuzDeqEKMucAh5eXJ+e/bo4p5nzy1E9JD9bYTOGt26siTbIIcmFjMgSkXnNICdPxSxqMtQP0UjBSqLJ3LucgbFRrhIxFe8FgfXddqp0zishVRJ2rSDHrZ3+kT05SPpXeh4lNCP5Zuv+Ba1hzjlOhejxe8UMSOOYF+kHsky9RPhKScV0NjKYTSPKSa2eYd2tE6UyBMkmQGlVVKii5EKPOJW12gFFCZOsxuCrjYhSJGA3o+GBpyBnGJF3qB4ObNoo0/Gh++wyfiMWG2lx2Kh9t/Rkhyer2phs16uvOncVQWdbNv1F6ynRtaLzS9hto17fG+mqKvb9Sf9kWwMJqkod47WyP1Qpk4BQrfrRroFPOS+JV0vIRqipZC+0VjoY/BfZzNEYmPm0q2q94DHH5wLeATPuXa1YBVcgiZ/zj/1KwU0V98BCGWcMd7Fh2FvFwPQWm4Gresmkl9dh4BaFcamFnbsGaXJh0/kRFOIotbY4AyPi05IZx/fc796uI2jUK8B9y+bCWjtkN+fKQzxPpmyG7Ofd3U3g0AHVVUr3bUKy7KuuVHmdo77Hsvcc4+D7znEAF0Mhp8qRNrEclRR98r5o9qxaAvXw40G3/63bH7CFHCASWN7aPBuaWgja2K4eLhs2Ltrc/NRHVOMW1pUezQknk6V2clvn0bitZdaP4ZYEJBMWmCaZKP4pZyFtWyzYmj86qyqefipRc4bR8Bm0YEVz+ZaQ9NCY8ncKmcE99/5y2wjx12CX5csuJVn0SCdL/qPhI863H30V5fPynfbpltQnrr0KV9ZwEdWrp3GMhV1b2xKdar28b36P7ij9/gGbTAQd +api: eJy1Vk1v20YQ/SvEnFqAigTXvvDmNA5ioEkD20UPgkCMyJG0Cbm7mR3KFgT+92JISpQsynaA9CRqd/btm683u4WcQsbGi3EWEvhsloxCIZIVRY+OvwePGUU5Cs4xUBSyFZUYiWsMLD1Ga+JgnI3colkSKn2BQhCD88SouLd5j/zvDvO+QYIYPDKWJMQBkukWLJYECezvTpuFGIzS8ygriKFlAckWZOPVOggbu4Q6BqYflWHKIRGuqI73gE8jx8uRyXdQK8Kc+KfAZroSvLOBgtpfTCb6MxjBZ35GF5NJtDsMMWTOClnR4+h9YbImUONvQTG2p5zc/BtlotFiDauYlsGzKA354HiJ1oQGPzX56zZnkfrLWnpvshSUKpwaxUC2KiGZws2X6/d/3XyAGD7c3refsxjESKHmfRhboCNwzEtjUyrRFIM0MmcXZpl2FTpswoRCeTrfDG4XGCQtXW4W5q1GKEPeLhyXugM5Co3ElHR4+8+cKdHmKI43aW5KsurZYXyRGTda40LlQNxrRSBhk+lmHQMWhXtM6ckTK5ykgYpFit6zW+NhWOfOFYRWKWAlLvXOV9roqZYyuzOmZHFetDb0JOkaC5OjHGdjwHyFdkkpEwZnXzl01KbT1/w5R/4oF0dl8Tqpl7wcqI6BqupzctqvQ915rgniU9kcbtqBFj1oumEJu+vU689OuupaY385uTzVwDsKruKMvjj56CqbR5eTy1796hiuhpTz1gqxxeKeeE18w+w4uvpfZLOkEHA5pF11H4UBOkMh0BO41NnVi1X0GS0uSetP41qSrJzOQO9CQ0anWALjfQ7CeHucuHqcz8dlmwYdUZRVbGTTDMhQGllt3qE371Yi/j0Gk11Xijid6bx7vk/IxHuDWY/WpLUNyHnMfYR0HeJnKfv08PA1aqwjrGRFVrqU7OZq06q6r1l/gdlbrmnMX7qnMWhyaOzCNaBdLu8rT+xdMN2Z/UiAi8nF1Wjyx2hypQw1QSU2tdQ9G7peiPrc7h8uRxy3fW3+0kdUFxbVlbEv0DQyWXEjt20dTfteVv1ITiQgn6vAdMU0i2GlVZhMYbtVNv9wUde6/KMi1gqbxbBGNqpoTb3lJuh3DskCi0Av+P3bXSfEv0fnmO+mlFXRW2NR6T+I4TttTh999ayOd++0X86kvfHgVbhno03U7l5nGXk52DsRnfqwvb/+ff8Adf0fm0wEHQ== sidebar_class_name: "post api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/move-context.api.mdx b/docs/docs/api/move-context.api.mdx index 6b89ef454..6825ffbcc 100644 --- a/docs/docs/api/move-context.api.mdx +++ b/docs/docs/api/move-context.api.mdx @@ -5,7 +5,7 @@ description: "Updates the condition of the mentioned context, if a context with sidebar_label: "MoveContext" hide_title: true hide_table_of_contents: true -api: eJzdWEtz2zYQ/isYXtrOyLLrxhffEjeZpJ0kHj+mB4/HA5FLETFEsABoWdXov/dbgE9Jdh9ODq0PFgXs88Puh6XWSUYutaryypTJaXJdZdKTE74gkZoyU7wuTB4WFlTyV8p4y9OjnwiVC9l+E0vliyBY0nKgLbUlma0EPSrnHXQ8LNl548U8kLUqIyHLTFCeU+rVA+mVyEiTV+U8SunOaTJJTEVWsu0PGWL+CBNn3Z6l32ty/o3JVsnpOglKpedHWVVapUHv8IvjdNeJSwtaSH7yq4pgzMy+IALYqSx78YpcZ+bR7xOUWcxT6vOhymayBe0FVZYcYnE9NlILSHiySoraAdjc2A7OhfRpAQCm4ldaOeCRq5JEpnAMjnEt5QIYMmwPUiNn4SpKVb6Kh9ea9YWEqdp5MeMT9FOE7JXXnMNZG0eyHW2XpvMWIfB+WshyTnc4S7dXYhOxV5ZwKDdb4pMOwduRe17i84P6SN/bmrBQSYskkQgQvVknnDH0VAZ7ijGtpC/wvHOKfdTbJjsjjwfGzg96UwVqlOy/NrY09t5VMqUX2LvlFVeZ0sWiOz464o9xGQ2qXUBAtBotxC+vdWCyL9hQZP/nBmiZ6CU5wmCu5nVkp47bXAzCUqVRIZyIrLVvo14WVHY5d8ggMRvjjdnbFj0WGfi4580BBqw14lUQuhzm/LkNapjz3ROHviQ1L/zu1nbe51YZAL4SUSGepTdIFYew4GMLMVm0BN8mbbbEQYc8puI9FLEbDQAxeU8CKaeUUcmg1ex4K3kgYnQd9L8GhUECe56yO7k3ZxTngncSviQPPApxqDNb7TWppfN3C5OpXP1Dw2PNveb/inT7dEZxjqGaREbdCXRPBIMuGRdPyw9dyQx4fkBZFw1bnTVUtQm8/+ro1S7RQdTUNqVPxr8zNQocUj3bQetkHz1+gF2LNr0ki+jeWgs+OfkmNAnucXJO+w+lTX1POPshOPnxeDeZ32hWGHP/TiqNdoLIV0ljG7CMVVuOCm3ajlfC1WlKaMBMzOq4t4whiVRqLfIQ2FRcYaONTMwweYUGl6qMI16w4lxea5YC8006c6lWTGmuMDUmPBC0XEYCQyitq9J41F9MD+yf8QIcLCrMhzTdORfmu10or8Zx9CnGiBqPIYpCPiALIt7zteV5N0y276+uzvnKnQjHF4tWf2BHMvmKumSQs0Mrl+KXy8+fRGbSmsfliA0Ko05hioQ2c8XQMUI2QpY5JsoR7t855AhGQJy1rxgqWI+gKSfQj6Sj658bN8Ip5khfYBuPc02CQunz9wKIQjq1xkEZySog1ztzMTv0eE6WbTU+oVeRm+5wTMB30N2jIt1X3NwOcs4TXDvxiY+yROtw5GwJl1xheJKHWz5OHupOk8PmkjhcgD4O1yrb8DBFac33TBgH3QKBr6ayUtPC++qNdCp9XbPyzS0PZ9v7BCBsJ3DbW7vkXonV87TNrpF4faeNQnEEaSEhzm9KsWLbCZA1Z7zP1PVMZH/HTRB/zk8QCCfHdHDRvxK9fZTcN+NXmp0ppruXti7Mwa2mytyEYJsquKxRT5VxqokFbOeiseOj45ODo58Ojk5YDyJ+IQNDNbMz3w6if3/busM7lvuPvJo2hxcKF9OeCpNlbTXnEgv7JumlubTxcYoLFOVYABveX69RKHRt9WbDyzg8ywV/y3csiGfGgKP8M+X4GY2TS+3oGei+v2j69wfxVIjNoixX3VV+muAR42V849qgpdqXmq/uPXoZvJJ1EXAffxNXwxe2kbco0BDYwRXb6CV2btpe4zUul8o/KzvkuvPrK8jOmp8pmNOxiPuDf8LA/wC+CSkGXgprawxk5bwOU0cSTfLfn2qzTLw= +api: eJzdWEtvGzcQ/isEL22Btay49kW3xE2QtMgDtoMeDMMYLWd3GXNJhg/JqqD/Xgy5u1o94j6SHFpfLJHz/Djzcag1F+hLJ22QRvMZ/2gFBPQsNMhKo4WkdWaqtNCipq8oaCvgYyiYrBj039hShiYJalyOtEE5BLFi+Ch98AWTgbXo6s6LWaBzUiADLRhWFZZBLlCtmECFQeo6S6nBKS+4seiAbL8RfMbfmgVeDnsOP0f04YURKz5b86SkA30Ea5Usk97pJ0/prrkvG2yBPoWVRT7jZv4JS7JjHXkJEv1g5jEcEwSR8wT1YayyKfagvULr0KMOfosNKFY6GdBJYNGjYJVxA5wthLKRup6w33DlmcBKamRCtqg94aqhRZ9gW4CK6Jm3WMpqlQ+vNxsaCKyNPrA5nWCY8IIHGRTlcNnHwfejHdL0wUld037ZgK7x3iH4oxKbjL10KPjsdk+8GBC823FPS3R+fLOrH1zETcEtOGgxoPN8drvmlDGfcSl4wSVhaiE0vDg8xW3U+yYHI48nxtUnW1MNgkD3r40tjXvwFkr8Cnt3tOKt0T4X3dl0Sv92y2hU7exsOmW9Rg/x19e6FEeDTUX2f26Anom+JsdLoytZx8xOA7f5HIRDq6BESgSiCn3Uywb1kPOAjGfgcrw5e9ejRyIjHw+0OcKAtHZ4VUCAcc7v+6DGOd9/4dCXKOsmHG7t5/3BSeNkWLGskM8yGCaoeVs6thSTE+joNumzRQo65TFhr2XdoOsMeBbgAZl1WKJATaBFcryXvENvVEz634LCCl46hIDiHo7mXBnX0g6nS/IkyBbHOvPVUZMKfLhvjZCV/IeGdzWPmv8r0t2msxPnLlRFZtSDQI9EMOqS3eLp+WEomRHPjyjrqmOry46qNon3z6fnh0R3hd5EV+I7E16ZqAU7n55v2W5T8Itj9PhGB3Qa1DW6BbqXzhnHLr4LTbboPdR4/FD61I+EcxyCi2dnh8n8jvPGmIdXIBUKdvHs7JuksQ+YINWeo1Kb9uMV87EsEQUKNo95b5lDYiUoxaoU2ITdNDhExuZGrFKDg9R5xEtWvK+iIqmoQjGYK5UkSvONiUoQQcMyExiEwZU2QVZdekxIQQusNK1VGHBycC7Ed4dQ3uzGsU0xR9R5TFE0sEA2R6S9EB3Nu2myfX1z84Gu3IJ5uliU/AMFAyJfFjWBLE4dLNmv1+/fMWHKSONyxsYHF8sQHTJlaknQEUIuQyY8EeUO7j94pokRFDMxWIJqZTGDJj1rDY3GyfUvnRvmJXFkaKSnj7VChqn06XsDjqRLZ7xnbVRBWjVy5nN2QlYVOrLV+fQNWPSTA45J+I66e6dIjxU3tQPUNMH1Ex97CxpqpMjJUouhMTTJ25jajIa6GT/tLonT1izwdC3FhoYpLCPdM2kc9K0MzWoCVk6aEOwL8LJ8Hkn59o6Gs/19BIduELjbWrumXsnV82WbQyPR+kEbpeJI0gxiaOillCu2nwBJc077RF1PRPZ33CTxp/wkgXRyRAdX2yfRy0egvtl90hxMMcO9tHdhjm41qSuTgu2q4DpadNZ42cWyQOezsbPp2cXJ9OeT6QXpWeNDC4mhutmZbge2fb/t3eEDy/1Hnqbd4aXCtQpkmiyjU5RLLuxbvpWm0uYFn0lBfdAYH2h/vZ6Dx49ObTa0/Dmio4K/ozvWSZgT4LdrLqSnz4LPKlAen4Dux6uuf39iXwqxWwS9Gq7yGecFf8BVfnFt7jZF/6j55t6zl9GTbIiA+vi7uBo/2Ha8ZYGOwE5uyMZW4uCm3Wo8L0u04UnZMdd9+HjDCz7vfqYgTucz7mBJP2HAMoNvUoqJl9LamivQdUxTB88m6e9ParNMvA== sidebar_class_name: "put api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/pause-experiment.api.mdx b/docs/docs/api/pause-experiment.api.mdx index c82702e32..be36ae545 100644 --- a/docs/docs/api/pause-experiment.api.mdx +++ b/docs/docs/api/pause-experiment.api.mdx @@ -5,7 +5,7 @@ description: "Temporarily pauses an inprogress experiment, suspending its effect sidebar_label: "PauseExperiment" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "patch api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/publish.api.mdx b/docs/docs/api/publish.api.mdx index 85fb560fd..d743dcc99 100644 --- a/docs/docs/api/publish.api.mdx +++ b/docs/docs/api/publish.api.mdx @@ -5,7 +5,7 @@ description: "Publishes the draft version of a function, making it the active ve sidebar_label: "Publish" hide_title: true hide_table_of_contents: true -api: eJzVV0tv2zgQ/isET13Ajr3d5uKb63WbAF0ncJRigSAwaGlssZFElqTSGIb/e4eknpbsbnebw+agSJxvHpwZfkPvaQQ6VFwaLjI6obf5OuE6Bk1MDCRSbGPIMyiNUiI2hJFNnoUWOyApe+LZlnDjoAxXn6HC5hoishGKPLMkhxU+ecS8nl8JRSpzAwMSiszAi2lACKqFMcu2sFLAtMiaMp45d3qnDaQXdECFBOVE11EdP64r+JqDNu9FtKOTPXVuMmNfmZQJD53O6Iu2295THcaQMvtmdhLQkFh/gdCgHamsB8NBOzPNuBpwbRQmgx4O3jFXgNE8HMEfB9Rwk0Ad59IHOSuCO7T1jcoBFyRTLAWDmUWTe5rhB1ooC7Fy3wPKbfkkM3bvnd2U4XWtV/ZehkJthzwqTcXAIlD/2tg3oZ60ZCH8B3uPdkVLkWmf/Lfjsf3X27EEhaREo5dfVO92lvtilsWJibClo36IO0anxbUFlWeGp3hc/CnqogcUsjy1nfX7xbjZTx+KOJfewufCQOX8NSzXcTPTZxCPf2olFI8uDK1yHQ9E3PykYu1uvTuT5sLyCUzCtFmlIuIb/pPu25onzP+IHgbt5u2RVw3nJafL9Hn66X6+wuf1n9Pg+maBIr80u/nr9j6Y4/fsZhHM/w7aoNnVdPFxvlrOp3c3i6aop+YB+tY/ILX2llrN3i12t0inGnTQIbh2ZnpK2VOjPsb1FNGgXNzeu/G7LrMgVOQqhIUwH0SeRQRRNcWg1mUfH12jXZWx5A4U7mWuFE6zy1fhphS0Zts+TjnU2+4Jpy8FVoNt7YCpiq9t9nDuxCLykyW0o8VNmAkdldUY7Vt1OoxkNYE1hLniZuemlk65iXcXTPKL2Bj5nmkeTnNr6+HRDo5jOTAFqgI81tbubHZ8Ak7brDJi149adEKvguCWODRhCMccFCUop5PVXFu5rfKZyP6JGwc/58cBXM1sAyzra8v8haUygZ5rR4MveLYRLpCi3nc5dogUmhd+KsLH6fn2cjj+Yzi+dGwqtEmZ67diZtdXpyOOqtr1f3g7LOpjbYxkwrgbXLlK7L58Kz9UxILwyTHplN2MDRhjxix8v8fWgHuVHA52GculbIvj6zNTnK1tGbDhI67tO56dDUs0nMnqm2VBrr+RUxEXiyyzhOlShF/4+gS7zlXwgOepvG398kC8w8ZdsQrGHuJXcdW8Sba8eUDBYsPAT4US0SHWWmMahiDNWWyT+W6nwewK0evil0Tq7nFUsW/2VwY+XSWE9JyJALe2x2GUbXPHz9QbtX/fAc++tSU= +api: eJzVV11v4jgU/SvRfdqRTMl225e8MSyzrTTbVpRWKyGETHIhnia2x3ZoUZT/PrIT8gGBmdmdPiwvBPvcD99zc67JIUIdKiYNExwCeMhWCdMxas/E6EWKro23RaWZ4J5Ye9RbZzy0WOKl9IXxjceMg9LQsC3W2Exj5K2F8rY0yXC5pQmLaGlXroQilZlB4oWCG3wzLYgnlBfGlG9wqZBqwdt7jLtweqcNphdAQEhUbus2avIHAgq/ZqjNRxHtIMjBheHGPlIpExY6m+EXbY+dgw5jTKl9MjuJEIBYfcHQAAGpbATDUDs37bxacG0U4xsoijIwUxhBMD+ALwgYZhJs8pyWSY6r5IquvVEZFgQkVTRFg0pDMM+B09R62BOxdL8JMEufpMae/eg0+/SOvdf+3gZCbQYs2ruKkUao/rWzV6FetKQh/gd/C7uipeC6LP6l79uv3o71Ln3f26OB/Cq+u1Xuy1lWb0y0DEXUD3Gv0entxoPKuGEpLqu36BhNAHmW2s76/cJv99OnKs9p6eG5clAHfw/PTd7U9DlcC5XaHYiowYE1bvLBiJmfNGzCrXZnylx5PoFJqDbLVERszX4yfNfyhPvvyQPpNm/Pft1w5c5pmp5Hn58my+fR59s/R7Pb+zsg1dL4/u+Hp9kECIzv72aTf2Zd0PhmdPfXZDmdjB7v79pbPZzPdhL1d0Ste6ROsx+TfUzSqQYlRwLXrUwPlT0c9SluKREtyS0IXPlXx8oyRS0yFeKdMJ9ExiPvyr9qJKYgcN2nR7fcoOI0eUS1RTVRSijv+l20KUWt6aZPU4rm2D3p9JXAWtCNHTA1+dpWL0UTi6icLKEdLW7CBDDcszHMOzwVQ1lPYI1hppjZuamlU2bi3QWV7CI2Rn6kmoWjzPqaL+zgONxHqlDVgEXj7dFWpyzAaZ91Rez6QYsGcDObPXgO7dHMxMhNRcF+OlnLld23LJ/J7EfCOPi5OA7gOLMNMG2uLZM3msoEe64dLb1gfC1cIhXfj5lEJYVmVZxa8OHSv7we+H8M/GunpkKblLp+q2Z2c3U60Ki6Xf+Ht8OKH+tjKBPK3ODKVGLPVbbyvBYWIBAcis6+mxcEYqGNhef5imp8UklR2OWvGSrb4gsCW6oYXVka5jlETNvnCII1TTSeqepv00pcP3inMq4WKbeC6UoEAQCBF9wdXQWLRUH2t61fnkgZsHVXrJOxL/G7hGrfJDvRSkClYoNZORX2iCNhbSxGYYjSnMW2le9hNBvfAIFV9U8idfc4UPTV/sugryUTQpaaGeTlWg4J5ZvM6TOUTu3nG8++tSU= sidebar_class_name: "patch api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/ramp-experiment.api.mdx b/docs/docs/api/ramp-experiment.api.mdx index d62628f4f..6130b0789 100644 --- a/docs/docs/api/ramp-experiment.api.mdx +++ b/docs/docs/api/ramp-experiment.api.mdx @@ -5,7 +5,7 @@ description: "Adjusts the traffic percentage allocation for an in-progress exper sidebar_label: "RampExperiment" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "patch api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/remove-members-from-group.api.mdx b/docs/docs/api/remove-members-from-group.api.mdx index 3030694b8..ba55586a3 100644 --- a/docs/docs/api/remove-members-from-group.api.mdx +++ b/docs/docs/api/remove-members-from-group.api.mdx @@ -5,7 +5,7 @@ description: "Removes members from an existing experiment group." sidebar_label: "RemoveMembersFromGroup" hide_title: true hide_table_of_contents: true -api: eJy1V0tz2zYQ/isYntoZ61E3vuhmO0riaZPxSMqh49FoIGIpIiYJFgAdaTT679kFSPEhSnVT1webBHe/fX8L7wMBJtQyt1JlwSSYQapewLAU0jVowyKtUsYzBltprMw2+JCDlilklm20KvJhcBUoPOIE8CCOEJ89wAfU/0hyKKbh7wKMvVNiF0z2QagyizD0yPM8kaGDGH0z5Mg+MGEMKacnu8sBcdX6G4QWcdoeP2R5YZmxughtoYFFSjMuBPlaBWGVD+HU81yT71aCcR7FPNvASgMvfSgtIzjCnVieObmmQRuDgcrsMDhcBf55VdteSWEa0FxrvkNkaSE1pyYPXZt/YhmYiprBPLz3EQox0i719GZjaaowDwefe6kB6/PUCfOcj8urwEqbwNmKznw578syHtpmsB6ABznXPAWLemh5H2T4goBSUMgUT85tjM8nxa7j70IeQbYDpTeDGioGLkD/NNh3pZ9NzkP4D3hLOjG5yoxvqOvxmP70jVg3mwxlWaWMRt9oOuaWZ4JrcYTuTspr5gJz3Be8c3FrVzE3ca+Az+0/9XQf8uVBrG33JYBmkZB58tiM4mSUZpBjUjBswxCt0mEoge0qOSsMCJej0hZLuQ1jtD9kf8DOMAGRzIAJSp1BXUbhGsyoYC88wdFgJodQRjuihRrWxhyhChzjNVGFpXRXg3Zf+UEhWs2jSIYrDCFEL/mmmcusoPah4eVbmRZpMPltPMY3mfm38RtwD6UZS2BBrLjto0NMTkpfAoFCA4s2gobOetdbuYQbu0qVkJH8l8BtzTPw6yJ8BvuaMI8N0272Vrp6TbxwrOO5zx2ubaO1dBsEe+ecdspuBFce9DQxkFFxn4Kv8+lsdT+b3i6m7/F4/td8Mf28+jj9Mp25owa2Y5cF4XR9q1LVnbd6ujoz3uqHVqHbs9WK4sqz/UnZe+p5rmVLJukdiVesKU98jT2FeXg3ftfHzEYViPxF2Q+qwDlGqZqTUeumj88fEFcjc8xBv4Ceao2UcfNGZN5uTaQX06aBRtdVWehxpy8FpME3tJWDab0AXMbc7kdmipXwGzqk0rtNPQlGdW0GrspmtJfiUF49BuXdh7YmhAVy3s7tfZNKG++GPJfD2Nr8jhsZ3hYE+LSkLdz9DlyDPgosa7Q5pcpn4zzmMT10frISPy0Wj8xJM47iGEhZj2rVk+aavlPJL3j2GjNO/JIdJ+AKSN0wq6/I0y1P8wR67qU1HZxh+KdKAnOLd5lIOV/L/pgXKJwrI0tXsEmM9/h6fH0zGP8+GN9Q4ChiU+76s7wj+fli5YAxmjBW3e07G/3Y8D/3D0WZV2KeUZ5w6fZhoROC9n3YZNayD1Fv4qim04rYPTHGQjr7PdYVvurkcKBjzLWm/lyWvLymBGG3CmnoGbs/4omBC9H9Miv59Fd2zu1qC2U7R/94McA3fHyGnb8JH6hK5WXzza17K42r8tEDGrv/xVTzIt2y5gVKEhos/HKoJE54sda4DUPI7UXZJmE93i7uP6H0uvw/EzcMKWn+nXoDf7v0KxekIxJ3tsd1lG0KR6+BB6WfH74rTvc= +api: eJy1V0tv4zYQ/isETy0gJ2qaXHxLst7doN1FYHsPhWEYtDi2uJFILTlKbBj678VQkvWwnKbbNJdIFOeb9zfjA5fgIqsyVEbzMZ9Cap7BsRTSNVjHNtakTGgGO+VQ6S2DXQZWpaCRba3JswsecJOBFQTwII8QX0qAj9akn+geD7iFHzk4vDNyz8cHHhmNoJEeRZYlKvIQl98dGXLgLoohFfSE+wz4mJv1d4iQBz2LH3SWI3No8whzC2xjLBNSkq21E2hKF04tzyzZjgqctygWegsrC6KyodLs0Cq9PdE89ffaCjEGB7XaC14EvHxeNbpXSroWtLBW7HnAFULqTlUWfZ1/KofMbNrOPHwoPZTy0vrQ0xvGytVuFkUZe2VB8vGi5+Y5G5cBR4UJnM3otEznfZXGoqsGbQ5FwDNhRQoI1vHx4sC1SAlQSXKZ/MkExjw4TXbjfx/yCLIbGbsdNVAxCAn2p8FejH1ymYjgP+At6cRlRruyoK7CkP4NtVg/muwqDFktzIP36o4ZCi2FlUfofqe8pS+UHHTem7jDVSxcPHihjO0/1fQQ8uuN2OgeCgD1IiGL5LHtxUkrTSGz4ECjY5HRtQyLrEKwSrDcgfQxqnSxVGAUK729YH/A3jEJG6WBSQqdU0YzctcxoSV7FkkOjrkMIrXZEy00sBgLZGnukK2JKpDCXTfafW0HuYhWbDYqWmVgI9Aotu1Y6pzKh5pX7FSap3z8WxgGPFW6fAvfgXsozBYEglwJHKLDjbEpfeFSIIxQpcBbMuv9YOYS4XCVGqk26l8CdyXPwK/z6AnwLW4eC6Zb7J1wDap4FlaJc597XNtF68i2CPbOG+2FfQuuStDTwICm5C74t9lkurqfTm7nkw884LO/ZvPJl9WnydfJ1B+1sD27zAmnb1sdqn6/Nd3V6/FOPXQS3e2tjhdByfYnaR/I57mSrZhksCXeMKZK4mvNqSLg1+H1EDM7k9sIvhr8aHIt2XV43XByEfCbIT5/0AhWi2QG9hnsxFpj2c07kXm3NFNwrksDraqrozBgzlAISEJsaSrzSTMAfMT87E8BYyPLCR1R6v2kHvPLJjcjn2V3eVCyqFaPUbX70NSEKLcK937uu1RhvL8QmbqIEbM74VR0mxPgYklTuP8dhAV7vLBs0GYUqjIa5zGP4aHzk5H4eT5/ZP42EznGoLHKRz3qSXJN3ynlr1j2FjX++mt6/AWfQKqGabMiT3YizRIY2EsbOjjD8Iv6xrKgXWZjvK1VfczyDGxmnKpMeQbrSouvwqubUfj7KLwhxzPjMBW+PqsdqewvVjUYow5j9W7fm+jHgv+5HxRVXIl5LrNEKD8Pc5sQdFmHbWat6pAHfOyppleKy4DHxiHJHA5r4eCbTYqCjn/kYKk+lxUvrylAiwOXytGz5OONSBy84t0v04pPf2XnzK6nkN57+k9yeuMBf4J9uQkXlKVq2Xx37aWW1qp8tIDa7n9R1V6kO9rKCxUJjeblcKhvnPBiI3EbRZDhq3fbhPV4O7//zAO+rn5npkaSkBUvVBvipQy/8U56IvFnB54Ivc09vfISlP7+Br4rTvc= sidebar_class_name: "patch api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/resume-experiment.api.mdx b/docs/docs/api/resume-experiment.api.mdx index 78260578e..a4dd6f03d 100644 --- a/docs/docs/api/resume-experiment.api.mdx +++ b/docs/docs/api/resume-experiment.api.mdx @@ -5,7 +5,7 @@ description: "Resumes a previously paused experiment, restoring its in-progress sidebar_label: "ResumeExperiment" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "patch api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/rotate-master-encryption-key.api.mdx b/docs/docs/api/rotate-master-encryption-key.api.mdx index 7704e11ae..d97274b76 100644 --- a/docs/docs/api/rotate-master-encryption-key.api.mdx +++ b/docs/docs/api/rotate-master-encryption-key.api.mdx @@ -5,7 +5,7 @@ description: "Rotates the master encryption key across all workspaces" sidebar_label: "RotateMasterEncryptionKey" hide_title: true hide_table_of_contents: true -api: eJy1VF1r20AQ/CvHPduxcfGL39JSSCilIXafjDHr8za6RNJd9k5uhdB/7+5JsRKimkLpkz5udnZ2dqRGHzEYsj5aV+qVvncRIgYVM1QFhIiksDRUp3P1hLUCQy4EBXmufjp6Ch4MBj3RziOBoG6PZ56vieHzmeAL1owkDN6VgatWjV7M53IZUzFSrRiuXuqZyrgyYhmFAbzPrUkKZo9BaBodTIYFyF2sPTKxOzyiiVzoSfRG24kYBtlTan18VVNWxQFJtxMd+SzfBzSEkZG4760Zhbcy6HNlSU63l2onY/133M7GHC+5cd8b8al3oW2l63LM0VtGUAn5GunELESO1PK/eFlgCPCAr4Ahki0fkiMvI43IGRuGKwqMmZNEeRdSM4gZP826cE6HcE45nLPOPYax0RXZWLP1LL2wMauvwNurLEb/EYI115XwbHft5P05AiGdAbuBbS0edGP+mfM8t7xnKW8XcbPZ3KmEVsBwnrQ3WkQnegYd5FwSd0HZ37RJ8Et9EiBtxpY/XCLtN7SueKfsue1reE2ho17MF8vp/MN0vhSFspYCUkJKKIa4qi6vagis6r7+NzqbIXX/8OvpjYj4K858DrYUYRXlwt/lZatH8yI/oy4xvORMAsbIpmH78TvlbSuvnyskiRHfnoAsHMQeyY3OEI7sniRMuFb62hj0EtIT5JUoevcdSZjOib77tt6w978BbNX4pQ== +api: eJy1lEFr20AQhf/KMud1LFx80S0tgYZSGuL0ZIxZy9NoY2l3MztyK4T+e5mVYqeNagqlJxvtzJs3bz+pgz3Ggmxg6x3kcO/ZMEbFJaraREZS6Apq07k6YKtMQT5GZapKffd0iMEUGEGDD0hGqm73J53PSeHmJPAJW9BAGIN3ESPkHSyyTH6mXEx0q0WWqZd+0FB4x+hYFEwIlS2Sg/lTFJkOYlFibeQftwEhB797woJBQyDxy3YwcV5kS2n0/lWPa+odEvQa2LOpthELQo5bwu0YzWR5L4s+N5bkdH2pV0/N32hgyxVeSuN+DOLDmELfy9TlVKK3jpGcqVZIR6QbIk9q+V+yrDFG84ivCiOTdY8pkZeVJuxMLdNrqJFLL0QFH9MwwyXkMB/gnJ3hnB2wnQ/pgYaIRUOWW8jXHcTactlemWCvSubw3kRbXDeis970+u05GkI6FWzOaivJYFjzz5qnveU56N8u4uPDw51K1co0XKLjMWgxneQhh52cC3EXnP3NmFR+aU4qSDdj3TefRMcbWjUBKfhox54jUhykF9liOcvezbKlOJRrqU0ixJn6jKsaeFVnYNXw9v/isztT9w+fnjEIxh88D5WxTow1VIn+wMsaJnmRj9FAzEZDKYDla+i6nYn4laq+l8fPDZJgtNFwNGTNTuIRbqBEs0dKhIlWDtdFgUEgPZqqEUdv3iOB6UT03ZfVA/T9T2zV+KU= sidebar_class_name: "post api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/rotate-workspace-encryption-key.api.mdx b/docs/docs/api/rotate-workspace-encryption-key.api.mdx index 8e5a870c7..c254ec276 100644 --- a/docs/docs/api/rotate-workspace-encryption-key.api.mdx +++ b/docs/docs/api/rotate-workspace-encryption-key.api.mdx @@ -5,7 +5,7 @@ description: "Rotates the workspace encryption key. Generates a new encryption k sidebar_label: "RotateWorkspaceEncryptionKey" hide_title: true hide_table_of_contents: true -api: eJzdVVFv2jAQ/iuWnzaJAOrEC2/dVG3VtK0qTHtAFTLJQdwGOz07pSjKf9+dExIolG3S9rIXcOy7z3fffXcuZQIuRp17bY0cy1vrlQcnfApiY/HB5SoGASbGbTARD7Dti49gAIOdEgY2L86FMolAiJpdMsoy4SBGoPVG+zSgs18Am6baCc1QFIfXscqEzRme4XyqvHCpLbJELEAk1tBPgdqsRGY3kUe1XOpYkL22ievLnmx9r5M2nx+7TK7aQD/DloxzhWoNHtDJ8ayUhj7IqU18HjZ6UjM1ufIprV2cwlrJcSn9Nmdr5zkcWfUkwmOhEehejwVUvRbwObK4inSyg0pBJYB/BHbHOy63xoFj+4vhkP9OVe90toI8xA6Cro6t8WA8g6g8z4h3NhzcO0YqjyOzi3uIPXOGTLHXdRyerszmTXXnCPOm6hx462uK9SLkexju17At7LJVRyj3BhD29APJsWhkdcDQ7FwYxJzXPoNf8HPbUPOh4aWq+I7RKZqvyQKNyiaAT4BXiBbF6J+wuwbn1ApOCKTqsjoRzqlk2EOtWOiyZUB8UYbw12xDPFErpJbbJrcuBMOSH8tB2xBuUB42RzXAwGnUjYDoIbQW1YL61G9DY7k1VXDbV7nup97n75XT8WXB4LM77pOX56AQsDW469AmTFzNzeuYLVm8f6S6T9PpjQjWQpE5pd5UZ9eP7Lngc27DM5H9zjXB/Nw9wSCUU5ulDaBNWScFCYEKoRsfqq2roS+GF6No+C4ajjhCrtVaBVk146aWueiq3Ald1HPvINSyU+t/MP+bmnh49oM8UzRviaMCM86z1vOsG/COHMZH4/60pEmFKbcF+Zcl6QO+Y1ZVvP1YALLOafmkUKsF149Un2jHa2qopcocnKH9zW0zy96K11JoNpXh+j2prOAvWnJoR09WRV21e2X+eiT1jXtvWhsNt3J9ehnHkPu9s6MpWO3Pm5tvkyk1wU/LnAlr +api: eJzdVcFu20gM/ZUBTy0gx0YWuejWFkVbLHa3SLLowTACWqKtSaSZCYeKawj694JjWU5iN90F2ktPcTicN4+Pj1QHJcWCbRDrHeRw6QWFopGKzMbzXQxYkCFX8DalmDvanpkP5IhTHhpHm2fnBl1pmCZDNBqsaxOpYJJoNlaqhK73Eth1ZaOxClWwFVtgbXxQeIWTCsXEyrd1aZZkSu/IlC1btza130yEcbWyhQnE1pfxDDIY734qx3q+7Ct5PxL9k7aQQUDGhoQ4Qj7vwGFDkMNY+E0KZGBVmoBSQQaxqKhByDuQbdDsKEoH+gyY7lvLVEIu3FKfjYBfJ57XE1vuoSrCkvh/gS00EoN3kaLmn89m+udU905Xa85nM7OHgAwK74ScKAiGUNsiiTa9jYrUHTPzy1sqRDVjlVjsjod4wfpm6O4N083QdSU+3nVts0z1PqX7dwobvxrdkdq9IaZH/qHy2DTQP1Fo/hKNRQZipaYf6HM5SPNu0KXv9Y2LUzJ/ckLssL4ifiB+z+zZXPwSdRuKEdd0wiD9oaoTdE4VozdwrUaHUQHzFzpcU6M5iwwaksrr2AQfExm1fA7TcSDitHs6HP2Uk6aTwwqY3KXRilS0bGWbBis2VqrtGQZ7VomEtxht8aZV8PlC5+T5OSETjwmLA9qVCrfT5vuYo1gaP3Ldx+vrzyZlG2ylIidDd/bzqDeXeq5j+AKz//JMSn/pnZSQ2mndyifQoa1XbSAOPtrhzgNx3EGfz84vJrM/JrMLZai9ajDZalg3O5ubQ5cPRje7vfeEandw62+w/4eeCH2VaajROtWo5Vrr3Pl5fljwETLIj9b9aUsvMqh0LPI5dN0SI/3Ldd9r+L4lVp8vMnhAtrjU/s07KG3U3yXkK6wjvSD7q8thl7023ythCKLT/j1g3ep/kIFSO/pk9Ys+239lfjqT3YuPvmkjGx3l3emboqAgj86OtmD/eN98/ufqGvr+G8ucCWs= sidebar_class_name: "post api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/test.api.mdx b/docs/docs/api/test.api.mdx index 6b380dfa2..500d2320a 100644 --- a/docs/docs/api/test.api.mdx +++ b/docs/docs/api/test.api.mdx @@ -5,7 +5,7 @@ description: "Executes a function in test mode with provided input parameters to sidebar_label: "Test" hide_title: true hide_table_of_contents: true -api: eJzFV1tvKjcQ/ivWPrVSCCg9eeGNQzk9kVqIgESVIoTMrmF9zu7atb0EhPa/d8beOxtC27TNAzEz47l8c/Fw8gKmfcWl4SLxht7kwPzUME0o2aaJj1TCEwIUQ2IRMPLKTUikEnsesABYMjVEUkVjZpjSxAiypxEPqGGEG002LKR7LhQctkIxItNNxHXIkx0BYsBkJI4xS8ytd+MJyRRFiw8BeLIEk0BU7I8UTp9FcPSGJ88XiQFxPFIpI+7bC/1vGr0/edoPWUzxJBI223rDl5NnjpKBPrH5xnzUaLiJkAB+pmxdeAsMiAo8MJxpVNBiD88VNeW/s2NNSBsFMXrZjdMDHDg6XocMS/ZciSR2kWWZC5srBkC8NLg31k6uqlC+qoJ6RsKzcxqA+ZLncO5Q9NqqW0Guspv38PJFDCl/C66C+y5aCRRMJxRSsS0/dLI+BD5ruDSTK20DOHZhXIdeEfNF8GzdHszb5XYm8C6E10ddC2/szFxfIWd+XQ4zpMmOrRWj0JAXgu0Wezfkxr2OUmj73hCvo2AZc0v/C1B0e73KapoLHW6ONpQ1tBmVMqz2cnLaUeW6wism7zovVo6TWVITwrmacGdt0NZe6tOG7q7Vg92UxhhuoOjWpsCNbNBbi3NhVV4yeugJtevxoLAbMhow9TcjOPRehfquJfXZP9C3QoqWItGunO4GA/zXfAHx3SHAIYUomLj61blcvttkLVIDw8I9B9oEwp7PHS8roHvmVUl6Hv36NFnD58PPo+XDbAosRxrPfnt8Wk7g+3g2XU5+XzaFxl9H018m6/lktJhN66yOWl6CbX3WDVUwbXfLyGq6ENV5Dug4RzOzPfFp8Ok8CSAqUuWzqTBfRJoEBKSqhMCt+67UPYBeldBowdSeqYlSsGLc/yuZjJnW2ACdI6iIucOdLgjwBt3hACgR1wgdzIVQ4CYkhd2EbOMOvX4Bdv/UmBNZ/2T7POsbtzlpmECKm6OdLDqGve14SyW/DY2Rn6nm/ihFhS92oLf5jCqmSoFVpW2BCDkQ3tZZooJ0cKWZpq/L5SOx0oSCOOCQp6FoZry5QT5m+oJn15ix4pfsWAGbNyyCebVuTg40lhHr3gXttle149mSV+/U5jOd4fzaCut9MUxTKC3IMs+dg2rRLoa7wd19b/BTb3BvdyMohJgm1f5ULMmNwGtL8v+6zudA4PbQlxGFoQ0hpCpCD10tv5SDA8SH7VdvWDxbtp6hBEPsA7h0OkFxsCcVZRmSIWEKi3yFaVCcbhBTKPmAazxDB21ppNkFlH6Y53PtR/KW3zmRJscq216+jbcfbOyn/9C4gymDNi7exA+P3hmqveilEx8ea2Gq/t43rDmBfID2lvXfQcPzmV7dGPk+k+aibH3oPs4WSxDe5L87sVmAqugr/iaFT5sAId20BgFLO3kRrIipfRk8pxP//gTfAGKA +api: eJzFV99v4jgQ/lcsP91JoaBe+5I3lmNvK+2VitLqJISQSQbi3cT22g4tivK/n8ZOIIGUcne9O16I7Mk3M9/8TEFjMJHmynIpaEjHrxDlFgxhZJ2LCE8JF8SCsSSTMZAXbhOitNzyGGLChcotUUyzDCxoQ6wkW5bymFkg3BqygoRtudRkBWupgah8lXKTcLEhUpMYVCp3GQh7RQMqFWiGGu9iGtIZGEsDquFHDsZ+kvGOhgWNpLAgLD4ypVIeuRf63wxaX1ATJZAxfJICJmsazgtqdwpoSOXqG0SIaLlN8WDL0hyWtbU0oEqjBZaDQYCj6/AUqC3/HXYNIWM1FxtaBh6HhkUZVHcdMiC2XEuRec/K0rvNNcQ0nLduA6engqrBFwennvHg2RvNpfhcxXDqWaTH0EdOLsrgPb4iman8Tbrq23fZEizrpkJpWPPXzqsPoc8p3qupQI8JHHk3LmOv9vkseS5vX+3b6XYi8C6Fl3vdcG/k1VyeISd2nXczYWIDSw3MSHHG2W6xd11uvdeRCse2t8SbLLiLqTv/C1R0W70oG8g1hu+jLbAWmtU5YLbvO6drVb4qaN15l1WycuzMitmEBo0Od1IGx+h7PGPZ5lIcrKY8Q3djzdYuBL5lQ9xk8NFBnlP62pN60+NxrTcBFoP+mx689l6k/m4Ui+Af4C3wxCgpjE+n68EA/9oTEOcOuR4MSC1Kg8unzvn0XYulzK3KrR8HxsbSPZ8avs+A7p53CNLz8OvTePk8/Hr363B2N7mnQXU0mvz+8DQb04COJvez8R+zttDoy/D+t/FyOh4+Tu6bVx25PNspMCfVcHDm2Ny9Zw0sZHVaETqq2CxdTdwMbk6DMAUjcx3BvbSfZS5icjO4OQSkDOhtV+juhAUtWPoIegt6rLXU5PZfiWQGxmABdLag2ucOc7oowDfYBhvAnnGD1GVgE4mbkJJuE3KFG9J+TXa/aPWJsl+4Oi/71m9OBqJcc7tzncVk3Ca7K6b4VWKt+sQMj4Y5As5dQz++B6ZB7wUWB7RHZMiT8DbmnhU8p8FRmL7MZg/ESROW2wSErcJQFzO+ucJ7jPQZyy5R48TP6XECLm6YBNPDujl+ZZlKoXsXdNveoRxPlrxmpbbHdIn9ay2d9XUzzRVoJQ2vjNuCNt6H68H1bW/wS29w63YjaWzGxGF/qpfkluONJfl/XecrInB76KuUcYEu5DpFC30uz/eNgwY0PJ56YT22XD4vAppgHYRzWhQrZuBJp2WJxz9y0JjkCwyD5myFnM4LGnODzzEN1yw1cIaln6ZVX/uZvGV3dcjE7hBtWm3jxwMb6+k/VO5pKhdlUM/ED/feK2pM9L0RH+5rrao571vavEDVQHuz5ndQeNrTD28MowiUPSvbbLoPk8cZDeiq+u7EYqEh1ewFv0nZiw+AVL5bh4U/K2jKxCZ3k4F6TPz9Cd8AYoA= sidebar_class_name: "post api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/update-default-config.api.mdx b/docs/docs/api/update-default-config.api.mdx index 455bd4fab..261626133 100644 --- a/docs/docs/api/update-default-config.api.mdx +++ b/docs/docs/api/update-default-config.api.mdx @@ -5,7 +5,7 @@ description: "Updates an existing default config entry. Allows modification of v sidebar_label: "UpdateDefaultConfig" hide_title: true hide_table_of_contents: true -api: eJzdWE1z2zYQ/SsYXtrOSLLrxhffnK8mPSSeWJkeEo8GIlYiEopg8RFZ1ei/9y1AiaJEO3HrdDrNwaGJxdu3D7uLpdeZIpdbXXttquwie18r6ckJWQm61c7rai4UzWQovchNNdNzQZW3q5G4LEuzdGJhlJ7pXPJ+YWbiiywDDYTLC1rIgZiFKo9LC1nXAHMDQCux51QsC12SqC05sl/Yny9IfKaV0AquAE52lA0yU5ONXl6rHc/nidmzSAw2lv4I5PxTo1bZxToDYQ8IfoT3smF58slxqOssceQnv6oJoGb6iXIPnNqyN6/JRZhCVnOaWJLNxsbceQu62WaQxaCxgse7QaVSmv3L8mofHnu6R/ArVWR1zhIMI7BIEAL+Qu6DJREcKTEzVsxKnNIU8kENKSxFFSufTsMX1oR5YYKPkl5evWYdvfYl83qbeG3ZT/BTq7hxsj20SSUXdBzwIeGxEaFylLzsDpz3DkQtnRMfsyqU5cdMJIBRdhjzXZJOcrOog6d/gdEmZY+2hPT6cHDmN61sPYn3LmXdsybbNl0sHBrhRS0t3HuyOPMP6yzFkeGMQV4z51r6IuvJn1aSQ8wdyu3Q2PlQqy1UQVKR/dtgS2M/u1rm9A/wbviNqw1OIdbQ2ekp/9fXbDpaChiK7U54fKQSZp3/f4X7tRr6xsb1gNJ/aGEyCbj3pCbS99UttFjwSsaZMPQaIHt7pv2nVkrnJ+nieSBwd2cv/L2NoBNOh2f3NAZNZR8x7aGwS71tOn6t26Ti2Gs3oPzk9MlxfcHUBJvTG+NfmoBrF1ZtcWHXeV9VvgauRbJf4zom+8JapOv5d6nKBTkn531ps2kl6KHTL8H5z2fHwfxO08KYzy8lZgwlYPIoYRwKpngrpiZfyFSyu2FFuJDnRArOp005LxMlkcuyFLNIbCTGWNgyE1PMLzxteakrF/dEFOdmoWQr5MJgB5eXGjEIh3ZRwgkJuZToNJHK1lVlfDukKa34heASLnEjjY7OhXvSsZTjLo82xMSo8RhZFPILoiDiNfS9CtEvtS/Eq/H4ijs85kN0SnSdP7Ei47QZKhZZnVi5FL9dv30jlMnDApElbdoWWpq5ZulYIZskUxDJdHX/wSFGdADwDL5mqYCeRNNxaKUyuX7euBFOVznLhmU8ztGaKaY+/15AUVjn1mB2WCBYDeVaZy5Fh5KekWWsxif21eSOh4uo716Vd5K0L7m5HOScJ4es6QUiNYOQCDAYhovCqDRI5DxJxIHiIjtpxvdhGt9P1uhMG246lAer/SqOI26BAFYjWetR4X39VDqdXwbe/+GGZ4PDdYIgdmdw06Jdc82kLLobc1dQ/P6onGKSRGshYc7fAClzt52Sd055nVvYPcy+xU00v89PNIgnyG3hXfuB8eJWcv30fCC0l1DfePENt+5dY20X9647eO+i1NXMRB2aRLsOSNnaON2EiYbqEvTZ6dn58PSX4ek574OJX8jYBBvMdBGJbvYdEtz74voPf0g2SeHp1p/UJVosRxxsyfxTzaBCOzWDTRd8nyPPCyjDBus1MpDe23Kz4dfICsuVdMNng842ZblRV0o7fkZZzmTp6B69fnzXNIifxF0cm5eyWrWplTWjRvqU2KBYt9P6o7tPbva+NXYUuEN8F1f7XyIdb8mgaZHDMWO0Fkd3ebvjEtdX7e+13W+lV5fjZ69gPW3+oMD3Bl7jjuI/NuBn1N/EIGPPi+/WmPGqeYiTTZZA+d9f6cMsYQ== +api: eJzdWEtz2zYQ/is7uLSdoWTFtS+6Oa8mPSQeW5keHI0HIpYiYhBA8LCsavjfOwtQb9pJ2qTTqS+mSezutx/2Wyy8YgJ96aQN0mg2Zh+s4AE9cA34IH2Qeg4CKx5VgNLoSs4BdXDLIVwoZRYeGiNkJUtO9mAquOcqYgG+rLHhBVRRl+lTw62Veu4L4FrATlBY1FIhWIce3T3FCzXCHS5BCtRBVhLdkBXMWHQpyluxwfkyI3uRgLGCOfwc0YfnRizZeMVKowPqQI/cWtWhPPnkKdUVyxjpKSwtsjEzs09YBlYw6yhakOiTm5rrOd465J1ht9wHJ/WctQVLSbPxqi2ecMqFkBSfq8td921xsAW/oUYnS6JgkBxDdgE+uFiG6BCiRwGVcVApfJAzhSB44OAwsahD3o1QOxPntYkhUXpx+ZZ4DDIowvU+41qjv73nSopkeLvetFvNGzxO+BDwxEDUHnOUzYaTbQGWew8fmY5KfWSQHQzZYc6PUXpbmsbGgP8CojZXj3Qo2PjmYM+nW9p6Cu8qV92LrtrafV/BRWwLZrnjDQZ0no1vViznwe5wyQomCbPloWY99bOl5NDnxsvDwLj5QIq1qxq5QPe3nS2Mu/OWl/gP/E3pjbdG+6yh09GIfvU1mz0u4XQ0grUlK76XhInn/59wv6Shr2xc3yD9bxUmgXDIA4pbHvp0WxnX0BdGlTAIssFdm1n/rinuw20+eL7R8b5lr/snG8FeOns493ej6JR9hLQHwqb01uX4pW6TxbHTbtqCnY3OjvV1hd5EV+I7E16bqAWcjc624moLdt6nyrc6oNNcXaO7R/fKOePg/IeoskHv+byvbNotBT1w+ik4f3Z6nMwfOKuNuXvNpUIB589Ov0sah4QJMkUPoeZZspthBXwsS0SBAmadnBcZEpRcKagSsCFMatwgg5kRS5q2ApfaJ5vkxfsqKloVVSg27kolUQfwtYlKwAyBL7jDDGUdSpuwHdKEFPQCSMIKAw6P9oV60jGVk30c2xQzoi5iQlHze4QZIn0L0WkUsJChhjeTySV1+AI8OsmV/BMF8DRtRk0kixPHF/D79ft3IEwZG9Qhc7NtocrMJVFHDLlMmfAQzD7vP3nQ1AEUmBgsUbW0mEmTaWhFlUO/7MKAl7ok2qSnx7lCwFT69HfNHa0unfEemqiCtGonmM/ZCVlV6MhXF9PX3KI/Hi4Svzsq3yvSvuImOfA5TQ6s6wWQm0HMAMhZg6E2Ig8SJU0SaaAYs5NufB/k8f1kdYfLlpoOltHJsEzjiG9kqJdDbuWwDsE+516WF5Hsb6Y0Gxx+R+7QbRZMt96uSTO5ih73uREUvT+SUyqStBp4DDXdAXLlrjslWc7oO7WwJ5B9TZi0/Kk4aUHaQWoLV9sLxqsHTvrpuSBsD6G+8eIrTt3Hxtp9v4+dwTsHpdSVSTx0hXYdLTprvOzSvEfns+vT0en5YPTrYHROdtb40PDUBDuf+SCC/eo7BLhz4/oPXyS7ogj4EE6s4lJTxtEpwp81c8P2NcMKNqbzfFqw2vhAC1arGff4wam2pdefIzpS0pT2xkk+I7pvVkxIT8+CjSuuPD7B189XXYP4BR7D2L3kerktLdaNGvkq0U7bYj2tf/fwOczOXWMDgTrEDwm1exPZi5YXdC1yMCEf2xVHZ/nW4qIs0YYn1+620suLyYs3rGCz7h8KdG6wMXN8Qf9s4IvMv0lJpp6X3q2Y4noe02TDslP6+Qvpwyxh sidebar_class_name: "patch api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/update-dimension.api.mdx b/docs/docs/api/update-dimension.api.mdx index bfd71be94..469845103 100644 --- a/docs/docs/api/update-dimension.api.mdx +++ b/docs/docs/api/update-dimension.api.mdx @@ -5,7 +5,7 @@ description: "Updates an existing dimension's configuration. Allows modification sidebar_label: "UpdateDimension" hide_title: true hide_table_of_contents: true -api: eJzVWFlvGzcQ/ivEvrQFJNlN4xe/KY5zFGlkyAr64BgCtTvSMqHILcmNrAj6750h99ZKqVunQAzYpsg5vhnORe2iBGxsROaEVtFl9CFLuAPLuGLwIKwTasUSsQZl8fwny2KtlmKVG070IzaWUm8sW+tELEXsN5leMhunsOYDlmkraG/AlrmK/emaZxkKtQNUkTDtUjAsMzoD4wTq3aRCAhIJ5fDXa4cMVAIq3jID0quwqcjsKBpExOZ33iYV9pclWjw38FcO1r3QyTa63EUI3oFytEQUsgB89smS6bsooKaV22aAAvXiE8QO5dQAT9PxJPH2cnnT5NgPOl5+DQqMiNln2A6/cJkDCyKYdSaPXW6A5RYSttSGLSVexAKdgsZxdEFmwKIRwdcuNTpfpTp3uAQ2vnlLbnHCScI1CbhQfXkRDdAqXy/A0KFHMMe/IvFS5+VlzRVfQ4MF0eGNRF1rZprlykKAUF008WIEcGvZR1Qm5ceIBQGjqOuQrgY8j1OuVjA3wO0RigA71ussd/A/YN6HeBIGMNjuOgDva693wnAaYvCqiL19Ww7eN9D9cIOqHRgMl7tdFGyIkkYoC0KdcZfi+iAAa6d0JVeyHobarIYiKUWlwBO8/n8rbKPNZ5vxGP6DvHvasRnmc8irZ+fn9K+vIFXeZEjESi7U9kQpXXu6D/fJ7PkBq8FjE/5J0lVy6+ahUUAy564vR9HCNZ1EdOdDh5dyyLnY9gNA1e6RgkueIyLrzjNfGZ6lj7jjko4bw7eUIg7WtkfJvr6el5W2114ZASijch7YdpFWMFn6EtEFUoqZXr/+8G48PYjwcr/HhqpwKeEOylzJd0/pf4zz3eRq/G5+NXkzmc4ONLcOe13Q1NeiPql0ev3HZHZ9TGv79Jtq2+T3+0Y9r2rPjCQ8tvEg/RonHe60aUbZQmsJXH2jq7TCuhWvPdHZTtJBq3t0IqknG3vSrIm8UQSrkneq54UC3Wh6aOfz8+eH9R1JdW5ieK/dK53jSIhUdYFHrou+rvAW5RpMulswX8BcG4Ol8eK7dIY1WMtXfRfbyN0eOP0uuPj12aExf8Ii1frzK46jb8KQ5EnM6DosIVacsF3KQ3uohmdm8zgGSFD5omgdmwCJxVxKtvTARmyGByUytsCZml4DNKZbz+OlWLvMJVHl0g0qcbEUaAOz2JokKgHGNxy7modSqlLa1W+IRCS0wSjJJM5Fo8OOjf3v0JWzNo7axICo0OhRpPwLWgFAZ9hjFVq/ES5lb2azG5oyBsxiV8Ye+RVPuH8R5YqcnJwZvmG/307es0THOYa8C76p27XUK0GuIw+Z4LIEnaTbfsfnlKK+hDhzl5GrUHpwmvBvKpBB9ctCDbNCxeQ2PMblCscA8KFPn1P0KFLHRuP0ukZjBXquVmaDdZjdSzAkq9CJfBnYw/HW+7eR4a0g7QtuSge+ovm1rpiWJOBcm+okTK8xlSk/xV5GZ1VROttVyz2VF4hzI9zW9zm7RtjbEc/EKHUue8GtiMc5Cbjz3aF7DugGUxHc19JuKVOKB9xRmVUa0f5BEvnQ8NSMIzlaXsRrWRN9ZadzPxgeR/ZP1HjyU3o8gb83KgbT+ql7/cApa1rloTXFnn97BDz2bqq2OwNffXCyOza6olBL7T1RBNhtjqHaaDJYSMNAju+CZxfD89+G5xfFMO6wLxFrITM0H9Z8+HfG1aqI/mDfbxRR4uDBnWUSGcgBuZFkU8iiu1abv6w/YOSn6Cmi2O0wJuGDkfs9bWOc0Chyd093hRVuQe6/ozeQpTVm6pJLCyec+PO0KBS/sGMgy/lXbcuQwE+4xDdO62G7xyQu345PDiIoa7x8KyBUOb6Lqua7uKUtEBQFczgLU1hJcdDZa44xNrPMnaRt1tib8ezqDVIviq+8qIvgNnYs+joM//pb0N5IXwv93g6HP7XK/ZwTBaH08zcCvBqj +api: eJzVWEtvGzcQ/isDXtICa1tx7YtujuM8ijQOZAU9OIIwWo60jLnkhg/LqqD/XpDUrnYlWalbp0ByyZqcx8fhzDdDLRknmxtROaEV67PPFUdHFlABPQjrhJoBFyUpK7R6YSHXaipm3mCQP4YLKfXcQqm5mIo8LoKegs0LKjGDSlsR1jKYepXH3RKrSqiZzQAVB+0KMlAZXZFxgizMCyEJShTKoVDRO1WkOKl8AYZkdGELUdljlrGgFlfe8wb76xoty5ihb56se6X5gvWXLNfKkXLhE6tKrgGffLXh6EuWUIcvt6iI9ZmefKXcsYxtAB6WQ87jeVF+amussq0ovyVFRuRwR4uje5SeIJkA64zPnTcE3hKHqTYwlfQgJpKAo0MwVBmypFyKtSuM9rNCeweuILj49D6ExQknA67rhGuVsfoiWqCVLydkwmZEML5HKXi0Oq4va6ywpJaKdUaoGds+zVCDV5YShOaig24GFVoLX5jyUn5hkAwcs+2AbHtYZSwvUM1obAjtIxIJdq7Lyjv6HzCvUj4JQ5z1b7cAjjZR30rDQcrBy3Xurbp2nPEU7gcNluTIWNa/XbJ0BsZbqSwC6gpdwbLdBNwEZdtyY+vhSJvZkeC1qYKQk/nXxuba3NkKc/oP9kZhxVZa2VRXp71e+G8fITXRhNNeD2otlj1XSW8ivQ/3wer5CdngqQX/LOUq0bpxahTEx+j21ehUmzLssHDnR06UtKs5WewHYAjdEw3XOo+Y3HSe8cxgVTzhjms5NAYXoUQclXaPk9Xmel433t5GZwFAnZXjpLZkWtH1NFLENpDazODq7ecPF4OdDK/X95yhIS4l3A7N1XqjUP6PaX64vrz4ML68fnc9GO547mzuDUHbX0f6oNPB1R/Xw6vHvHZ3v+u2Kz5atfi84Z5hsPDUxrPKWImKo9OmnWUTrSWh+k5X6aR1J1/3ZGe3SLNO99jKpD3VuKfM2shbJNhQ3qGelwi61fRWGTvrne3y+4Cs9ianj9q90V5xOOudbQh+lbHzfV3hvXJkFMobMvdkrozRBs5/SGcoyVqc7bvYVu3ugbM/BOcvT3cP8ydNCq3v3qCQxOH85emzHGM7YDyokgVXYGoPzfAM1uc5EScOk3XrmCdIkKOUMI3AjmFYUIMMJpovwmsgjOk26kQr1k69DFJeuqwxl0tByoEttJccJgQ4R0MJSu1Kabd5Q3DBwwKEIpPk6Hi3Y6PD3VAOuzg2R0yI1h4jigLvCSZEYc95o4jDXLgC3g2Hn8KUkYElI1CKv4gDxheRVyHI/MTgHH6/uf4IXOe+JOVSbDbtWuqZCKELETIpZNyC0924v7CgQl+SoL2rQqgWFaWgifimIplcv167AStUHsImbPicSQKKqR/+LtAE6dxoa6H00olKtpzZdDouplMywdbapy2wIrs73sb4tiq8k6T7kjuUA87C/LphTBsslOQKzdP0mgeailNsn500pHSybD5XgV4o90a4RexzthSuWBxjJY4L56pXaEV+4YOB29gdtvcJDZlGYLSxdhMqZf2Ae9RmU0ZhfaeIYmpEaUDvClJuna81J0ZmD/txMHwc2T9xE8UP+YkC8d4CGQw2T92rBwxV06GHzhTb+/4I+Ni7qVneGvg2Gwe7Y6srCjXVMRLrBLvxFZlWk7knkwZydto7PT/q/XbUO18P467ESH5rm6n5QPvhvzWuNiT6k/2+sc4SRw/upJIoVAiANzKcKVXRbafN9zd/jDJWaOuCxHI5QUufjVytwvI3T2EUuR2FuzICJyH8t+ENZMM3Z/0pSksHgvjLYE0Uv8JjIOv5Vy3qlGB9xjJ2R4vOw3Y1WmX12/HZQSRnrZdvAyQwxw9x1X4Xd7wlgTVhHg3TFFZL7HT2jcZFnlPlDsq2OfbTxfDyHcvYZP2TV+girM8MzsPPYThPt6DjISMXxrUlk6hmPs45LBkN//4GArwaow== sidebar_class_name: "patch api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/update-experiment-group.api.mdx b/docs/docs/api/update-experiment-group.api.mdx index f50869dfb..ddddfc289 100644 --- a/docs/docs/api/update-experiment-group.api.mdx +++ b/docs/docs/api/update-experiment-group.api.mdx @@ -5,7 +5,7 @@ description: "Updates an existing experiment group. Allows partial updates to sp sidebar_label: "UpdateExperimentGroup" hide_title: true hide_table_of_contents: true -api: eJy1V0tv4zYQ/iuETi2wdtx0c/HNSd3doOg2sJ1DERgGLY0tbvRgSSqxYPi/d4akrIdlZ9vN5uBQ1PCbmW9e1D6IQIdKSCPyLBgHjzLiBjTjGYOd0EZkW1xIUCKFzLCtygs5ZJMkyV81k1wZwRNW+EMmZ1pCKDYCIoY/SaSHwYcgx+Oc8O+jo4bpEfMTQaKUgn8K0OY2j8pgvA/CPDP4lpZcykSEFuHqqyYz94EOY0g5rUwpAWHz9VcIDeK0/bnPZGGYNqoITaGAbXLlzCXHLjqJUFKR6UaAthbFPNvCSgH3NnjNCI4AJ5pnVs4qNLHQnqRhcOgIvoXzl10gyxm8ssYrjwyVuYhrFN9sRLhCo0N0hG+hAZ8V6RoUwqd8J9IiDca/jEb4JDL3NLqo2EOzGvpE/8HFUCjAMD916FqidcIkcC4BZi76dz7qhzYahg9wA/ONp2BAYTye9kGGD4gnInRKkMWSmxjXJ7nhme2BPILsBrnaDmqoGHhk2fp/YK+5etaSh/AdeEva0TLPtMu/69GI/vXVa4dMhqKsOos636mW5oZnEVfREbpTV7ac3qoipLjPd2vizqxiruNeAUdtz4uLxUTIl8u21t1HAI8i4argoelFVy0Wu0RS0G3NEK06w1ACs1VwVmjqiMiR18VSbsIY9Q/ZH1BqrOuNyIBFRJ2m4iZ3qQtH7IUnWBm+sZa24o6wJuYIVWjD1sCwMojuqszuKju+vzMgQAoks6rjuxKRbmBwpXhJyW4g1T0sE80YAgPRipu+pofkpPQmoHweGNQRNM6sy97IJVybVZpHduL8J+D2yTPw6yJ8BvMtbh4Tpp3sLbp6VbxwjOO5152O2kZrnW2011trtD1sS3DlQE+JgYyC+xQ8zqez1d1sOllMf8Pt+d/zxfTP1afpl+nMbjWwbXdZEE7Xtoqqbr3V1dWp8VY+tALdrq2WFx9csz8Je088z6Ws7yS9JfH2kHJ9rzGlkIaPo4+nfRlF8wKBv+Tm97zAMkapuiXjqZu+bn6PuAobxxzUC6ipUtgxbt6pl7czE7uLbneBRtJVJPSY00cBneBbmslBTRizjGniFBtTnEduPocUeTunx8FVHZqBDbK+2ovoQEMSwgJ7XGnHvE6Ficshl2IYGyNvuRbhpCCEpyUN3e574ArUUWBZo82JG+f+ecwjH7R/MgI/LxYPzEozjuJouQ9ANdnp5JreU4wvWPYtaqz4JT1WwEaMwj+rL9DTHU9lAj231nO3zON236SgASCyTW7N9rkxL1BC5lp4qzBBtIO6Hl3fDEa/DkY3xAGKmJTb3PS3I1darJsqXZManwA/5KvE808d6UomXNg5WaiENLsEbXZcn6B4buzabYx+kch+j+GGR5UcDrSNIVCUtkvfntdEFiZxJDStsQo2PNFwwdefZr6t/szOWVkNo6y0UwDvB/iEy2co3X34gIVRXTnfXbvT0rgwHy2gavwhqprX6ZY2J+Cb0WDhZkQlcdIf6xOTMARpLso2G9fDZHH3GaXX/uMUBw0dUvyVPlzx19KfWydtf7F7e5xK2bawJRQ4UPr7F5MvbEs= +api: eJy1V1Fv2zYQ/ivEPW2AnHhZ8uK3NPPaYlhX2O7DEAQGLZ4tNhLJkqckhqH/Xhwl27IsO93a5iUydfzu+N3dd9QGFIbUa0faGhjBJ6ckYRDSCHzRgbRZCXxx6HWBhsTK29JdiNs8t89BOOlJy1yUzSayIjhM9VKjEkuNuQoXkIB16CXjv1c7D+Md5luGhAQ8fikx0Bur1jDaQGoNoSF+lM7lOo0Il58Dh7mBkGZYSH6itUMYgV18xpQg6ZznvXEliUC+TKn0KJbW1+Hywc4eEhJwnkMnjSFGlEmzwrlH2cTQeA7ktVkdeZ5Eu+iQMh0aki6g6hi+hvNPfJC5MPgsWq8aZNyGWyVAXi6XOp079CkakitswZuyWKCHBAr5oouygNFvw2EChTb1r+FZxw202EMf+a/qHGqPCkb3HboeEiBNOZ4qgEmd/bsm69UhGvkSqwSc9LJAQh9gdL8BIwvG0woS0Byxk5RBclwbDbM9kDuQl4H1q8EeKkOpIlv/D+zZ+sfgZIrfgffAK8FZE+r6uxoO+V9fv3bIFFfDodjuheRH9dKUpFHSqx10p69iO73WRVr1nj2G+ELzTIas16CmtufF2WZi5PNtu/fdR4BUStdd8LF9iq5bmKDzGNBQEKk12z0i9ZrQaynKwIpovWh8iUJSmmmzuhB/4ToIhUttUCimLnBz83FZhZV4knmJoRHWdey4HSxlkkRRBhILFAUS071ts7ttHN+vDFUCBbLNfJ/fuVahhSG9l2sudsIi9LDMNHuUhGouqU/0ltYX/Aa4ngekC4TWnsW6N3O5DDQvrIoT5z8BH+48Ab8o00ekbznmrmAOi/2Arl4XT9Jreep1R1EP0Q72tuT1TQw6bo4tOK9Bj4lBw8m9h0/T8WR+NxnfzsZ/QALTf6ez8d/zt+MP40lcamFHdZkxTje2LVXdftt3V6fHD+rhINGHvXVwiqQW+6O09+TzVMk2StLbEq8PqVr3WlOqSuB6eH2syxMMtvQpfrD0py2NEtfD670kVwnc9Kn5e0Pojcyn6J/Qj723Xtz8IC0/rMwCQzhUgVbRbUnoCaePAt4hVzyTYU+YiIwF5rRAyqyq53PKmY9zegSX+9QMYpLD5UariockpqXXtI5jPhSasvWFdPoiI3JvZNDpbckI9w88dLvvUXr0O4OHPdqUuamPfxpzxwevH43Ad7PZRxGthSwpQ0NNAraTnXcu+D3n+Exk3+Immp/zEw1ixjj9k/0FevwiC5djz6311C1zt9w3KXgAaLO0MeymNqalQ+9s0E1UT+hDDXU1vLoZDH8fDG+YA2cDFTLWZnM7qltLdEulG1LrE+CnfJU0/LMiXbpc6jgnS5+z57pA24rbFCgkMKrlNrOB2GSzWciAn3xeVbz8pUTPZfvQyPOCybrfgNKBnxWMljIPeOasv0waWf1VnIpyO4zMOk6BvORfkMAjruv7cPVQJdsr5w/3XntpXZh3EXA3/hRX7ev0gbfaoBGjwayeEVuLI33c77hNU3R01rYtXB9vZ3fvIIFF83FaWMWbvHzmD1f5XNNv4yGjvsS1DeTSrMrYQlCD8t9Xky9sSw== sidebar_class_name: "patch api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/update-function.api.mdx b/docs/docs/api/update-function.api.mdx index 233ada0cf..9d1bd3bf3 100644 --- a/docs/docs/api/update-function.api.mdx +++ b/docs/docs/api/update-function.api.mdx @@ -5,7 +5,7 @@ description: "Updates the draft version of an existing function with new code, r sidebar_label: "UpdateFunction" hide_title: true hide_table_of_contents: true -api: eJzNV99v4zYM/lcEPe2ApM2660veclluLbClRZoeBhRFoNhMrDvb0iS5bRD4fz/Svx076d3WAutDIIvkR4qkPqp77oP1jNROqpiP+b32hQPLXADMN2Lj2BMYizKmNkzEDF6kdTLesk0Se2TDnqULWAzPzFM+DJhJYicjKM0GTBnWcMGeAxkC0wYsmCcCIk86WYfSBuCXZmd8wJUGI8jm2q8C+1x4RbGBfxKw7pPyd3y8556KHcSOlkLrUHqZ6flXS8fac+sFEAlauZ0GxFPrr+A5xNGGHDkJlqStbFTK1hkMlacD7gUi3sLKgLBHNMrE9AqL7KyKY3Z1BhziJOLjB/7r2Yg/DriTLiR5efJFjvClAEjTPBPSgE9W7fga9u38LfLkTYukpW0YZxLADS2MiMChJ0Te8xg/EKg83yr7HnBJbaOFC3DdyXLj5AfoFd7LUJntUPolVADCB/OvwZ6V+Wa18OA/4D3SjtUqtnlTXIxGnd44SChDHVYaobM3asd2svtCr67Oiu5fr0p2j4+La4S3787S+Xsg13EL1we4USYiCac6Dcm4jgd86X7SsHa33p1Ic4F8RCcU1q0i5cuN/En3bcsj8K+z02v8VjVcLjlepi+TP+9nK/y9/n2yvL6Zoyjfmt78dXu/nOH39Ga+nP29bCtNrybzP2arxWxydzNvinpqvkTf9hWKax+p1ezdYneLdKxBBx2ea2emp5Q9NTrBvzlTNAgYT/lx9LHLM6iqEuPBXLnPKol9hlo106DVZR87XSOuiUV4h1MWzMwYHMOX70JREVgrtn3Uktan7wmnLwVkIbY0bqoesJREnEKB8vM549GgyebNmJ+XRTnft8qVEt2DlxjpdtnsshG+UnZnQsuzwDn9SVjpTRLCeHik8XEoB2HAVAqPNdodZSU/+HHMKhO0f9ChY361XN6yTJsJVMezF6kvZxRZrklO1T0R2Y+4ydRP+ckUslpR4Rf1o2r2IiIdQre1Kio4YJsGg1VPoHqvMwEyok9pSG9UdpaiVe4SbC6trCxCrQ0uRheXw9Fvw9FlxsfKukhkrVoM//yKscYb8YDtqo7/Pz1zixo6eHHnOhQym22JCSngvM0f6oQO+LjNS9iaASaClPZ7bBq4N2Ga0jYW0lDz4/JJGCnWlF28Cr60tMbbtBGhhRNJ+mVRsO4HdizOYlPExKRPIkzoC5ffYNd5KqZ408rX2JsHkjtsvCWrYOh6v4ur5kuz5S1XKHhtuMzHRanRodraYuJ5oN1J3SYX3k6W0yvUXhf/AUXZA48b8UzXDX+zSiidsygqZHt7nFLxNskYm+eg9PcdPxXobA== +api: eJzNV99v4jgQ/lesebqTTMv12hfeWI69VtqjFaXVSQghkwzEu0nstZ1ShPK/ryY/CQn09q6Vrk/Bnvlm/M34G3cPPlrPSO2kimEAT9oXDi1zATLfiLVjL2isVDFTayZihq/SOhlv2DqJPfJhW+kCFuOWecpHzkwSOxlh6caZMuwgBNsGMkSmDVo0LwREkXSyCqUN0C/dLoCD0mgE+dz5VWKfi6jAweD3BK37pPwdDPbgqdhh7OhTaB1KL3O9/GrpWHuwXoCRoC+30wgDUKuv6DngoA0FchIt7TbYqIytMzLeQMrBC0S8waVBYU9YlMR0bhbsLItjtm04YJxEMJjDbxd9WHBw0oW0X558miM8FwBpmjMhDfrk1czvwL/J3zQnb1SQljZhnEkw5aCFERE6NBYG8z3EIiKg8nzL7DcHSW2jhQuAt1k+OPkReoX32lNm05N+CRWg8NH8a7CtMt+sFh7+B7wFrVitYps3xVW/3+qNI0LZVb/PSifg79WOTbK7Uq+uzpLuX6dJdo9Pb9cI79+dZfCPQK7zFq4LcK1MRDtAdeqRc50P+tL9pGMdbrU7Q3OBfMImFNYtI+XLtfzJ8E3PE/Bvq9Nb+lY1XL5zukzPwy9P4+Xz8MvdH8PZ3f0EeLE0uv/r4Wk2Bg6j+8ls/PesaTS6HU7+HC+n4+Hj/eRwq6Pms51G+4bENY/UaPZ2sdtFOtWgvKVzTWY6StlRozP6myvFgQCnHK77122dmaJVifFwotxnlcQ+u+5f10qTcrjpUqe72KGJRfiI5gXN2Bhl2M2HSFSE1opNl7Sk9ek70umigDzEhsZN1QOWSIzQBcrP54xHgyabNwO4LItyuW+UKyW5Ry8x0u2y2WUj6YLdhdDyInBOfxJWesOEMOYLGh/H+ygMmspgUaM9Eiv5wU9jVkzQ+lGHDuB2NntgmTUTiQswdgX15YwizxXtU3XPZPZPwmTm5+JkBlmtqPDT+lE1fhWRDrHdWpUUHKnNgYJVT6B6rTUBMqFPaUivVXaWolUeE41GKyuLVGuHq/7VTa//e69/k+mxsi4SWasWwz+/YuzgjXikdlXH/5+euUUNHb66Sx0Kmc22xISUcN7m85pQDoOmLi04BMo6MtrvV8LikwnTlJa/J2io+RccXoSRYkXszvfgS0vfPgzWIrR4hqRfpoXq/spO5VksipiU9EWECf0CDt9w13oqpouUl6+xd08kD3jwlqySoev9IaEOX5qNaLlBoWu9WT4uSouW1NYeQ89D7c7aHmrhw3A2ugUOq+I/oCh74IERW7puYptXQulcRQf7fG0PoYg3SabYkIPS3w8/Fehs sidebar_class_name: "patch api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/update-organisation.api.mdx b/docs/docs/api/update-organisation.api.mdx index 8f64ef84d..86f397ca4 100644 --- a/docs/docs/api/update-organisation.api.mdx +++ b/docs/docs/api/update-organisation.api.mdx @@ -5,7 +5,7 @@ description: "Updates an existing organisation's information including contact d sidebar_label: "UpdateOrganisation" hide_title: true hide_table_of_contents: true -api: eJzFVt9P2zAQ/lciv2yTClSMvvStICbQtA0Be6oqdE2O1iyxPdvpqKr877uzU5LQUE1obDxQx77f991nb0SGLrXSeKmVGIvvJgOPLgGV4KN0XqpFou0ClHTAIu9cItW9tkX4onWalxkLpVp5SH2SoQeZu0HiPPiSfkFlCWSFJAvektYKE2O1QeslukMxELwO1i6zpwC+tVySiMWfJTp/qrO1GG8E+0LleQnG5DINckcPjlPYCJcusQBe+bVBsqnnD5h6stM4jmZK5e36LtUZtqQpTEpIVANR53RH1mS+V8Isteq3EVLfY8FRZNr2H4UK7h4NBKqyEOOpmKRcT9q4VLBdXqHihnxez8VsILz0OatSQW+iuapqdneLfR0rfVZXuKpY3ICFAj1aCma6EYo+SFlm5E0yaAz4Ja136t6kwg2UFqnB3pZYzXjHGa1c7MTxcMg/fVBsB5eQXLJVFIO/hQNKpC/mmGZv0/8BblKLlH12N1+/DlZvg529eN2GDL7PbyQN2uGuHnhJxSWdMjT5dTq9pemAbdqpUyfCToUHEcyh40+16wTX8TrbP0ERn90ROhme7CKcRHVpU/yq/SfCVJaQVINv0hr1zcUl2bUK8hu0K7Tn1mqbjN5kMAp0DhZ9+GxxSE84fSVgDVgwgYjOSH8BRS4KFqOyEsssdRYpJWVOCdQyFkeupLiMdjIk0r6R3NFGZpUIyCyt9OvAUa6Qfrk+BCMPl96bU3AynZRsazqrBrvnCBbtk8CssXbDtYrleNnmU314n0LpNuzi9vYqCdIJkDilWjdky5msOefzMGAvR/YnboL4Pj9BIHSQ4XDd3Kznj1CYHHdvxmYenxHb7kHNZ81Bh6ea7S2LtHZqwtryUsV3y70OSddIu2ljgFQIbi6mfjw8Hh0MPx4MR6xHIr6AgPT6qopTmjx7VXTK13pV/I9HUN1Yj4/+yORA1yoTnQ3kHmdgKtyz/DtTQN9jIjFC7pLSZ/HNhjCF321eVbxNfbY8G7RcgZUw55rSpGRkgdY0dPeQO9xTlvfXNbF+SF6KuN4ExZy6grzkL1r+wHV8MVQ0fWKJkBEG2Xs8qIni4JbVG8Ud7uLJjRqTNEXj98q26eRqcnt2QdLz+gVZRGBb+MWvS/ofotQmlpIEwt5G5KAWZaBAEY3y3285RO5p +api: eJzFVlFv2zYQ/ivCvWwDmMTIkhe9pUWHBsPWIEmfDCM4ixebnUSy5CmNIei/D0fKsRUrxlCsm19MkXfH43fffWQHmmIVjGfjLJTw2WtkigXagp5NZGNXhQsrtCaimPwUC2MfXWjSV2FsVbdajCpnGSsuNDGaOqoiMnIbVYFWF6gbY03kgGyeqPDBeQpsKJ6CAhmnaNf6JYFPe1uCgkBfW4r8zukNlB3IXmRZhuh9bapkd/YlyhE6iNWaGpQRbzxBCW75hSoGBbuNc5jWctg8VE7TnnXkYOwKegXDmR6oQVMftfBrZ6djpKMfiRCpYhemlxKCh0sKyLYNlHO4qgRPUHBtcTu8ISsF+X2zhIUCNlyL66ewusvh+n43ewj2bUb6/YBw34u5x4ANMYUI5bwDi404Gw0KjJDGI69BHeK+O4oU0ATSUHJoqV/ITPTOxlyJ89lM/qaouJ9ccT6bFVtHUP8WD4yezDkfc7Lo/wFvqkDIpB+Wm++j1Y/hzlG+blNGnto3iwaUIFU9YdOQ+LSpyN/nMwnNiGzzEU6jDEcIq0zmVPEX7EbJjXZdHO+gzM9xC13MLg4ZfkvRtaGiPx3/5lqri4vZxY7fvYLLqb64tkzBYn1H4YnChxBcKC5/SGM0FCOupvi5pyET6UxBIB64EgGBUUv/gRZX1IjZQkFDvHY6S0olmpKkpYSz2HoK3kWTDrJ/I8WzzugeEjPbYHiTNCo2htebU/TmdM3s32E01VUrseaLXh2uEwYKLwaLXbQ7wSrD8XbMF3xkHtSrgn28v78pknWBLa/J8lCQrWaK51LWU4O9ndk/2SaZH9snGaQKCh1udzfrh2dsfE2HN+OuH18J2+HCoGe7hZFO7aa3KrI3MwjWVpd6uVseXTr0wLS7fQ6AgicKMR/9fHZ+eTL79WR2KX7eRW4wMX24qnKXFq9eFSP49l4V/8cjaCgs0zOf+RqNTUIXkrjnHphDfHX+UReAgtJo6aG1iyzmXbfESJ9D3fcy/bWlIL2xUPCEweBSMJ13oE2UsYbyEetIR2D5+XYQ1l+KtzIeJtGKpj5h3coXKPiLNvnF0C96BWtCTSHtnhcGoTi5F/ed44F2Sedmj6uqIs9Hbffl5Obq/v1HULAcXpBNJnbAb/K6xG85S+czlGWX5zqo0a7aJIGQg8rvbzlE7mk= sidebar_class_name: "patch api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/update-override.api.mdx b/docs/docs/api/update-override.api.mdx index 0ae09f5e6..dd871150d 100644 --- a/docs/docs/api/update-override.api.mdx +++ b/docs/docs/api/update-override.api.mdx @@ -5,7 +5,7 @@ description: "Updates the overrides for an existing context. Allows modification sidebar_label: "UpdateOverride" hide_title: true hide_table_of_contents: true -api: eJzlWNtuGzcQ/RViX9oCkuy68YvfnDSB06KJYTvog2EY1HKkZbxabkluZMXQv/cMuTdp104KJ0DRGogjkzOHcz0c6iFR5FKrS69NkZwkH0olPTnhMxLmE1mrsS8WxgpZCLrXzutiKVJTeLr3M3Ga52btxMoovdCpZBBhFq2m+CTzCvrrTOckVlIXHv8YgfFrlB8cf1Kald0smSSmJBug3qrWovc1IrYt/QVM/9KoTXLykASUwvNHWZZ5bcXBR8f+PCQuzWgl+ZPflAQ8M/9IqQdOafkgr8m1MPcBxhT0fpGcXA9VvPY5L2g10MdSd4bzFk4m2220VlvC7jXL3Gwnj8M2Njxh276qVDFwMj/vq+Dg3bxeUGnJIU69YMtcQMKT1VJUjlRIc30WkuXTDE7MxO+0cULRQhcklF5R4TjLhVwhsbJQTY5dSalebGJmG1ifSUBVzos58k9+1vP2VWPHIE6Nvzfbmx1xXnyr4ASKjWwCrabQnhMaAC/0srJ19bZFH2y3VOYyJfZfVrnvCpqKNlRd9Qppo5sxaLYJOov0zrjjzV7oWKvfcAIVL/uhaqrfJfvWD0pukqSZLJZ0a0m6UYn9YO+IT3pF2Aa3l4XYjXUuGrMuYkcCegfb24qwUEqLWkE9uNBTXDgAup/GmEy9XDocpjkVGUmFxE6GXdsZ30MwdjkNrfiVykPjemBrY+9ciVw/A++GV1yJSoiNe3R4yP+NUWwTOwEZ0Sg14X8+nY3S0SQJBfff5ZH/JyE0UrePJH1Nepn54da+3+dWGwR8I6JCzKU3cBVJWHHagk0WXcGXfOMtsdHBj5k4gyJ2IwAiJu9IwOWUwNoctMrW40PPeUTE5FXQ/xb0BgnseVK3ctRnFOeKdxLuwqlHIfZ15ptRyFw6fxunnH8IvKs5Cv8lQu7c2bFzN1STOJQMDB2xoNclu8XT8ENbMgPi7xg/Etarmq22gfpfHL4Y0h1ETWVTemf8G1OhxiHVER60jsdI8i1wLTr1kiyOfG0tKOX4uzAl6MfJJY3npfF+xJzxEBz/fDR05k+aZ8bcvZGYgpWAyDdxYz9gilUbmgqd2szRwlVpSuhBJeZV3FtHk0Qq81wsgmEzcYWNxjIxx3wdehwTe3wPBBTnFlXOUiC/SQuX5ppZzWWmyhVztFxHDoMpzVGF8d0jQWnFCzhgVebgl9kgL0x5w1Be7drRuRgtqk8MVmTyE7wg4j1f2QLer7XPxNnV1TnfuhPh+G7J9WfsSOZfURUcZHVg5Vr8dvn+nVAmrXBT+RgbFEaVAopEbpaaQ8cRsjFkyjFX7sQdL5uCSQF2Vr7kUAE9Bk2HRxPl8ehf62OE00yTPsM2Pi7xaKJQ+vx3hohCOrXGQRnOakSuO8xF79DmC7KMVZ8JvZLwrtqnmRDfXoPvFOlYcXM78KwG3Xr+E3/IAq3DljMS7rnM8JOt5DufEyp9hj8P6pvioL1KeaiitOLLJsyEbgXTNzNZ6lnmfflSOp2eVqx8HR5M+/uEUNhW4KZDu+RuifXzOGbbSrw+aKRQHkFaSIjzayPWbDMJsuac95m8nrDsa44J4k+dEwRC7pgQLrqn7+t7yZ2z9zzkCaB3bfWmocGU095bexdqT10XCxP8qEvkskKxlcbp2kyguwh2dHh0PD38ZXp4zHoQ8SsZ6Kser+PtIXqv+L1rvmXBf8U3EHXiQtFi3NNhtKxszpbGor4eeSc5boIMvvP2wwNqhD7YfLvlZeTNcq3f8B0L1plzQLm4m2cGt4HSjjeQw4XMHT0RpMdsxCA58raqp/4k4V76+kN+vKjp4ifxpfPal9j3P6r/Tts5LQrUjDW9YoxOYnC1dhqnuE1K/6Rsn9zOT69enUF6Xn//xDSOZVwZ/N0UfofsmOBkIKKw9oAxrFhWYdBIIij//A2tkO2l +api: eJzlWN9v2zYQ/lcOfOkGKI6bJS9+S7MW7Ya1QZJiD0EQnMWTxYYiVZKK4wX+34cjJVm2nLRDW2DY+lKF5P367u7j0Y9Cks+dqoOyRszEx1piIA+hJLD35JyS5KGwDtAAPSgflFlAbk2ghzCBU63t0kNlpSpUjqwEbNFLwj3qhjwsS6UJKlQmoDKsgfW3Wl54/pKKhf1EZMLW5KKqd7L36EOrUWTC0eeGfHhl5UrMHkXUYgJ/Yl3r1ovDT57jeRQ+L6lC/gqrmsRM2PknyoPIRO3YUFDkezUPUY019KEQs+uxSFBB84KSI3klBzZ8cMosxHqdvFWOpJhd85mbdfa02s6HZ3zbFUWZgEN9PhRZZzt5vaDakScTBmCjhtypQE4hNJ5kTHNrCyoMeanMYgK/08qDpEIZAqkqMp6zbLAiD2hkl2NfU66KVcpspzaUGKBqfIA5QUVhMoj2rPNjhFMX7836Zus4L76TZIIqFDmxzkRXaN8CzZk1hVo0rq3evuij745qjTlx/NjosCloMj1Um+oFdCnMBJrrQOcjAxt3vDmAjqWGDQcSAw6h6qrfi13vRyWXibxEs6BbR+j3ntgFe+t4NijCHtxBFlI3trno3LpIHSnW27qDa2idiRodVhTI+dhTXDhiJh4OEiYHARdeZEJxKkpCSU5k467dOD/QYN3iILbiVwqPnRsoW1p352vM6Rv03fCKr63xqXGPplP+bx/FdtjB0XQKnVAH/7fT2V46ykQsuP8uj/w/CaE7dftE0pekFmUYb+3Gfe6UdSqsIAmkXAYLkpu34rRFn5wkx5d8Fy2x0zGOCbxVi5Jcq8BDwDuC2lFOkgyD1rh2fBgE78hb3UT570FvmcgdYSB5i3tjLqyreEdwFx4EVdFQZr7aq1KjD7dpyvmHircl96r/EiFvwtnycxuqLA0lI0f3eDDoku3i6fihL5kR8W8YPxHWWctW60j9x9PjMd1dkLeNy+m9DW9sYyQcT483hLfOxMk+knxnAjmD+pLcPbnXzlkHJz+EKSvyHhe0Py9d9Hvc2Q/BycujcTB/0ry09u4NKk0STl4efZcwdgGTLNrRVOzUbo4G3+Q5kSQJ8ybtLZNLkKPWUETHJnBVUu8ZzK1cxR5HZdJ7IGrxvmg0n2p0yHp1uVbMar60jZbM0bhMHIahN2Vs2DwSpJK8ALmtak2BJqO8MOWNobza9mMTYvKotRi9KPGeYE7Ee6FxhiQsVSjh7dXVOd+6GXi+W7T6iyQg8y80hkGWhw6X8Nvlh/cgbd5UZELCxgfX5KFxBNouFEPHCLkEmfTMlVu4v/BgmBQ02CbUDNWqpgSaio8m0sn0r60Z8IppMpTK8+dCE1Asff67RMenc2e9h6rRQdV6YMyn6KQqCnKsq7XpS6zJT0Y0E/EdNPhWke4rbm4HntVm190sDn+gwQWx56ypolBafrLVfOdzQjGUYiYO25visL9KeaiivOHLJs6EvlKhXE2wVpMyhPoVepWfNix8HR9Mu/uEjlx/4Gaj7ZK7JdXP0zr7VuL1USPF8oinAZtQ8msj1Ww3CbLknPeZvJ7x7GvMxOPP2YkHYu6YEC42T9/XD8ids/M85AlgcG0NpqHRlNPfWzsX6kBcmcLGONoSuWxqcrX1qnXznpxPyo6mRycH018OpicsV1sfKoz01Y7X6faAwSt+55rvWfBf8QtEm7hYtLVGFUfLxmn2NBX19Z53kucmKK0PvP34OEdPH51er3n5c0OOa/2G71incM6AcnF3zwxuA6k8b0gxK1B7egakp3y8o9Wet1U79QvBvfT1Rn66aOniZ/iSvf4l9uNNDd9pW9bSgZaxDq5Yx+bE6GrdSJzmOdXh2bNDcjs/vTp7KzIxb39/YhoXM+Fwyb9N4TJlx8YgIxHFtUeh0SyaOGiIpJT//Q2tkO2l sidebar_class_name: "patch api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/update-overrides-experiment.api.mdx b/docs/docs/api/update-overrides-experiment.api.mdx index af4e260d5..5df6d5ca9 100644 --- a/docs/docs/api/update-overrides-experiment.api.mdx +++ b/docs/docs/api/update-overrides-experiment.api.mdx @@ -5,7 +5,7 @@ description: "Updates the overrides for specific variants within an experiment, sidebar_label: "UpdateOverridesExperiment" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "patch api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/update-secret.api.mdx b/docs/docs/api/update-secret.api.mdx index 31eec38e9..1c08aff22 100644 --- a/docs/docs/api/update-secret.api.mdx +++ b/docs/docs/api/update-secret.api.mdx @@ -5,7 +5,7 @@ description: "Updates an existing secret's value or description. The value is re sidebar_label: "UpdateSecret" hide_title: true hide_table_of_contents: true -api: eJzNVl1vGjsQ/SuWX3qvBASlzUve0qpXzUtVEfoURZHZHVg3u2t37E2CEP+9M7Z3YWFBVT+kywMY+8yHj8+MvZE5uAy19drU8lp+tbny4ISqBbxq53W9Eg4yBP/GiWdVNiAMij2biZgXkFa0EwhjqDNcWw+5eNG+EJ6WswYRai9eDD45qzIQCUQOxBOsJ2IGvsHaiUq5J7IM/iZyJI0FVAy7zbvs7kI+tIjwvQHn35t8La83MjO1pyg8VNaWOguGF98c72wjXVZApXjk1xbIm1l8g4z9WOQwXoPj1RB7D+Y8EgsE6zP1GV6ELZWmmK8+EeBNuzEiMBfOG4SJuF0KivCsc8hHxElZikVHQMtSyxCTIbcHsQ5TofWsUPUKHhGUG0RsIzsagXi7P4A/jKTXvoQDRmeRzg+Jxm3ficcGaMIqVBV4QOLqfiNr+kNuws9IaibGKl/Q+IjuXfKHTjs3r2ODq7HOW1cFqBzwl511cvsNfw8846ypXVTH5XTKP0NVE1kUhBCtCYX6ZVX2Q8ySRxIVNhkVC4glVWKsTdGViZuIlEZQJBUyAWt4BqScuMRIcMmuQe3XkyP5R/YGiPldSRKC1kjxj4v12WXlh6qPsq54RTLVY68pS7IplfOPlcn1Up923Af9vPuzRdTLt7e3PlUD4QfSHkXeT1ZmPPy90qTc3k3fHUuRoKbBDD4b/59pqAkRaidHsroaEvAt+cValXeAJJWPiCSRqz+k4768KnBOrYYUtt3tfSCdIQrYQq24EcnIk2MCqTsVJo+NKONOFBrStbyIteIuNkz1lrtAKoLQyVxFfXg9UVZPCu/te+V0dtOw5f0Dd5XDdaDKwg7wsPN2x0zEzZ722e2e54+K/dN8/kUEtFAEp/0mutvWxZYLXucTPZPZz4QJ8HNxAiCcDx/2bHfpfnxVlS1h79I8dVl20wdNYq9Idb00IeGkgbuGVGON0ykfEoKLzi6nl1fj6dvx9IrtCOIrVe9aV6oc0T0TDhpXJ+T/3WMnnRU/KC7C04L312DJWUcR38skYkJftx2jIAZ4abMhScBXLLdbnqZjQpY2DZ8VarVgWknouXY8pgpZqtLBGX7+maXu9684lV2aVDW3sFYENKR9ts+CLZVPe/P+8fgxzt67ocuBa/avhNp/VfSiRUBqUOM5+9ghjnrmzuImy8D6s9j9tvblZv7hE6EX6dlL1wgboXrhJzF9hwMwYZOhC4W5Dd059aoJrVdGp/z5AcgWM6o= +api: eJzNVktv2zgQ/ivEXLYLyI6RTS6+pUWL5lIUjnsKjIAWxxYbiWSHIzuGof++GL38Noq2C6wvFsh58eM3H2cLBmNKNrD1DsbwLRjNGJV2Ct9sZOuWKmJKyH9FtdJ5icqT2vMZqmmG7Y6NinCALqVNYDRqbTlTnKFKSyJ0rNaeXmPQKarWyHqnXnEzVBPkklxUhY6vaJp4Q0jAByQtZo+mr+6prgcSIPxRYuT33mxgvIXUO0bH8qlDyG1aO958j3KyLcQ0w0LLF28Cwhj8/DumEieQpGGLUXbr3Htmkcm6JSRHSH3BtQq5to7xjVsA2HcHU9oZFdkTDtXjQgXyK2vQJGpt81zNewA6lDqEBAyojnIdl1IlkGbaLfGFUMezFlWDjiU0MH4+Mp8lwJZzPEJ00sD5oYWxOgzCVGKVQNCkC2SkCOPnLThdSJj6LwErwATNGSSncO+KPw7ah3kbeFoOrOlCZagN0i8H6+n2G/FmshKDd7Fhx+1oJH/nuqZBUd2ORqpzgeTXWXmYYtJGVJGpTLkkVAtPbW+qvk3iULVl1IyMShMqhyskRXWLoen8SrK8GZ7Qv0HvDDC/S8kEUkLNaF7mm6vbms9138JTITsgUA/YFig+uY78UnhjF/Zy4EOjnw9/tYkO6j042yFUZ9KfKTtpcL/Ymc3l77VmlcDd6O6UihOMvqQUv3j+5Etn1N3obkfHKoH7cwR+dIzkdP6EtEL6SORJ3f8hHh/Sq8AY9fIcw6rd2c+Ucw4C8dBLESJocIoCYIGcedMIUSpKVAvSGG6aXok3W4G6EhVom6BWslhYzjZDHewwYw7vdbTpQymezzNRleN91ITUG8x20Z4Eieawl2P2p5f1k2b/PJ1+VbW10iVn6LiFu5Mu8ZzLvtzolcp+Jk1tfi1PbVDfj1z2ZPfofnzTRchx79G89Fj2y0cisdek1i18XXDLgacyIAUfbVvPCik2wW5Ht/eD0T+D0b34BR+50G4nXW3nqH5MOBKunsj/u2GnvSsZKG7q0ULOV1IuVTckfoaWxJDAuFOMzEeWre12riN+o7yqZPlHiSTUniWw0mT1XGB93oKxUb4NjBc6j3gFn3eTVv3+Vpeqaxe1EwnrSAAJvOKmGwuqWZV0L+8fz9/k2Zsb+hqkZ/+TVPtTxUG2xqAVqMFUYuwsTjRz5/GQphj4qu2+rH19mH74DAnM27G38EacSK9lJNbr5gJ8fchaheq1LeTaLctaeqEJKr9/AcgWM6o= sidebar_class_name: "patch api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/update-type-templates.api.mdx b/docs/docs/api/update-type-templates.api.mdx index fd23b8810..7ee5972e0 100644 --- a/docs/docs/api/update-type-templates.api.mdx +++ b/docs/docs/api/update-type-templates.api.mdx @@ -5,7 +5,7 @@ description: "Updates an existing type template's schema definition and metadata sidebar_label: "UpdateTypeTemplates" hide_title: true hide_table_of_contents: true -api: eJzlVktP20AQ/isrX9pKCUS0XLgBooVLiyA9IYQ29iTe4ni3s2MgivLfO7Pr2HmY9AXqoRxg8c7zm5lvdp5k4FM0jowtk6Pkq8s0gVe6VPBkPJlyomjmQBFMXcFXb7zyaQ5TrTIYm9KIHktnagqkWVerx9wUoByCB3wQfUNemQxKMmMDGIQrryegcnZgcbaX9BLrALXYusiaKIbsd1i79SyD8L0CTyc2myVH8yS1JbFROWrnCpMG/f1vXhKZJzFKOUn8bNSOvkFKbMeheCPDRuvbu+eFdZaFHHVxuaq26G0A9wlKQJOqe5j1H3RRgYomlCesUqoQOGnI1NiiGheM7YhBCnghBKxKCvErytFWk9xWxEdQx5cXgg8ZKiSuLzGuTfdN3OyNIZf7NNflBO4QtO+UWERADQIjfrMh3luD5bb131GZq1iW07oci3XLnD3wB6dRc4cAMng386Tkf9hacBLOvcQIik5TzuetcrRpbVpubD31LU76JluaykFngH9s7NHivXc6hb+wdytfvLOlj612MBjIn66JW0NUsaBaarLHl+z0mGBH7P/rHLAE3xFkd6PZzmtN29e9hPOYyk0iVeyTYXRZp9Ce7qY2E8b7G83OkH4yuSvxruW2DlVHjB3Oe2sj+jucEJt3hRQ46g+DD9v9z6K2whQ+W/poK94NLNU2P2sddk3NBdtFbsZr3jGAZ4jcToevMjVT8LKsuuuwhKAjnC4IRENPhAITgUu1243hZHrMbRZJMBUWDGR4lOyLW78/byqxEBKCtEJDs8Cmfmoon+1pZ/ZyIneivUmPK1G+uRVS27wHjYCNwG1r7VowiWk/b7PBQb4nm/N/PhxeqiCtNIvL1o/AL5lTNEdyL7XdEdmvuAniu/wEgVApKftV+4A4e9IMfVPVlvi2CK2Z1w0iWWEIU45tsFR3w3XF/eOsN3U83BI+GjsYHBz2B+/7g0PRYxGa6tCN9d6Jo6Q2mmOL5JrW/mfvtbo2BE+0z354Q3I+FRYSXezbmyAjwR+1HMK9lnPScjufcxfAVywWC/nMlUHpZj4+aDR6JEhyb2fGy5nnYqwLDzugeHtVk+I79VyA9UddCrOF7cT/8ZGX1dprZMFjs1z4Lx5EdLbyXGkCkVl9FVerj5k1b1Ggpqi+tN2KxBZrthrHaQqOdsquMtrl8fD0nKVH9dOdV4wooX6UZz3/DlWwIcnAPuHbnPdROakC+SbRqPz8AId8eG0= +api: eJzlVk1vGzcQ/SvEXNoCK1tw7YtuTpA2vrSG7ZwMwRgtR1rGu0tmOCtbEPa/F8PVt9ZK2yToobpoQc7H45uZRy7BUszZBXG+hhF8ChaFosHa0KuL4uqZkUUgI1SFEoV+iibmBVVoLE1d7dTPYG1NRYIWBc1L4UoygSkSz9XfSTTOUi1u6oiTcRNxRqZwUTwvziADH4hRY93YDYqHRaCHVdoIGTB9aSjKO28XMFpC7muhWvQTQyhdnvzPP0c9yBI6lPql+GEEfvKZcoEMAms2cRTXu09vG6O16YxY3u66tdkBcb9TTexy80yLwRzLhkwXwkThJpeGyTSRrJl6NtOSXt2kJJP4Ykpc1ZLwGynYN7PCN2KkIHN9e6P8iJNScf3Z4TpMv8EdhV090/28wHpGT0wYey3ajlDHZGH0eGCe7dEy3ubvqcxdV5b3q3K0+5GFG2ozCMhYkRBHGD0uocZKo6Uk6TsDpywGlAKy49ptj3UYeRPrdeB5NnB2HaogtMT/OtiL5+cYMKdviDfWlRh8HbtWuxgO9a9v4vYYNRfDoVl7QvZdO707YA/2/+scZJAzoZB9mixObqMcb2cw9VzpDmgVB+IqUp8SozxV3qrifYtnL6SvTO4O3r2z7VPVg7EnebY3ov9EE7rm3RGFNoPL4eVx/99R9A3n9IeX33xTW3M5vNw2f5vBVd/U3NRCXGN5Tzwn/sDs2Vz9kKmpKOpl1V+HNQU9cPooUA+cqQSC0mW2t9s4g4qk8LYTwVxVMInhCM41bTxfbirRqghR3rCTRVLTWDkpFmcY3FkhEt5hdPl1o86PYxW1w31CJt4YjLfR7pWT7thvx9zwoOtwOP8fHx5uTbI22Eiht35H/Fo51XOi+1rbE8j+TppkfipPMkiV0rLfbR8QH16xCiUdPwCOBG0zrwdCsqMQrp76FGnVDfdNIA4+uhWeOXHsgl0ML64Gw18Hwyv1Cz5KhakbV/dON0rmoDmORG7T2v/Ze21VG6FXOQ8lulrP03Cp6Lq+fUw2Cn601ZBxBoWPorvL5QQjfeKybXX5S0Os3TzOYI7scKJMPi7BuqjfFkZTLCOdoOLnu5Uo/mLeArhaxFqVLd1OMALI4JkWe6+Rdtxm6wv/u4Poku08VzZAdFZ/SKrdx8xets5gJVEDbbsdiyPV3Hpc5zkFOWm7q2i31w/vP0IGk9XTvfJWnRhf9FmPL10VfDpkUp+0toQS61mTxBe6oPr7C4d8eG0= sidebar_class_name: "patch api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/update-variable.api.mdx b/docs/docs/api/update-variable.api.mdx index 668a2cdee..1c82e2d00 100644 --- a/docs/docs/api/update-variable.api.mdx +++ b/docs/docs/api/update-variable.api.mdx @@ -5,7 +5,7 @@ description: "Updates an existing variable's value, description, or tags." sidebar_label: "UpdateVariable" hide_title: true hide_table_of_contents: true -api: eJy1Vk1P4zAQ/SuRL7srpbRi6aU3QKzgskJQ9lJVyE2mjSGJvbYDraL8951xvttQoQU4UNd+8+nnN81ZCCbQQlkhUzZjDyrkFozHUw+2wliRbrwXrgVfxfDN4DLOwPc6Nr4ntWf5xpwwn0kFmtPuTdj4+lNZ47GGvxkYeyHDHZvlLJCphdTSkisVi8CZjp8MZZIzE0SQcFrZnQL0J1dPEFj0ozQFsgIMnbqcOjBjNWbNCr9f2sB5EPF0A48auBlEFGXKQgOWs9iDL31mhY3hoNC7ssrLqrqi78bqDHBDcc0TsKCxhEXOUvyCjtyHzwTdhOI2wvVBF9r09502brYjqTcjEdauIuAh6P929ir1s1E8gA/4W9KOUTI15aWdTib0MUS+uo8eYrzaCIN9El3KsgYy/joeIQLPLISPq93RY24Pj322ljqhE0bdGVmB+aNNzI19TGQo1uJtx33Q+90fZX4v315t/VYNhB9I269ZX/b/yLMqmdB5V5jl2eTskEcIlZkO4Le0v2SWhh6iWiah1XSIfTfoV6c8vgf9AvpKaxS26ZdQMAFj+GaIa0Vb/UA6Qy0gC1RfuqW6U4aaiOISybDUkYCExOnJjI1rNTfjnBpf0DOGINPC7pwUmUTYaHfClTiJrFUX3IjgPCPbxZJkYf8cuAbdAJatt3vqRlnw2z6bDtD+Hn9m7Ho+v/Uc2uMIx5qrltfaQ5YrOqdbPZLZe8I4+LE4DuDuiC78rh1mV1ueqBg6w6h9Xf1IzfaeZHSerEjX0iVc8eA+Q+YoaUSVD5LBlM5OJ6fT0eTnaDIlO4TYhKetxFXvx+sM4D0ha+j8wbFf9dbC1o5VzHFGYD6ZjilGSbsFa2iH+JlLEKkSYc50mOd4ifCg46KgbWysJjIu/cbMUTMUhtbI6jWPDRyp5/tdpV4/vLfyqzZ5umu0Z8Zw+Qy7ehIXSPh62H16/DJOZ1Q3OdAr+5JQ3UHei1YCKlkZzclHizhQutbiPAhA2aPYrhTdns8vrxG9qn4A4hggI81f6cch/ncXIF2RTjfcXo4zI91kTjBZ6ZT+/gEAU7l4 +api: eJy1Vktv00AQ/ivWXABp01qlvfhWEAguCLWFSxVVE3saL9i7y+64bRT5v6PxO4kbIaC+2Jr3zH77jbeQUUi9dqytgQS+uQyZQoQmoicdWJt19IBe46qgVyF6wKIiFU18VGR9xLgOJ6DAOvIo0s/ZEOt75w0KPP2qKPA7m20g2UJqDZNh+UTnCp02rqc/glSyhZDmVKJ88cYRJGBXPyhlUOC8JGJNQbRNTROzwF6bNdRqt7UZfZqjWdOdJwyzFnVbsvaUQXK7Z75UwJoLOmj0qu3yfdddvRuGfUW1AoceS2LyAZLbLRgsJVDzUqDlJBxyDupwCmP5+0GHME8L69cLnfWhcsKM/F8He7T+Z3CY0j/EW4okOGtCe2hncSyvOfD1c4zO4jjqnUD9L7i0bc1U/HI4UpB6QqbsbrU5qkY+VCu4t74UDch0FqxLEp8CA9+VNtP3+vnAu0Z/Hv4o8nfq3eltd1Qz6WfKVj3q2/kfuVYtEib3qlZwHp8f4uiKgq18Sl8sf7SVyaLz+HxEUq3gYg59nw2TN1hck38g/8F766OLF4FgSSHgeg5r9dj9TDlzIxAPXAuLQD+pIEMsiXObtTySCpE0fJLAac/m4XQrg6/lGlNaec2bhopCqTnfnKDTJzmze4dBp5eV+N4uhRb29YSe/GCwHKNdyzTahp+POUxA5Hv4SeDTzc3XqLGOsOKcDHcj77lHPFeil1M9UtmfpGnMj+VpDJozkgO/GpfZhycsXUGTZTTert1Mg3iPMiZXVpt72xTc4eC6cuSdDbqr54F8aIOdxWcXi/jtIr4QP2cDl2hGiuvuTzRZwHtENsD5H9d+N1umJz51BWoj9VS+kBwt7G5hgB0oSJoClwpyG1iU2+0KA33zRV2L+FdFXsC4VINbA81MB/nOILnHItCRfl5fdez1Jnquvk6IZjNwTwKg4Cdt+k1cL2vVL7v/nr/NM1nVQw1yy14k1XSR72RrDTpaWdxIjNHigOlGj8s0JcdHbadU9PXy5v0nULDqfgBLm4mTx0f5OcTH9gBs02TDG41sCwWaddUQJrRB5fkNAFO5eA== sidebar_class_name: "patch api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/update-webhook.api.mdx b/docs/docs/api/update-webhook.api.mdx index e38dc1f7e..44cda5fa3 100644 --- a/docs/docs/api/update-webhook.api.mdx +++ b/docs/docs/api/update-webhook.api.mdx @@ -5,7 +5,7 @@ description: "Updates an existing webhook config, allowing modification of URL, sidebar_label: "UpdateWebhook" hide_title: true hide_table_of_contents: true -api: eJztV1tvGjkU/iuWn3YlSGjavPBGW9pE6m6jhHQfEIrMzGHGzczYa3sCCPHf9xzPHSYo24tWWpUH8My5375jdjwEGxipnVQZH/N7HQoHlomMwUZaJ7OIrWEZK/XIApWtZDRgIknUmgipCuVKBoJkmVqx+9tPAwZPkDk7YDGIEAweRBYy5WIwtSJtlAbjJNgzPuB09iquw9qBvwpOpBr4Owfr3qpwy8c7jj441E9HoXVSGj//asn7HbdBDKmgk9tqQHVq+RUCh3oam0TtBF0zW2cwLL4fcMjEMoGwRVsqlYDIiJibpFcoBRer8JhE6vKUj+f843SGTzef7/zPvf+ezN5d4e/76afpbIqHq+nkPV8MuJMuISVXzuk/Cs1o4wlT2ut0Y+TLq7b4l1IAZYPcOpU+lIXpS5IIQ0k5EclNO10o2+2Sj5CBkQF7hO3wSSQ5sEIFQ2fywOUGWG4hZCtl2CrBRsJkMqyrYAa0AYsVLJrGxUblUaxyh0dgk5tr6ojK98+FX1QP31Qtl4UxYous0kFqe6pB4cYii+DBgLC9Vd4XzSUN1Xl+wN7KYKcjb4t2fFe24b6rBaMHfKGFEdgMPsnzHc/wAfX4H/SYEqiFi/F81K5NMx0qrdVshspEQxlWqopyfrOytTKPVosAvkPfgt5YrTJbTNfFaHQ0ZN00MmRhlQza+kFjXUTV4/Cvef//z3sqNji9+AxtBkzSEtsZ6Ymw7gHJUQTYug/C9SUVI0iJwqlZh05iP70ASpADaQ61Lrcnyf/GqPe3WLHPK+4yvVz9SfDr+NuJrdsYzdzUFevxqCeSbrHqSRpUGEkT1/T+81hc4EcLjDGsN6M3x+CDrCo3Afyp3AeV44UEuRr8QanLPsi6Rr0Gh+MODPoyNQbb+/KnAFcK1oqoD7v2TfA97vSlgCRERKuHl4mylMIKrWj3BLR8/A4a8/PyVna+o+TvCfghyI10W7+8bCpdvD0TWp7FiExvhZXBJCfJ+YIWySEdhAFTMywabXeUiiLa53XW4dN7fghDV7PZDfPcTCA7Blzmu9pWHriJTiU94dlLzHj2U3Y8gy8QVfu2uadONyLVCRz3Uwu6y3VD67NcMA21rlSxPuoVQEjfg+otuJxXShZHmNXCDJmtlM9B2Vd3OXaiVlaWITYGL0YXl8PR6+HokuSQxaUiaxZtOY6sua0f7Nl6Ov6L/xVliR1s3LlOhGzv8qL353xdez72IWHeYoySSLsddhLcm2S/p9dYXUMTgccnYSTVz89HKG1Zy5VILJxIwW+3JeD+zp7zrlp2GUGkX7T4hEfcu9UFco9TV93Rfrj9wk7rhln7QKP+U0y1758dawVDCWzDGeloOI6wtpGYBAFod5K3jYbVfWxZ/sHE3iMhI9b05xO/fQGUD9KDl3+3w52WRbmHbF4opc8/JR1ISw== +api: eJztV0tv20YQ/iuLObXAylZd+6Kbk6ixgbQxbDk9CIKwIkfixuQuszu0JAj878HwLYkWnDRBgaI+WARn9pv3N8sdhOgDp1PS1sAIHtNQEXqhjMCN9qTNSqxxEVn7JAJrlnolhYpju2ZBYkO91IHis8IuxeP9BynwGQ15KSJUITovhTKhsBSha4BSZ1N0pNGfgQR+LiBuw8aBv0tNkODwS4ae3thwC6MdBNYQGuJHlaZxZfz8s2fvd+CDCBPFT7RNEUZgF58xIJDQ2mTpXtCNsienzQpyCWjUIsawI1tYG6MyLMxc3HsoQYpseCxiuCyB0RTejycg4e7jQ/HzWPy/nry9AQnvxh/GkzFIuBlfv4OZBNIUM8gNUfpniZxLeEbne51ujXz6rXv8U3UglxBknmwyrwrTlyQVhppzouK7brpyedAl79Gg04F4wu3gWcUZihJCeHJZQJlDkXkMxdI6sYxxoxcxilCREg5Thx4NlU1DkbPZKrIZCYpQXN/dckfUvn8s/eJ6FE3VcVk5p7YgQRMmvqcaHG6kzArnDpXvrXJeNpd2XOfpgXong3sdeV+249uqDfN9FHIZ5hJS5VSCVCR5ugOjEsYpfiRoTmCqKAJ53K5tMx2CNjCbgXWrgQ5rqLKc3w22tu7JpyrAf4A34zc+tcaX03UxHB4N2X4axcVwKOozIH/UWJdR9Tj8/7z/9+c9UZu5Q3JVL1QKJksW6BgzVp7m5PRqhQ7DuaK+pC6tS1gC3KwD0gnCK6hEQuBQEYbzxfak+FuMFv6WK/Zl4H2l18OfJL89f/di22+Mdm6aivV41BPJfrGaSZI1R/LEtb3/MheX/NEh41zC5fDymHzu0dvMBfiXpT9sZkJxObxs+SeXcNVHWbeG0BkVP6B7Rjd2zjpx9VOIK0Hv1aqPu/I2+B53+lLAJ9SKVw9UifKcwpqtePcEvHyKHTSC8+pWdr7j5OdM/BhkTtO2WF4+0RRtz1SqzyKi9I3yOrjO+OR0xovkUI7KoWsUZi3aA6eijPZlzCZ8fg+HNHQzmdyJQluojCI0VOW73lYFcbOcS3rCs9eYKdRP2SkUigJxte/be+p4o5I0xuN+6lB3tW54fVYLppU2lSrXR7MCmOl7WL1Dl9MaZHbEWR3O0GZpixxUffWQpehS63UVYmvwYnhxNRj+Phhe8bnUekqUaRdtNY6iva0f7NlmOv6N74qqxIQbOk9jpbu7vOz9Kawbz0dFSDMJkfXEot1uoTw+ujjP+fWXDB1PxEzCs3Ka61fMR6h9Vculij2eSMEv9xXh/ipe8q5edoYpsli0MAKQ8ITb+gKZz3JZ39F+uP3STueG2fjAo/5TTHXvn3vWSoWK2AYTxmg1jri2PXEdBJjSSd0uG9b3sUX1gZnYkA85teaPT7UuC2CLIAvyKt7tIFZmlRWUDSUo/30FJR1ISw== sidebar_class_name: "patch api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/update-workspace.api.mdx b/docs/docs/api/update-workspace.api.mdx index 5c7d78be7..6cded9f05 100644 --- a/docs/docs/api/update-workspace.api.mdx +++ b/docs/docs/api/update-workspace.api.mdx @@ -5,7 +5,7 @@ description: "Updates an existing workspace configuration, allowing modification sidebar_label: "UpdateWorkspace" hide_title: true hide_table_of_contents: true -api: eJzdV99v2zYQ/lcIPm2AnBhZ8+K3pE3RAFtRxO724BoCLZ1tthLJkVRiw/D/vjtStmRbdhIsfdj6kNLkd8f7+R215jm4zErjpVZ8wL+aXHhwTCgGS+m8VHP2pO0PZ0QGLNNqJueVFYROmCgK/USIUudyJrOwzfSMibyUijnwJO8SVgqFarVdsVyWoBzCcBc3W7qN1Qasl+Au2J+ikNGOeCN7BEtC0SZQCJczkniUOeQXPOEkG66/z3de/LXVjecW/q7A+Vudr/hgzVEtqvG0FMYUtemX3x0FYc1dtoBS0MqvDKBCPf0OmUc9jZV0urM+DR6nKCSLlpjzFgPANwmPfqS1H8eQ5CAPI80qhQE8CEDCjHCOfeOqKopvnEXpC7phF+O0iXHrHmGtWOE10kPpOkxEDY03zgtfdaASDqoq+WDM7z7f3P5+9wF3PtwP43KScC99QfBd5IdREZkHqCIjnfgjFE4KSwwl2epTB8UsxUxgRkU7gFOtCxCKFIjK69RoUxWY2pQSaPUJKCgxLSIGlj59jNW0H/cO+EKoOaQWBFbBM0KbxteDWnuIhfa+LrDNhrBGWIEBwBxi7NZc4Q+UbOIdNjA3lHkj/ALXRyXY1BLVsrSAhe5tBZtkp3DZ03bek/lW1QJEDvZVyia04wzWTqzwq36f/usiiZ3LDEFsK8WTt2+u6F6H8eiuUNIF/Sn6/SzmpKZW7QfzXoR8+y55O0IhCJayhzydrjqPC+F8Gpn7pSDhu7ydaVvSCaeq6Hns6Pbtr5H59xz2v6OZpj/Hz/lzyvi9XOyVxfNGnfOyozo6qqrJyXG/dnXnqSZIjvmyu2k7WnRyhq4jbe3z9bv+u2PWQ6iubAaftf+oK3y7IKqhPZS67uLKe9RrlSiGYLFX76zVll3/FL4swTkx7yKt1rTqMKcrBCQh5jStGpZifwiF+qnwKKCY1YXO48DKaGKFwTXgl7vou8v1fso2NIogq6z0qzAIXSn9YnUhjLxYeG9uhZPZTUVqxhOaa4fnICzYHWDSaBtSjGIYTuvcxYX2j15cn0ajLyygGbbRAr2sE7Gdn6Ez6Zxyfcayl1wT4OfuCYCQOSqDh+b1ercUpSngzOuzIdnDGdGcdBPteAuYdI251jR7FcvSu+Ikr8bDM0y6DzjJnfElhM+emQ4ZqMt9WKFVRjtZB7gJxVX/6rrX/63Xv6Z0IsRjTEi0fktFnmDtb4i9RLa+If6zH011nVLML00hZBhTlQ3jLnbzuKkD4u/BAQVjnSwwcoRbr7E34KstNhvaxnq11OO4fBRWUvZCx+fI9bhG3piJwsGZoP7yUE++X9kpU7fPAkVTBquhol+4/AGr4+f1Bhll+yJ+c0vija33984aorF4WvNrb0QKGsQR5TcSN1kGxp/Fton4y83o/SdET+uPXCwwErLiiT6A8W8Ijg4eBqoMe2sc2WpehcnBo1L69w83tMJW +api: eJzdV99v2zYQ/leIe9oAOjGy5MVvSZuhAbaiSNLtwTWEs3S22UokS1JODEP/e3GibMm27DRY9rDlJTL53fF+fkeuISOfOmWDMhpG8NlmGMgL1IKelQ9Kz8WTcd+8xZREavRMzUuHjJYC89w8MaIwmZqptF4WZiYwK5QWngLLeykK1BkG41YiUwVpr4z2UqDOOrqtM5ZcUOTPxF+Yq2hHPFEsybFQtIl0SkLNWGKpMsrOQALL1sffZVsv/t7oBgmOvpfkw43JVjBaQ2p0IB34E63NG9PPv3oOwhp8uqAC+SusLMEIzPQrpQEktFby7tb6pPY4oQJV3hHzwSk9h0pC9CNp/DiEyL08PBpRak9hLwBSWPRefAFd5vkXEFH6jE/YxjhpY9w5B53DFUhQgQrfY2IlO974gKHsQUkgXRYwGsPtx+ubP27fg4T3dw/xcyIhqJAzfBv5h6iIzaPgVMo6Kwl14ST0bMmxrSHxlM8StJxR7AZwakxOqFkBlsEk1tgyx0AJJ9CZI1DSOM0jhp5DsozVtBv3HvgC9ZwSR+iNfkGoan3dq7X7WGjvmgKrKsZadFhQIOdhNF6DxoIl23jXCxIUZ95iWIA8LMG2lriWlaMMRsGVVMmtwueBcfOByjaqFoQZuVcpm/CKt0b7WOEXwyH/6yOJrcviYjgUGymQb99c0b0e442bo1a+1p+o7GXMUU2d2q/N+ynk23fJ2xEKQxxhoCyZrnq3c/Qhicz9syAMfd7OjCt4B7gqBkEV1D39NTL/nMP+dzTT9uf4JX+OGb+Ti52yeNmoU172VEdPVbU5OezXvu481gTykC/7m7anRScn6DrS1i5fXw4vD1nvnrwpXUofTfjdlDoTl8PLlvYqCVd9XHmnAzmN+QO5Jblb54wTV/8KXxbkPc77SKszrXrM6QsBS+Ccp1XLUuJP1DgnLjwOaEFhYbI4sFKeWPXgGsH5Nvr+fL2bsopHEaWlU2FVD0JfqLBYnaFVZ4sQ7A16lV6XrGY84bm2v0/oyG0Bk1bbA8cohuG4zm1ceP3gxvXh8fGTqNECy7AgHZpEbOZn3Zm8z7k+YdnPHFPDT51TA+rMcRnct7fX22csbE4nbp8tye7PiHann2jHG8Ckb8x1ptmrWJbvFUd5NW6eYNJdwFHujDchUHpm6gw05f5QWnLWeNUEuA3FxfDiajD8bTC84nRa40OBdbs1d6nIE6L7hthJZOcN8Z99NDV1yjE/tzmqekyVrh53sZvHbR0wf4/2KHgiYWF8YNx6PUVPn11eVbz8vSTHPT6RsESnOHt1x2fK83cGoxnmnk4E9Zf7ZvL9Ko6ZurkWaJ4yS8xL/gUSvtHq8HpdTSq5uRG/uSXxxM79e2sN01jcbfh18MgKWsQB5bcS12lKNpzEdon40/Xjuw8gYdo8cguTsZDDJ34A41MMjqk9rKmyXltDjnpe1pMDolL++wE3tMJW sidebar_class_name: "patch api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/validate-context.api.mdx b/docs/docs/api/validate-context.api.mdx index 38c5f727f..a22e33b68 100644 --- a/docs/docs/api/validate-context.api.mdx +++ b/docs/docs/api/validate-context.api.mdx @@ -5,7 +5,7 @@ description: "Validates if a given context condition is well-formed" sidebar_label: "ValidateContext" hide_title: true hide_table_of_contents: true -api: eJy1VU1v4jAQ/SuWT7tSoagrLr21qNJWq5UqSvdScRjigbjNh9d2KFGU/74zTkICpWi1Hxwg2G+eZ948Tyqp0EVWG6/zTF7LH5BoBR6d0GsBYqO3mIkozzzuPP8qzUChnXjDJBmtc5uikhcyN2iBt+7VgGXWBNK+xZ8FOn+bq1JeVzIwZp4fwZhERyH28sVxEpV0UYwp8JMvDRJhvnrBiHmM5ZO8Rren2flTQFBNqpA8DEPqi6OC52gsOsrF9eVBIgjh0WoQhUMlqMy9CCn4KNbZZiy+YemEwrXOUCidYuZYmgxSUg8yJbaQUM3CGYz0uhQ+xp7Wx0BUhfNihSJFP6aUvfYJ1zDr8pB13SinLYl8/byvd9mDj6SeNzrPWn3rQwZvC6QFA5aSpERIkedKcsbEtBvldjPS3E3NysQICi39e9cN5y0JIE9QD8jecvvqDET4F3xLXnEmz1zT76vJhH9OW7ZVQBBIdFHMOT0VdE9YS41+RLtFe2ctdXg6DLz4Vx4lNzjY4Ily676LJ9KZt5kMWhkiYMNdk1213yEj9pQRpBZ1Nc75BpoiZAI+pj+XrW8ut61U3ASMCjJjGRzgUu3jcgxGj2PvzS04Hd0UHPu85KYe7yNYtHvAsmd7ZFGauj/m3AvB6/L4Qn5dLB5EQAsgOBXWKt85hyNXvM/NPZPZ7xwT4OfOCYDQKu77vJ9idztITYKHU4hxOlvn4fC2tY8FmcHkTrfc1F/XpHA1uZqOJl9GkylXQhCfQrBWe4c6Y4t+jB7UMBijfzy3W4mCO0wCdFEplcImzN64p586lHvnH2p5TPnyblVRM/DJJnXNyySQZVMtGU2TbsUisIu6+89+U9rxBhl1DYnDM3V9mrcT4bP4KNtXLA+nV5i7tCTZuv/lqOFsOzitAbRXdrRgjh7xbor0ETdRhMafxQ5v98PTgrCr9mWa5opDLLzxi5a+KRl+I3NwuIphrZIJZJsijCLZUPLnF39NzUc= +api: eJy1VU1r40AM/SuDTrvgtKFLLr51S2HLslDSdC8lB8VW4mntmalGThtC/vsi24mTNC3LfvhiMyM9SU9P8hpyihnbINY7SOEnljZHoWjs3KBZ2CU5k3kn9Cr6zq0aGhvNC5XlYO65ohwS8IEY9eom30O5ah0hAabnmqJ89fkK0jU0iE70E0Mobdb4nj9GTWINMSuoQv2SVSBIwc8eKVOcwBpJLMUdzKucMsS8TRXL232XTXJU8JgCUyQnsS8PS5OxFWKLpo6Um7nnHQkVSlZYtzgz32kVTU5z68jktiIXlRqHFUWDLjdLLGuKJgbK7HxlpKAeVgoUU9VRzIxMRXIGCYiVUmu42uYBm03LnGXKIX3Y1TvtjY+oHrc8X3X8bg4RhGvaJBCQsSIhjpA+rEEzhhReB54XA6vdtMpMQZgTQ/K2G1HYugWcgN4De/H8FANm9Bd4Uz2JwbvY9vtiONTXacl2DJiL4dBsvRRzdMrpxgmxw/KOeEl8zezZjPYdk3+l0YpixAWdKHfTd/FEOuMuk71WNh640K7Bttof6HBBlVpME6hICq8TGOomE5QCUjjvdHO+7KjSJlBWs5VVo4BYWSlWZxjsWSESvmK02WWtvg9TberxPSET7wymPdqdktLW/T7mjgg9h+OB/DaZ3JrG2mAtBTnpmN8qRz1neq/N/SCz3wnTmH8UpzFoWqV9H/db7PoVq1DS4RZSO+vmvgnetfauDsTBR9thL4ljm8LF8GI0GH4ZDEdaSfBRKmyk1c3QVtimX6MHNeyt0T/e2x1FjTpCidZpKjWXit6qp986Cez0M02g8FH0dr2eYaR7LjcbPX6uiVVUU7VmizMlQVW0nX/VW26jXuSQzrGM9EFdn8bdRvhs3sv2iVaH26vZu5ACqHT/S6j93XYQrTXoRnYwUYze4s0W6T0us4yCfGi7P9239xNIYNb9TCufqwvji/5o8UWT0T+yOjej2JytoUS3qJtVBC2kPr8Af03NRw== sidebar_class_name: "put api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/docs/docs/api/weight-recompute.api.mdx b/docs/docs/api/weight-recompute.api.mdx index 14310d77c..ca635e932 100644 --- a/docs/docs/api/weight-recompute.api.mdx +++ b/docs/docs/api/weight-recompute.api.mdx @@ -5,7 +5,7 @@ description: "Recalculates and updates the priority weights for all contexts in sidebar_label: "WeightRecompute" hide_title: true hide_table_of_contents: true -api: eJzVVttu4zYQ/ZWBXroFHCdNkZe8bbMtdlu0DRIv+hAEBU2OLG4oUctLvK7hf+8MKcuS7VyAdgv0ybI4lzPDc0azLhR66XQbtG2Ky+IGpTAyGhHQg2gUxFal51AhtE5bp8MKlqgXVfBQWgfCGJC2CfiFXugmGS6te/CtkAhz4VGBTa+1A6VrbDyl8tNiUtgWneDEHxSl/iMFJQC2bmNAOm+FEzUGdL64vFsXDf0huy8nlK7Ui5MgFp6sNOOuUCh09M/LCmtRXK6LsGrZ3Aenm0Wx2UwGEaxbnGj1eudJ4fBz1A4JaHARR8H6av9BvHt+41tqDHq2Pz8745/x5ex1CMgItl6ULd1CE9hPtK3RMvX29JNn5/UhGDv/hDJwnx3fRNA5Nd330Eo4J1ZcWcDav+xNXT1WLmFTOpdxGEGofCbM9TAWue2Ts6VyqUQPfTxB7CNOotMCInONOdnxEWoRZEUIpvALrjwoLHWDOxICX2Gm+aMwkR59i1KXq0TiPmyoBIWKPsAcgfjI1A06GK7hqq+L0Fqj/szSOOzBfi3XYy1l7MESRkpaM0zGYB0RCWzZV4QMNN3rFN6TI51uxRjEA0sUJSpsSHoqcmLIYolZaEwXa2LyZ8QNLv9XiEfCuRuwalIkOQ/qGV3H/e7G9kR0s9XPhoO/YHTVKWyTjC+OafQDWThi5S26R3Q/Okd0vPgqOiXqerHAo6OuL+QInCeK+e782MCZV9Y+/CS0obsmk3+ljP2GKXZNnxjSWeLQ9rsAPkqJxA4F85jPlhkSSP7ulAnYFGZ0sEUGc6tWiX1CN/m7laJ4X0bDVtGESR9OGk01gK9sNIr1LZbCYYayTdXYoMuuPBoeil8AM8MQ86dPzs9xmbMxjl2JGVGXMaGoxCNVgchnIbqGql/qUMH72eyaZ/4EPM8lo/+iE8HzC2LDTVanTizh59vffwNlZaQpF3JviBhRUigEYxeaW8cdcrllyrOKR33/xlONrqbZamNouVUUPTdNe6itQpNTv+vSgNcs4FDRMT0uDAIm6vP/ijpK1tJZT85UrKbO7ZL5XJ3SZYmOY3U5ya9Ffyj61N+RoAckPUZulgOvCuR71Q2lX0VD0mHkHIlmemV5BaG0ae0IFf057SbYaZ4hp26wmXiUkWdh2kt8TfhXU9HqaRVC+4PwWr6NHOPunheF/XOkfrje4H4X7ZYlk0n0dMxeT/z+QE2JI8kaBJlTgR1xt9sIe875nMf/M8hekyaZP5cnGaQL1E1pU9Du0m4jXX9r/XZ603DyOfT52fnFydn3J2cXjJBMQi3SQOn2rTyaYbgnjrCtd4Ppv91mu34lyrSGhg/jj84wpEypu6ILTdb9V2pHK2JCReWy3XrNqT46s9nw688RHXONHh8FSX/OPWRybVdNpqHSng+Ix6UwHp9py1NgH3B1ZL9OqxF7MZdfn+TNTafZb+GlfP02/vVTDXf1UbZs8JYGdBsGZwdfts1wXlx/nBG7/wagRrZi +api: eJzVVk1vIzcM/SuELm2BieNNkYtv27TFbou2QZJFD4FRyBLt0UYjaSUqXtfwf19QGk/s2PkA2i3Qk8cSRT5S71FcC41JRRPIeCcm4gqVtCpbSZhAOg056PJNLUKIxkdDK1iiWbSUYO4jSGtBeUf4mRIYVwyXPt6lIBXCTCbU4MuyiaBNhy4Z79JINMIHjJIDv9diIv4sTq9Q+S5kQtGIIKPskDAmMbldCyc7FBPx+UR5NzeLE5KLJBphGHeLUmMUjUiqxU6KyVrQKrB5omjcQmw2zY4HHxcnRr/+cCMifsomohYTihn3nA3Z/gN/U15JwbuEie3PxmP+2b+cRxWCs/EYtqdEI8otOOJzMgRrVKnt6cfEh9eHYPzsIyriOke+CTI1tJa0ayVjlCvOjLBLL582+mi6yjttahqHHqSue9Je7vraNAfkDBETOkow+JMWVDSE0UjIzDXmZM9H6CSp1rjFCH7FVQKNc+PwgYTAV1hpfi9txgQpoDLzVSHx4JZaSdDlRDBD6JCYumTIcg4XQ16bRnir/6rSOKzB41wu97VUsZMHzXzvGCZj8FFjBD8fMkIGWu51BO/MosU4iJHkHUsUFWp0CkFnDgxVLLkKjenibS7nGbHD5f8K8Z5wbndY1Ygi55189q5j+nBjj0R0tdXPhp2/YHTRK2xTjM+PafS9I4xO2muM9xh/itFHOP8qOu0wJbnAo61uSOQInCeSeXN2rOHMWu/vfpbGoobzN2f/ShqPC6b5aHliJFUObd8FSFkpRI0aZrnuLSskUPzuzAuwEdy0OCCDmderwj5pXH23ipeU5tmyVbbUDO6UNegIUuuz1axvuZQRK5RtKOfJzPv0QBvNC8DMsEg4erJ/7qd5s4/jIcWKqI9YULTyHmGGyHuUo0MNS0MtvLu5ueSe30DivmTN36hBcv+C7LjI+jTKJfxy/cfvoL3KHTqqtUkUs6IcEaxfGC4dVyjWkunEKt6r+zcJnI+dtOAzBS7VKmAtmknQeY22hv6xDwPJsICpNYk/FxYBC/X5fysjW6voU4IuWzLB7gRLNTtt5nOM7KuPmVoZMB2KvtR3T9A7JD1GbpYDjwqTW3HRN6XfpJMLZOTsqUNqPY8gIReZSWrFRJz2Hey09pDTuDOZJFSZe2GZS1JnqF2NZDCjlij8IJNRbzP7uJ3yoPB4H2XEOBhMH7xds2QqiZ72OeiJ1w/UVDhSrEFmatFRT9ztNMInZ7zP7f8ZZK8JU8yfi1MMygUaN/fFaX9p1zlgDD5tu/c9xlRdn43Pzk/G35+Mzxlh8Ik6WRpKP2/V1gy7c+IetvVDY/pvp9m+XoUywUpTRoIcLUOqlLoVvWvRiOGVeqDVtBGtT8R26zWH+hDtZsPLnzJG5tq0EfcyGjnjGjK5tqMm01CbxBtaTObSJnymLE+BvcPVkfm6jEZ8irn8+iDfXvWa/Q5eijdM418/1O6svhetGrxVCgPt7B28bJvdfnH54UZsNl8AoEa2Yg== sidebar_class_name: "put api-method" info_path: docs/api/superposition custom_edit_url: null diff --git a/smithy/patches/python.patch b/smithy/patches/python.patch index 76bd423b0..9d0c8ba01 100644 --- a/smithy/patches/python.patch +++ b/smithy/patches/python.patch @@ -24,7 +24,7 @@ index 7c295b28..b7a7bd7e 100644 reportPrivateUsage = false diff --git a/clients/python/sdk/superposition_sdk/models.py b/clients/python/sdk/superposition_sdk/models.py -index b973e774..14eb3f95 100644 +index b973e774e..14eb3f950 100644 --- a/clients/python/sdk/superposition_sdk/models.py +++ b/clients/python/sdk/superposition_sdk/models.py @@ -683,7 +683,7 @@ ADD_MEMBERS_TO_GROUP = APIOperation(