superposition-provider 0.94.4 → 0.95.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.esm.js +489 -83
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +489 -83
- package/dist/index.js.map +1 -1
- package/dist/native-lib/libsuperposition_core-aarch64-apple-darwin.dylib +0 -0
- package/dist/native-lib/libsuperposition_core-x86_64-apple-darwin.dylib +0 -0
- package/dist/native-lib/libsuperposition_core-x86_64-pc-windows-msvc.dll +0 -0
- package/dist/native-lib/libsuperposition_core-x86_64-unknown-linux-gnu.so +0 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3147,6 +3147,11 @@ function requireHttpAuthSchemeProvider () {
|
|
|
3147
3147
|
};
|
|
3148
3148
|
};
|
|
3149
3149
|
httpAuthSchemeProvider.defaultSuperpositionHttpAuthSchemeParametersProvider = defaultSuperpositionHttpAuthSchemeParametersProvider;
|
|
3150
|
+
function createSmithyApiHttpBasicAuthHttpAuthOption(authParameters) {
|
|
3151
|
+
return {
|
|
3152
|
+
schemeId: "smithy.api#httpBasicAuth",
|
|
3153
|
+
};
|
|
3154
|
+
}
|
|
3150
3155
|
function createSmithyApiHttpBearerAuthHttpAuthOption(authParameters) {
|
|
3151
3156
|
return {
|
|
3152
3157
|
schemeId: "smithy.api#httpBearerAuth",
|
|
@@ -3157,6 +3162,7 @@ function requireHttpAuthSchemeProvider () {
|
|
|
3157
3162
|
switch (authParameters.operation) {
|
|
3158
3163
|
default:
|
|
3159
3164
|
{
|
|
3165
|
+
options.push(createSmithyApiHttpBasicAuthHttpAuthOption());
|
|
3160
3166
|
options.push(createSmithyApiHttpBearerAuthHttpAuthOption());
|
|
3161
3167
|
}
|
|
3162
3168
|
}
|
|
@@ -8340,7 +8346,7 @@ var require$$8 = /*@__PURE__*/getAugmentedNamespace(distEs$a);
|
|
|
8340
8346
|
|
|
8341
8347
|
var runtimeConfig_shared = {};
|
|
8342
8348
|
|
|
8343
|
-
var require$$
|
|
8349
|
+
var require$$76 = /*@__PURE__*/getAugmentedNamespace(distEs$f);
|
|
8344
8350
|
|
|
8345
8351
|
function parseQueryString(querystring) {
|
|
8346
8352
|
const query = {};
|
|
@@ -8404,7 +8410,7 @@ function requireRuntimeConfig_shared () {
|
|
|
8404
8410
|
runtimeConfig_shared.getRuntimeConfig = void 0;
|
|
8405
8411
|
const httpAuthSchemeProvider_1 = requireHttpAuthSchemeProvider();
|
|
8406
8412
|
const core_1 = require$$3$3;
|
|
8407
|
-
const smithy_client_1 = require$$
|
|
8413
|
+
const smithy_client_1 = require$$76;
|
|
8408
8414
|
const url_parser_1 = require$$3$1;
|
|
8409
8415
|
const util_base64_1 = require$$4$1;
|
|
8410
8416
|
const util_utf8_1 = require$$5$1;
|
|
@@ -8708,9 +8714,9 @@ function requireRuntimeConfig () {
|
|
|
8708
8714
|
const util_body_length_node_1 = require$$7$1;
|
|
8709
8715
|
const util_retry_1 = require$$8;
|
|
8710
8716
|
const runtimeConfig_shared_1 = requireRuntimeConfig_shared();
|
|
8711
|
-
const smithy_client_1 = require$$
|
|
8717
|
+
const smithy_client_1 = require$$76;
|
|
8712
8718
|
const util_defaults_mode_node_1 = require$$11;
|
|
8713
|
-
const smithy_client_2 = require$$
|
|
8719
|
+
const smithy_client_2 = require$$76;
|
|
8714
8720
|
const getRuntimeConfig = (config) => {
|
|
8715
8721
|
(0, smithy_client_2.emitWarningIfUnsupportedVersion)(process.version);
|
|
8716
8722
|
const defaultsMode = (0, util_defaults_mode_node_1.resolveDefaultsModeConfig)(config);
|
|
@@ -8801,7 +8807,7 @@ function requireRuntimeExtensions () {
|
|
|
8801
8807
|
runtimeExtensions.resolveRuntimeExtensions = void 0;
|
|
8802
8808
|
const httpAuthExtensionConfiguration_1 = requireHttpAuthExtensionConfiguration();
|
|
8803
8809
|
const protocol_http_1 = require$$1$1;
|
|
8804
|
-
const smithy_client_1 = require$$
|
|
8810
|
+
const smithy_client_1 = require$$76;
|
|
8805
8811
|
const asPartial = (t) => t;
|
|
8806
8812
|
const resolveRuntimeExtensions = (runtimeConfig, extensions) => {
|
|
8807
8813
|
const extensionConfiguration = {
|
|
@@ -9030,7 +9036,7 @@ function requireSuperpositionClient () {
|
|
|
9030
9036
|
const core_1 = require$$3$3;
|
|
9031
9037
|
const middleware_content_length_1 = require$$9;
|
|
9032
9038
|
const middleware_retry_1 = require$$10;
|
|
9033
|
-
const smithy_client_1 = require$$
|
|
9039
|
+
const smithy_client_1 = require$$76;
|
|
9034
9040
|
Object.defineProperty(exports, "__Client", { enumerable: true, get: function () { return smithy_client_1.Client; } });
|
|
9035
9041
|
class SuperpositionClient extends smithy_client_1.Client {
|
|
9036
9042
|
config;
|
|
@@ -9082,7 +9088,7 @@ function requireSuperpositionServiceException () {
|
|
|
9082
9088
|
(function (exports) {
|
|
9083
9089
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9084
9090
|
exports.SuperpositionServiceException = exports.__ServiceException = void 0;
|
|
9085
|
-
const smithy_client_1 = require$$
|
|
9091
|
+
const smithy_client_1 = require$$76;
|
|
9086
9092
|
Object.defineProperty(exports, "__ServiceException", { enumerable: true, get: function () { return smithy_client_1.ServiceException; } });
|
|
9087
9093
|
class SuperpositionServiceException extends smithy_client_1.ServiceException {
|
|
9088
9094
|
constructor(options) {
|
|
@@ -9103,7 +9109,7 @@ function requireModels_0 () {
|
|
|
9103
9109
|
if (hasRequiredModels_0) return models_0;
|
|
9104
9110
|
hasRequiredModels_0 = 1;
|
|
9105
9111
|
Object.defineProperty(models_0, "__esModule", { value: true });
|
|
9106
|
-
models_0.Stage = models_0.FunctionExecutionRequest = models_0.ExperimentSortOn = models_0.ExperimentGroupSortOn = models_0.WorkspaceStatus = models_0.Version = models_0.HttpMethod = models_0.OrgStatus = models_0.FunctionTypes = models_0.ContextFilterSortOn = models_0.DimensionMatchStrategy = models_0.MergeStrategy = models_0.DimensionType = models_0.ExperimentStatusType = models_0.ExperimentType = models_0.ContextActionOut = models_0.ContextAction = models_0.ContextIdentifier = models_0.SortBy = models_0.AuditAction = models_0.VariantType = models_0.ResourceNotFound = models_0.InternalServerError = models_0.GroupType = void 0;
|
|
9112
|
+
models_0.VariableSortOn = models_0.Stage = models_0.FunctionExecutionRequest = models_0.ExperimentSortOn = models_0.ExperimentGroupSortOn = models_0.WorkspaceStatus = models_0.Version = models_0.HttpMethod = models_0.OrgStatus = models_0.FunctionTypes = models_0.ContextFilterSortOn = models_0.DimensionMatchStrategy = models_0.MergeStrategy = models_0.DimensionType = models_0.ExperimentStatusType = models_0.ExperimentType = models_0.ContextActionOut = models_0.ContextAction = models_0.ContextIdentifier = models_0.SortBy = models_0.AuditAction = models_0.VariantType = models_0.ResourceNotFound = models_0.InternalServerError = models_0.GroupType = void 0;
|
|
9107
9113
|
const SuperpositionServiceException_1 = requireSuperpositionServiceException();
|
|
9108
9114
|
models_0.GroupType = {
|
|
9109
9115
|
SYSTEM_GENERATED: "SYSTEM_GENERATED",
|
|
@@ -9269,6 +9275,11 @@ function requireModels_0 () {
|
|
|
9269
9275
|
DRAFT: "draft",
|
|
9270
9276
|
PUBLISHED: "published",
|
|
9271
9277
|
};
|
|
9278
|
+
models_0.VariableSortOn = {
|
|
9279
|
+
CREATED_AT: "created_at",
|
|
9280
|
+
LAST_MODIFIED_AT: "last_modified_at",
|
|
9281
|
+
NAME: "name",
|
|
9282
|
+
};
|
|
9272
9283
|
return models_0;
|
|
9273
9284
|
}
|
|
9274
9285
|
|
|
@@ -9280,14 +9291,14 @@ function requireAws_restJson1 () {
|
|
|
9280
9291
|
if (hasRequiredAws_restJson1) return Aws_restJson1;
|
|
9281
9292
|
hasRequiredAws_restJson1 = 1;
|
|
9282
9293
|
Object.defineProperty(Aws_restJson1, "__esModule", { value: true });
|
|
9283
|
-
Aws_restJson1.
|
|
9284
|
-
Aws_restJson1.
|
|
9285
|
-
Aws_restJson1.de_WeightRecomputeCommand = Aws_restJson1.de_ValidateContextCommand = Aws_restJson1.de_UpdateWorkspaceCommand = Aws_restJson1.de_UpdateWebhookCommand = Aws_restJson1.de_UpdateTypeTemplatesCommand = Aws_restJson1.de_UpdateOverridesExperimentCommand = Aws_restJson1.de_UpdateOverrideCommand = Aws_restJson1.de_UpdateOrganisationCommand = Aws_restJson1.de_UpdateFunctionCommand = Aws_restJson1.de_UpdateExperimentGroupCommand = Aws_restJson1.de_UpdateDimensionCommand = Aws_restJson1.de_UpdateDefaultConfigCommand = Aws_restJson1.de_TestCommand = Aws_restJson1.de_ResumeExperimentCommand = Aws_restJson1.de_RemoveMembersFromGroupCommand = Aws_restJson1.de_RampExperimentCommand = Aws_restJson1.de_PublishCommand = Aws_restJson1.de_PauseExperimentCommand = Aws_restJson1.de_MoveContextCommand = Aws_restJson1.de_MigrateWorkspaceSchemaCommand = Aws_restJson1.de_ListWorkspaceCommand = Aws_restJson1.de_ListWebhookCommand = Aws_restJson1.de_ListVersionsCommand = Aws_restJson1.de_ListOrganisationCommand = Aws_restJson1.de_ListFunctionCommand = Aws_restJson1.de_ListExperimentGroupsCommand = Aws_restJson1.de_ListExperimentCommand = Aws_restJson1.de_ListDimensionsCommand = Aws_restJson1.de_ListDefaultConfigsCommand = Aws_restJson1.de_ListContextsCommand = Aws_restJson1.de_ListAuditLogsCommand = Aws_restJson1.de_GetWorkspaceCommand = Aws_restJson1.de_GetWebhookByEventCommand = Aws_restJson1.de_GetWebhookCommand = Aws_restJson1.de_GetVersionCommand = Aws_restJson1.de_GetTypeTemplatesListCommand = Aws_restJson1.de_GetTypeTemplateCommand = Aws_restJson1.de_GetResolvedConfigCommand = Aws_restJson1.de_GetOrganisationCommand = Aws_restJson1.de_GetFunctionCommand = void 0;
|
|
9294
|
+
Aws_restJson1.se_ListOrganisationCommand = Aws_restJson1.se_ListFunctionCommand = Aws_restJson1.se_ListExperimentGroupsCommand = Aws_restJson1.se_ListExperimentCommand = Aws_restJson1.se_ListDimensionsCommand = Aws_restJson1.se_ListDefaultConfigsCommand = Aws_restJson1.se_ListContextsCommand = Aws_restJson1.se_ListAuditLogsCommand = Aws_restJson1.se_GetWorkspaceCommand = Aws_restJson1.se_GetWebhookByEventCommand = Aws_restJson1.se_GetWebhookCommand = Aws_restJson1.se_GetVersionCommand = Aws_restJson1.se_GetVariableCommand = Aws_restJson1.se_GetTypeTemplatesListCommand = Aws_restJson1.se_GetTypeTemplateCommand = Aws_restJson1.se_GetResolvedConfigCommand = Aws_restJson1.se_GetOrganisationCommand = Aws_restJson1.se_GetFunctionCommand = Aws_restJson1.se_GetExperimentGroupCommand = Aws_restJson1.se_GetExperimentCommand = Aws_restJson1.se_GetDimensionCommand = Aws_restJson1.se_GetDefaultConfigCommand = Aws_restJson1.se_GetContextFromConditionCommand = Aws_restJson1.se_GetContextCommand = Aws_restJson1.se_GetConfigFastCommand = Aws_restJson1.se_GetConfigCommand = Aws_restJson1.se_DiscardExperimentCommand = Aws_restJson1.se_DeleteWebhookCommand = Aws_restJson1.se_DeleteVariableCommand = Aws_restJson1.se_DeleteTypeTemplatesCommand = Aws_restJson1.se_DeleteFunctionCommand = Aws_restJson1.se_DeleteExperimentGroupCommand = Aws_restJson1.se_DeleteDimensionCommand = Aws_restJson1.se_DeleteDefaultConfigCommand = Aws_restJson1.se_DeleteContextCommand = Aws_restJson1.se_CreateWorkspaceCommand = Aws_restJson1.se_CreateWebhookCommand = Aws_restJson1.se_CreateVariableCommand = Aws_restJson1.se_CreateTypeTemplatesCommand = Aws_restJson1.se_CreateOrganisationCommand = Aws_restJson1.se_CreateFunctionCommand = Aws_restJson1.se_CreateExperimentGroupCommand = Aws_restJson1.se_CreateExperimentCommand = Aws_restJson1.se_CreateDimensionCommand = Aws_restJson1.se_CreateDefaultConfigCommand = Aws_restJson1.se_CreateContextCommand = Aws_restJson1.se_ConcludeExperimentCommand = Aws_restJson1.se_BulkOperationCommand = Aws_restJson1.se_ApplicableVariantsCommand = Aws_restJson1.se_AddMembersToGroupCommand = void 0;
|
|
9295
|
+
Aws_restJson1.de_GetConfigCommand = Aws_restJson1.de_DiscardExperimentCommand = Aws_restJson1.de_DeleteWebhookCommand = Aws_restJson1.de_DeleteVariableCommand = Aws_restJson1.de_DeleteTypeTemplatesCommand = Aws_restJson1.de_DeleteFunctionCommand = Aws_restJson1.de_DeleteExperimentGroupCommand = Aws_restJson1.de_DeleteDimensionCommand = Aws_restJson1.de_DeleteDefaultConfigCommand = Aws_restJson1.de_DeleteContextCommand = Aws_restJson1.de_CreateWorkspaceCommand = Aws_restJson1.de_CreateWebhookCommand = Aws_restJson1.de_CreateVariableCommand = Aws_restJson1.de_CreateTypeTemplatesCommand = Aws_restJson1.de_CreateOrganisationCommand = Aws_restJson1.de_CreateFunctionCommand = Aws_restJson1.de_CreateExperimentGroupCommand = Aws_restJson1.de_CreateExperimentCommand = Aws_restJson1.de_CreateDimensionCommand = Aws_restJson1.de_CreateDefaultConfigCommand = Aws_restJson1.de_CreateContextCommand = Aws_restJson1.de_ConcludeExperimentCommand = Aws_restJson1.de_BulkOperationCommand = Aws_restJson1.de_ApplicableVariantsCommand = Aws_restJson1.de_AddMembersToGroupCommand = Aws_restJson1.se_WeightRecomputeCommand = Aws_restJson1.se_ValidateContextCommand = Aws_restJson1.se_UpdateWorkspaceCommand = Aws_restJson1.se_UpdateWebhookCommand = Aws_restJson1.se_UpdateVariableCommand = Aws_restJson1.se_UpdateTypeTemplatesCommand = Aws_restJson1.se_UpdateOverridesExperimentCommand = Aws_restJson1.se_UpdateOverrideCommand = Aws_restJson1.se_UpdateOrganisationCommand = Aws_restJson1.se_UpdateFunctionCommand = Aws_restJson1.se_UpdateExperimentGroupCommand = Aws_restJson1.se_UpdateDimensionCommand = Aws_restJson1.se_UpdateDefaultConfigCommand = Aws_restJson1.se_TestCommand = Aws_restJson1.se_ResumeExperimentCommand = Aws_restJson1.se_RemoveMembersFromGroupCommand = Aws_restJson1.se_RampExperimentCommand = Aws_restJson1.se_PublishCommand = Aws_restJson1.se_PauseExperimentCommand = Aws_restJson1.se_MoveContextCommand = Aws_restJson1.se_MigrateWorkspaceSchemaCommand = Aws_restJson1.se_ListWorkspaceCommand = Aws_restJson1.se_ListWebhookCommand = Aws_restJson1.se_ListVersionsCommand = Aws_restJson1.se_ListVariablesCommand = void 0;
|
|
9296
|
+
Aws_restJson1.de_WeightRecomputeCommand = Aws_restJson1.de_ValidateContextCommand = Aws_restJson1.de_UpdateWorkspaceCommand = Aws_restJson1.de_UpdateWebhookCommand = Aws_restJson1.de_UpdateVariableCommand = Aws_restJson1.de_UpdateTypeTemplatesCommand = Aws_restJson1.de_UpdateOverridesExperimentCommand = Aws_restJson1.de_UpdateOverrideCommand = Aws_restJson1.de_UpdateOrganisationCommand = Aws_restJson1.de_UpdateFunctionCommand = Aws_restJson1.de_UpdateExperimentGroupCommand = Aws_restJson1.de_UpdateDimensionCommand = Aws_restJson1.de_UpdateDefaultConfigCommand = Aws_restJson1.de_TestCommand = Aws_restJson1.de_ResumeExperimentCommand = Aws_restJson1.de_RemoveMembersFromGroupCommand = Aws_restJson1.de_RampExperimentCommand = Aws_restJson1.de_PublishCommand = Aws_restJson1.de_PauseExperimentCommand = Aws_restJson1.de_MoveContextCommand = Aws_restJson1.de_MigrateWorkspaceSchemaCommand = Aws_restJson1.de_ListWorkspaceCommand = Aws_restJson1.de_ListWebhookCommand = Aws_restJson1.de_ListVersionsCommand = Aws_restJson1.de_ListVariablesCommand = Aws_restJson1.de_ListOrganisationCommand = Aws_restJson1.de_ListFunctionCommand = Aws_restJson1.de_ListExperimentGroupsCommand = Aws_restJson1.de_ListExperimentCommand = Aws_restJson1.de_ListDimensionsCommand = Aws_restJson1.de_ListDefaultConfigsCommand = Aws_restJson1.de_ListContextsCommand = Aws_restJson1.de_ListAuditLogsCommand = Aws_restJson1.de_GetWorkspaceCommand = Aws_restJson1.de_GetWebhookByEventCommand = Aws_restJson1.de_GetWebhookCommand = Aws_restJson1.de_GetVersionCommand = Aws_restJson1.de_GetVariableCommand = Aws_restJson1.de_GetTypeTemplatesListCommand = Aws_restJson1.de_GetTypeTemplateCommand = Aws_restJson1.de_GetResolvedConfigCommand = Aws_restJson1.de_GetOrganisationCommand = Aws_restJson1.de_GetFunctionCommand = Aws_restJson1.de_GetExperimentGroupCommand = Aws_restJson1.de_GetExperimentCommand = Aws_restJson1.de_GetDimensionCommand = Aws_restJson1.de_GetDefaultConfigCommand = Aws_restJson1.de_GetContextFromConditionCommand = Aws_restJson1.de_GetContextCommand = Aws_restJson1.de_GetConfigFastCommand = void 0;
|
|
9286
9297
|
const SuperpositionServiceException_1 = requireSuperpositionServiceException();
|
|
9287
9298
|
const models_0_1 = requireModels_0();
|
|
9288
9299
|
const core_1 = require$$2;
|
|
9289
9300
|
const core_2 = require$$3$3;
|
|
9290
|
-
const smithy_client_1 = require$$
|
|
9301
|
+
const smithy_client_1 = require$$76;
|
|
9291
9302
|
const se_AddMembersToGroupCommand = async (input, context) => {
|
|
9292
9303
|
const b = (0, core_2.requestBuilder)(input, context);
|
|
9293
9304
|
const headers = (0, smithy_client_1.map)({}, smithy_client_1.isSerializableHeaderValue, {
|
|
@@ -9552,6 +9563,27 @@ function requireAws_restJson1 () {
|
|
|
9552
9563
|
return b.build();
|
|
9553
9564
|
};
|
|
9554
9565
|
Aws_restJson1.se_CreateTypeTemplatesCommand = se_CreateTypeTemplatesCommand;
|
|
9566
|
+
const se_CreateVariableCommand = async (input, context) => {
|
|
9567
|
+
const b = (0, core_2.requestBuilder)(input, context);
|
|
9568
|
+
const headers = (0, smithy_client_1.map)({}, smithy_client_1.isSerializableHeaderValue, {
|
|
9569
|
+
'content-type': 'application/json',
|
|
9570
|
+
[_xw]: input[_wi],
|
|
9571
|
+
[_xoi]: input[_oi],
|
|
9572
|
+
});
|
|
9573
|
+
b.bp("/variables");
|
|
9574
|
+
let body;
|
|
9575
|
+
body = JSON.stringify((0, smithy_client_1.take)(input, {
|
|
9576
|
+
'change_reason': [],
|
|
9577
|
+
'description': [],
|
|
9578
|
+
'name': [],
|
|
9579
|
+
'value': [],
|
|
9580
|
+
}));
|
|
9581
|
+
b.m("POST")
|
|
9582
|
+
.h(headers)
|
|
9583
|
+
.b(body);
|
|
9584
|
+
return b.build();
|
|
9585
|
+
};
|
|
9586
|
+
Aws_restJson1.se_CreateVariableCommand = se_CreateVariableCommand;
|
|
9555
9587
|
const se_CreateWebhookCommand = async (input, context) => {
|
|
9556
9588
|
const b = (0, core_2.requestBuilder)(input, context);
|
|
9557
9589
|
const headers = (0, smithy_client_1.map)({}, smithy_client_1.isSerializableHeaderValue, {
|
|
@@ -9692,6 +9724,21 @@ function requireAws_restJson1 () {
|
|
|
9692
9724
|
return b.build();
|
|
9693
9725
|
};
|
|
9694
9726
|
Aws_restJson1.se_DeleteTypeTemplatesCommand = se_DeleteTypeTemplatesCommand;
|
|
9727
|
+
const se_DeleteVariableCommand = async (input, context) => {
|
|
9728
|
+
const b = (0, core_2.requestBuilder)(input, context);
|
|
9729
|
+
const headers = (0, smithy_client_1.map)({}, smithy_client_1.isSerializableHeaderValue, {
|
|
9730
|
+
[_xw]: input[_wi],
|
|
9731
|
+
[_xoi]: input[_oi],
|
|
9732
|
+
});
|
|
9733
|
+
b.bp("/variables/{name}");
|
|
9734
|
+
b.p('name', () => input.name, '{name}', false);
|
|
9735
|
+
let body;
|
|
9736
|
+
b.m("DELETE")
|
|
9737
|
+
.h(headers)
|
|
9738
|
+
.b(body);
|
|
9739
|
+
return b.build();
|
|
9740
|
+
};
|
|
9741
|
+
Aws_restJson1.se_DeleteVariableCommand = se_DeleteVariableCommand;
|
|
9695
9742
|
const se_DeleteWebhookCommand = async (input, context) => {
|
|
9696
9743
|
const b = (0, core_2.requestBuilder)(input, context);
|
|
9697
9744
|
const headers = (0, smithy_client_1.map)({}, smithy_client_1.isSerializableHeaderValue, {
|
|
@@ -9951,6 +9998,21 @@ function requireAws_restJson1 () {
|
|
|
9951
9998
|
return b.build();
|
|
9952
9999
|
};
|
|
9953
10000
|
Aws_restJson1.se_GetTypeTemplatesListCommand = se_GetTypeTemplatesListCommand;
|
|
10001
|
+
const se_GetVariableCommand = async (input, context) => {
|
|
10002
|
+
const b = (0, core_2.requestBuilder)(input, context);
|
|
10003
|
+
const headers = (0, smithy_client_1.map)({}, smithy_client_1.isSerializableHeaderValue, {
|
|
10004
|
+
[_xw]: input[_wi],
|
|
10005
|
+
[_xoi]: input[_oi],
|
|
10006
|
+
});
|
|
10007
|
+
b.bp("/variables/{name}");
|
|
10008
|
+
b.p('name', () => input.name, '{name}', false);
|
|
10009
|
+
let body;
|
|
10010
|
+
b.m("GET")
|
|
10011
|
+
.h(headers)
|
|
10012
|
+
.b(body);
|
|
10013
|
+
return b.build();
|
|
10014
|
+
};
|
|
10015
|
+
Aws_restJson1.se_GetVariableCommand = se_GetVariableCommand;
|
|
9954
10016
|
const se_GetVersionCommand = async (input, context) => {
|
|
9955
10017
|
const b = (0, core_2.requestBuilder)(input, context);
|
|
9956
10018
|
const headers = (0, smithy_client_1.map)({}, smithy_client_1.isSerializableHeaderValue, {
|
|
@@ -10199,6 +10261,31 @@ function requireAws_restJson1 () {
|
|
|
10199
10261
|
return b.build();
|
|
10200
10262
|
};
|
|
10201
10263
|
Aws_restJson1.se_ListOrganisationCommand = se_ListOrganisationCommand;
|
|
10264
|
+
const se_ListVariablesCommand = async (input, context) => {
|
|
10265
|
+
const b = (0, core_2.requestBuilder)(input, context);
|
|
10266
|
+
const headers = (0, smithy_client_1.map)({}, smithy_client_1.isSerializableHeaderValue, {
|
|
10267
|
+
[_xw]: input[_wi],
|
|
10268
|
+
[_xoi]: input[_oi],
|
|
10269
|
+
});
|
|
10270
|
+
b.bp("/variables");
|
|
10271
|
+
const query = (0, smithy_client_1.map)({
|
|
10272
|
+
[_c]: [() => input.count !== void 0, () => (input[_c].toString())],
|
|
10273
|
+
[_pa]: [() => input.page !== void 0, () => (input[_pa].toString())],
|
|
10274
|
+
[_a]: [() => input.all !== void 0, () => (input[_a].toString())],
|
|
10275
|
+
[_n]: [, input[_n]],
|
|
10276
|
+
[_cb]: [, input[_cb]],
|
|
10277
|
+
[_lmb]: [, input[_lmb]],
|
|
10278
|
+
[_so]: [, input[_so]],
|
|
10279
|
+
[_sb]: [, input[_sb]],
|
|
10280
|
+
});
|
|
10281
|
+
let body;
|
|
10282
|
+
b.m("GET")
|
|
10283
|
+
.h(headers)
|
|
10284
|
+
.q(query)
|
|
10285
|
+
.b(body);
|
|
10286
|
+
return b.build();
|
|
10287
|
+
};
|
|
10288
|
+
Aws_restJson1.se_ListVariablesCommand = se_ListVariablesCommand;
|
|
10202
10289
|
const se_ListVersionsCommand = async (input, context) => {
|
|
10203
10290
|
const b = (0, core_2.requestBuilder)(input, context);
|
|
10204
10291
|
const headers = (0, smithy_client_1.map)({}, smithy_client_1.isSerializableHeaderValue, {
|
|
@@ -10595,6 +10682,27 @@ function requireAws_restJson1 () {
|
|
|
10595
10682
|
return b.build();
|
|
10596
10683
|
};
|
|
10597
10684
|
Aws_restJson1.se_UpdateTypeTemplatesCommand = se_UpdateTypeTemplatesCommand;
|
|
10685
|
+
const se_UpdateVariableCommand = async (input, context) => {
|
|
10686
|
+
const b = (0, core_2.requestBuilder)(input, context);
|
|
10687
|
+
const headers = (0, smithy_client_1.map)({}, smithy_client_1.isSerializableHeaderValue, {
|
|
10688
|
+
'content-type': 'application/json',
|
|
10689
|
+
[_xw]: input[_wi],
|
|
10690
|
+
[_xoi]: input[_oi],
|
|
10691
|
+
});
|
|
10692
|
+
b.bp("/variables/{name}");
|
|
10693
|
+
b.p('name', () => input.name, '{name}', false);
|
|
10694
|
+
let body;
|
|
10695
|
+
body = JSON.stringify((0, smithy_client_1.take)(input, {
|
|
10696
|
+
'change_reason': [],
|
|
10697
|
+
'description': [],
|
|
10698
|
+
'value': [],
|
|
10699
|
+
}));
|
|
10700
|
+
b.m("PATCH")
|
|
10701
|
+
.h(headers)
|
|
10702
|
+
.b(body);
|
|
10703
|
+
return b.build();
|
|
10704
|
+
};
|
|
10705
|
+
Aws_restJson1.se_UpdateVariableCommand = se_UpdateVariableCommand;
|
|
10598
10706
|
const se_UpdateWebhookCommand = async (input, context) => {
|
|
10599
10707
|
const b = (0, core_2.requestBuilder)(input, context);
|
|
10600
10708
|
const headers = (0, smithy_client_1.map)({}, smithy_client_1.isSerializableHeaderValue, {
|
|
@@ -10986,6 +11094,28 @@ function requireAws_restJson1 () {
|
|
|
10986
11094
|
return contents;
|
|
10987
11095
|
};
|
|
10988
11096
|
Aws_restJson1.de_CreateTypeTemplatesCommand = de_CreateTypeTemplatesCommand;
|
|
11097
|
+
const de_CreateVariableCommand = async (output, context) => {
|
|
11098
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
11099
|
+
return de_CommandError(output, context);
|
|
11100
|
+
}
|
|
11101
|
+
const contents = (0, smithy_client_1.map)({
|
|
11102
|
+
$metadata: deserializeMetadata(output),
|
|
11103
|
+
});
|
|
11104
|
+
const data = (0, smithy_client_1.expectNonNull)(((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context))), "body");
|
|
11105
|
+
const doc = (0, smithy_client_1.take)(data, {
|
|
11106
|
+
'change_reason': smithy_client_1.expectString,
|
|
11107
|
+
'created_at': _ => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
|
|
11108
|
+
'created_by': smithy_client_1.expectString,
|
|
11109
|
+
'description': smithy_client_1.expectString,
|
|
11110
|
+
'last_modified_at': _ => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
|
|
11111
|
+
'last_modified_by': smithy_client_1.expectString,
|
|
11112
|
+
'name': smithy_client_1.expectString,
|
|
11113
|
+
'value': smithy_client_1.expectString,
|
|
11114
|
+
});
|
|
11115
|
+
Object.assign(contents, doc);
|
|
11116
|
+
return contents;
|
|
11117
|
+
};
|
|
11118
|
+
Aws_restJson1.de_CreateVariableCommand = de_CreateVariableCommand;
|
|
10989
11119
|
const de_CreateWebhookCommand = async (output, context) => {
|
|
10990
11120
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
10991
11121
|
return de_CommandError(output, context);
|
|
@@ -11139,6 +11269,28 @@ function requireAws_restJson1 () {
|
|
|
11139
11269
|
return contents;
|
|
11140
11270
|
};
|
|
11141
11271
|
Aws_restJson1.de_DeleteTypeTemplatesCommand = de_DeleteTypeTemplatesCommand;
|
|
11272
|
+
const de_DeleteVariableCommand = async (output, context) => {
|
|
11273
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
11274
|
+
return de_CommandError(output, context);
|
|
11275
|
+
}
|
|
11276
|
+
const contents = (0, smithy_client_1.map)({
|
|
11277
|
+
$metadata: deserializeMetadata(output),
|
|
11278
|
+
});
|
|
11279
|
+
const data = (0, smithy_client_1.expectNonNull)(((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context))), "body");
|
|
11280
|
+
const doc = (0, smithy_client_1.take)(data, {
|
|
11281
|
+
'change_reason': smithy_client_1.expectString,
|
|
11282
|
+
'created_at': _ => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
|
|
11283
|
+
'created_by': smithy_client_1.expectString,
|
|
11284
|
+
'description': smithy_client_1.expectString,
|
|
11285
|
+
'last_modified_at': _ => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
|
|
11286
|
+
'last_modified_by': smithy_client_1.expectString,
|
|
11287
|
+
'name': smithy_client_1.expectString,
|
|
11288
|
+
'value': smithy_client_1.expectString,
|
|
11289
|
+
});
|
|
11290
|
+
Object.assign(contents, doc);
|
|
11291
|
+
return contents;
|
|
11292
|
+
};
|
|
11293
|
+
Aws_restJson1.de_DeleteVariableCommand = de_DeleteVariableCommand;
|
|
11142
11294
|
const de_DeleteWebhookCommand = async (output, context) => {
|
|
11143
11295
|
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
11144
11296
|
return de_CommandError(output, context);
|
|
@@ -11495,6 +11647,28 @@ function requireAws_restJson1 () {
|
|
|
11495
11647
|
return contents;
|
|
11496
11648
|
};
|
|
11497
11649
|
Aws_restJson1.de_GetTypeTemplatesListCommand = de_GetTypeTemplatesListCommand;
|
|
11650
|
+
const de_GetVariableCommand = async (output, context) => {
|
|
11651
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
11652
|
+
return de_CommandError(output, context);
|
|
11653
|
+
}
|
|
11654
|
+
const contents = (0, smithy_client_1.map)({
|
|
11655
|
+
$metadata: deserializeMetadata(output),
|
|
11656
|
+
});
|
|
11657
|
+
const data = (0, smithy_client_1.expectNonNull)(((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context))), "body");
|
|
11658
|
+
const doc = (0, smithy_client_1.take)(data, {
|
|
11659
|
+
'change_reason': smithy_client_1.expectString,
|
|
11660
|
+
'created_at': _ => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
|
|
11661
|
+
'created_by': smithy_client_1.expectString,
|
|
11662
|
+
'description': smithy_client_1.expectString,
|
|
11663
|
+
'last_modified_at': _ => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
|
|
11664
|
+
'last_modified_by': smithy_client_1.expectString,
|
|
11665
|
+
'name': smithy_client_1.expectString,
|
|
11666
|
+
'value': smithy_client_1.expectString,
|
|
11667
|
+
});
|
|
11668
|
+
Object.assign(contents, doc);
|
|
11669
|
+
return contents;
|
|
11670
|
+
};
|
|
11671
|
+
Aws_restJson1.de_GetVariableCommand = de_GetVariableCommand;
|
|
11498
11672
|
const de_GetVersionCommand = async (output, context) => {
|
|
11499
11673
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
11500
11674
|
return de_CommandError(output, context);
|
|
@@ -11739,6 +11913,23 @@ function requireAws_restJson1 () {
|
|
|
11739
11913
|
return contents;
|
|
11740
11914
|
};
|
|
11741
11915
|
Aws_restJson1.de_ListOrganisationCommand = de_ListOrganisationCommand;
|
|
11916
|
+
const de_ListVariablesCommand = async (output, context) => {
|
|
11917
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
11918
|
+
return de_CommandError(output, context);
|
|
11919
|
+
}
|
|
11920
|
+
const contents = (0, smithy_client_1.map)({
|
|
11921
|
+
$metadata: deserializeMetadata(output),
|
|
11922
|
+
});
|
|
11923
|
+
const data = (0, smithy_client_1.expectNonNull)(((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context))), "body");
|
|
11924
|
+
const doc = (0, smithy_client_1.take)(data, {
|
|
11925
|
+
'data': _ => de_VariableList(_),
|
|
11926
|
+
'total_items': smithy_client_1.expectInt32,
|
|
11927
|
+
'total_pages': smithy_client_1.expectInt32,
|
|
11928
|
+
});
|
|
11929
|
+
Object.assign(contents, doc);
|
|
11930
|
+
return contents;
|
|
11931
|
+
};
|
|
11932
|
+
Aws_restJson1.de_ListVariablesCommand = de_ListVariablesCommand;
|
|
11742
11933
|
const de_ListVersionsCommand = async (output, context) => {
|
|
11743
11934
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
11744
11935
|
return de_CommandError(output, context);
|
|
@@ -12236,6 +12427,28 @@ function requireAws_restJson1 () {
|
|
|
12236
12427
|
return contents;
|
|
12237
12428
|
};
|
|
12238
12429
|
Aws_restJson1.de_UpdateTypeTemplatesCommand = de_UpdateTypeTemplatesCommand;
|
|
12430
|
+
const de_UpdateVariableCommand = async (output, context) => {
|
|
12431
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
12432
|
+
return de_CommandError(output, context);
|
|
12433
|
+
}
|
|
12434
|
+
const contents = (0, smithy_client_1.map)({
|
|
12435
|
+
$metadata: deserializeMetadata(output),
|
|
12436
|
+
});
|
|
12437
|
+
const data = (0, smithy_client_1.expectNonNull)(((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context))), "body");
|
|
12438
|
+
const doc = (0, smithy_client_1.take)(data, {
|
|
12439
|
+
'change_reason': smithy_client_1.expectString,
|
|
12440
|
+
'created_at': _ => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
|
|
12441
|
+
'created_by': smithy_client_1.expectString,
|
|
12442
|
+
'description': smithy_client_1.expectString,
|
|
12443
|
+
'last_modified_at': _ => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
|
|
12444
|
+
'last_modified_by': smithy_client_1.expectString,
|
|
12445
|
+
'name': smithy_client_1.expectString,
|
|
12446
|
+
'value': smithy_client_1.expectString,
|
|
12447
|
+
});
|
|
12448
|
+
Object.assign(contents, doc);
|
|
12449
|
+
return contents;
|
|
12450
|
+
};
|
|
12451
|
+
Aws_restJson1.de_UpdateVariableCommand = de_UpdateVariableCommand;
|
|
12239
12452
|
const de_UpdateWebhookCommand = async (output, context) => {
|
|
12240
12453
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
12241
12454
|
return de_CommandError(output, context);
|
|
@@ -12830,6 +13043,24 @@ function requireAws_restJson1 () {
|
|
|
12830
13043
|
'type_schema': (_) => de_Object(_),
|
|
12831
13044
|
});
|
|
12832
13045
|
};
|
|
13046
|
+
const de_VariableList = (output, context) => {
|
|
13047
|
+
const retVal = (output || []).filter((e) => e != null).map((entry) => {
|
|
13048
|
+
return de_VariableResponse(entry);
|
|
13049
|
+
});
|
|
13050
|
+
return retVal;
|
|
13051
|
+
};
|
|
13052
|
+
const de_VariableResponse = (output, context) => {
|
|
13053
|
+
return (0, smithy_client_1.take)(output, {
|
|
13054
|
+
'change_reason': smithy_client_1.expectString,
|
|
13055
|
+
'created_at': (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
|
|
13056
|
+
'created_by': smithy_client_1.expectString,
|
|
13057
|
+
'description': smithy_client_1.expectString,
|
|
13058
|
+
'last_modified_at': (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
|
|
13059
|
+
'last_modified_by': smithy_client_1.expectString,
|
|
13060
|
+
'name': smithy_client_1.expectString,
|
|
13061
|
+
'value': smithy_client_1.expectString,
|
|
13062
|
+
});
|
|
13063
|
+
};
|
|
12833
13064
|
const de_Variant = (output, context) => {
|
|
12834
13065
|
return (0, smithy_client_1.take)(output, {
|
|
12835
13066
|
'context_id': smithy_client_1.expectString,
|
|
@@ -12970,7 +13201,7 @@ function requireAddMembersToGroupCommand () {
|
|
|
12970
13201
|
exports.AddMembersToGroupCommand = exports.$Command = void 0;
|
|
12971
13202
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
12972
13203
|
const middleware_serde_1 = require$$1;
|
|
12973
|
-
const smithy_client_1 = require$$
|
|
13204
|
+
const smithy_client_1 = require$$76;
|
|
12974
13205
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
12975
13206
|
class AddMembersToGroupCommand extends smithy_client_1.Command.classBuilder()
|
|
12976
13207
|
.m(function (Command, cs, config, o) {
|
|
@@ -13002,7 +13233,7 @@ function requireApplicableVariantsCommand () {
|
|
|
13002
13233
|
exports.ApplicableVariantsCommand = exports.$Command = void 0;
|
|
13003
13234
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
13004
13235
|
const middleware_serde_1 = require$$1;
|
|
13005
|
-
const smithy_client_1 = require$$
|
|
13236
|
+
const smithy_client_1 = require$$76;
|
|
13006
13237
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
13007
13238
|
class ApplicableVariantsCommand extends smithy_client_1.Command.classBuilder()
|
|
13008
13239
|
.m(function (Command, cs, config, o) {
|
|
@@ -13034,7 +13265,7 @@ function requireBulkOperationCommand () {
|
|
|
13034
13265
|
exports.BulkOperationCommand = exports.$Command = void 0;
|
|
13035
13266
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
13036
13267
|
const middleware_serde_1 = require$$1;
|
|
13037
|
-
const smithy_client_1 = require$$
|
|
13268
|
+
const smithy_client_1 = require$$76;
|
|
13038
13269
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
13039
13270
|
class BulkOperationCommand extends smithy_client_1.Command.classBuilder()
|
|
13040
13271
|
.m(function (Command, cs, config, o) {
|
|
@@ -13066,7 +13297,7 @@ function requireConcludeExperimentCommand () {
|
|
|
13066
13297
|
exports.ConcludeExperimentCommand = exports.$Command = void 0;
|
|
13067
13298
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
13068
13299
|
const middleware_serde_1 = require$$1;
|
|
13069
|
-
const smithy_client_1 = require$$
|
|
13300
|
+
const smithy_client_1 = require$$76;
|
|
13070
13301
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
13071
13302
|
class ConcludeExperimentCommand extends smithy_client_1.Command.classBuilder()
|
|
13072
13303
|
.m(function (Command, cs, config, o) {
|
|
@@ -13098,7 +13329,7 @@ function requireCreateContextCommand () {
|
|
|
13098
13329
|
exports.CreateContextCommand = exports.$Command = void 0;
|
|
13099
13330
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
13100
13331
|
const middleware_serde_1 = require$$1;
|
|
13101
|
-
const smithy_client_1 = require$$
|
|
13332
|
+
const smithy_client_1 = require$$76;
|
|
13102
13333
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
13103
13334
|
class CreateContextCommand extends smithy_client_1.Command.classBuilder()
|
|
13104
13335
|
.m(function (Command, cs, config, o) {
|
|
@@ -13130,7 +13361,7 @@ function requireCreateDefaultConfigCommand () {
|
|
|
13130
13361
|
exports.CreateDefaultConfigCommand = exports.$Command = void 0;
|
|
13131
13362
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
13132
13363
|
const middleware_serde_1 = require$$1;
|
|
13133
|
-
const smithy_client_1 = require$$
|
|
13364
|
+
const smithy_client_1 = require$$76;
|
|
13134
13365
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
13135
13366
|
class CreateDefaultConfigCommand extends smithy_client_1.Command.classBuilder()
|
|
13136
13367
|
.m(function (Command, cs, config, o) {
|
|
@@ -13162,7 +13393,7 @@ function requireCreateDimensionCommand () {
|
|
|
13162
13393
|
exports.CreateDimensionCommand = exports.$Command = void 0;
|
|
13163
13394
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
13164
13395
|
const middleware_serde_1 = require$$1;
|
|
13165
|
-
const smithy_client_1 = require$$
|
|
13396
|
+
const smithy_client_1 = require$$76;
|
|
13166
13397
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
13167
13398
|
class CreateDimensionCommand extends smithy_client_1.Command.classBuilder()
|
|
13168
13399
|
.m(function (Command, cs, config, o) {
|
|
@@ -13194,7 +13425,7 @@ function requireCreateExperimentCommand () {
|
|
|
13194
13425
|
exports.CreateExperimentCommand = exports.$Command = void 0;
|
|
13195
13426
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
13196
13427
|
const middleware_serde_1 = require$$1;
|
|
13197
|
-
const smithy_client_1 = require$$
|
|
13428
|
+
const smithy_client_1 = require$$76;
|
|
13198
13429
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
13199
13430
|
class CreateExperimentCommand extends smithy_client_1.Command.classBuilder()
|
|
13200
13431
|
.m(function (Command, cs, config, o) {
|
|
@@ -13226,7 +13457,7 @@ function requireCreateExperimentGroupCommand () {
|
|
|
13226
13457
|
exports.CreateExperimentGroupCommand = exports.$Command = void 0;
|
|
13227
13458
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
13228
13459
|
const middleware_serde_1 = require$$1;
|
|
13229
|
-
const smithy_client_1 = require$$
|
|
13460
|
+
const smithy_client_1 = require$$76;
|
|
13230
13461
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
13231
13462
|
class CreateExperimentGroupCommand extends smithy_client_1.Command.classBuilder()
|
|
13232
13463
|
.m(function (Command, cs, config, o) {
|
|
@@ -13258,7 +13489,7 @@ function requireCreateFunctionCommand () {
|
|
|
13258
13489
|
exports.CreateFunctionCommand = exports.$Command = void 0;
|
|
13259
13490
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
13260
13491
|
const middleware_serde_1 = require$$1;
|
|
13261
|
-
const smithy_client_1 = require$$
|
|
13492
|
+
const smithy_client_1 = require$$76;
|
|
13262
13493
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
13263
13494
|
class CreateFunctionCommand extends smithy_client_1.Command.classBuilder()
|
|
13264
13495
|
.m(function (Command, cs, config, o) {
|
|
@@ -13290,7 +13521,7 @@ function requireCreateOrganisationCommand () {
|
|
|
13290
13521
|
exports.CreateOrganisationCommand = exports.$Command = void 0;
|
|
13291
13522
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
13292
13523
|
const middleware_serde_1 = require$$1;
|
|
13293
|
-
const smithy_client_1 = require$$
|
|
13524
|
+
const smithy_client_1 = require$$76;
|
|
13294
13525
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
13295
13526
|
class CreateOrganisationCommand extends smithy_client_1.Command.classBuilder()
|
|
13296
13527
|
.m(function (Command, cs, config, o) {
|
|
@@ -13322,7 +13553,7 @@ function requireCreateTypeTemplatesCommand () {
|
|
|
13322
13553
|
exports.CreateTypeTemplatesCommand = exports.$Command = void 0;
|
|
13323
13554
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
13324
13555
|
const middleware_serde_1 = require$$1;
|
|
13325
|
-
const smithy_client_1 = require$$
|
|
13556
|
+
const smithy_client_1 = require$$76;
|
|
13326
13557
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
13327
13558
|
class CreateTypeTemplatesCommand extends smithy_client_1.Command.classBuilder()
|
|
13328
13559
|
.m(function (Command, cs, config, o) {
|
|
@@ -13342,6 +13573,38 @@ function requireCreateTypeTemplatesCommand () {
|
|
|
13342
13573
|
return CreateTypeTemplatesCommand;
|
|
13343
13574
|
}
|
|
13344
13575
|
|
|
13576
|
+
var CreateVariableCommand = {};
|
|
13577
|
+
|
|
13578
|
+
var hasRequiredCreateVariableCommand;
|
|
13579
|
+
|
|
13580
|
+
function requireCreateVariableCommand () {
|
|
13581
|
+
if (hasRequiredCreateVariableCommand) return CreateVariableCommand;
|
|
13582
|
+
hasRequiredCreateVariableCommand = 1;
|
|
13583
|
+
(function (exports) {
|
|
13584
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13585
|
+
exports.CreateVariableCommand = exports.$Command = void 0;
|
|
13586
|
+
const Aws_restJson1_1 = requireAws_restJson1();
|
|
13587
|
+
const middleware_serde_1 = require$$1;
|
|
13588
|
+
const smithy_client_1 = require$$76;
|
|
13589
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
13590
|
+
class CreateVariableCommand extends smithy_client_1.Command.classBuilder()
|
|
13591
|
+
.m(function (Command, cs, config, o) {
|
|
13592
|
+
return [
|
|
13593
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
13594
|
+
];
|
|
13595
|
+
})
|
|
13596
|
+
.s("Superposition", "CreateVariable", {})
|
|
13597
|
+
.n("SuperpositionClient", "CreateVariableCommand")
|
|
13598
|
+
.f(void 0, void 0)
|
|
13599
|
+
.ser(Aws_restJson1_1.se_CreateVariableCommand)
|
|
13600
|
+
.de(Aws_restJson1_1.de_CreateVariableCommand)
|
|
13601
|
+
.build() {
|
|
13602
|
+
}
|
|
13603
|
+
exports.CreateVariableCommand = CreateVariableCommand;
|
|
13604
|
+
} (CreateVariableCommand));
|
|
13605
|
+
return CreateVariableCommand;
|
|
13606
|
+
}
|
|
13607
|
+
|
|
13345
13608
|
var CreateWebhookCommand = {};
|
|
13346
13609
|
|
|
13347
13610
|
var hasRequiredCreateWebhookCommand;
|
|
@@ -13354,7 +13617,7 @@ function requireCreateWebhookCommand () {
|
|
|
13354
13617
|
exports.CreateWebhookCommand = exports.$Command = void 0;
|
|
13355
13618
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
13356
13619
|
const middleware_serde_1 = require$$1;
|
|
13357
|
-
const smithy_client_1 = require$$
|
|
13620
|
+
const smithy_client_1 = require$$76;
|
|
13358
13621
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
13359
13622
|
class CreateWebhookCommand extends smithy_client_1.Command.classBuilder()
|
|
13360
13623
|
.m(function (Command, cs, config, o) {
|
|
@@ -13386,7 +13649,7 @@ function requireCreateWorkspaceCommand () {
|
|
|
13386
13649
|
exports.CreateWorkspaceCommand = exports.$Command = void 0;
|
|
13387
13650
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
13388
13651
|
const middleware_serde_1 = require$$1;
|
|
13389
|
-
const smithy_client_1 = require$$
|
|
13652
|
+
const smithy_client_1 = require$$76;
|
|
13390
13653
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
13391
13654
|
class CreateWorkspaceCommand extends smithy_client_1.Command.classBuilder()
|
|
13392
13655
|
.m(function (Command, cs, config, o) {
|
|
@@ -13418,7 +13681,7 @@ function requireDeleteContextCommand () {
|
|
|
13418
13681
|
exports.DeleteContextCommand = exports.$Command = void 0;
|
|
13419
13682
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
13420
13683
|
const middleware_serde_1 = require$$1;
|
|
13421
|
-
const smithy_client_1 = require$$
|
|
13684
|
+
const smithy_client_1 = require$$76;
|
|
13422
13685
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
13423
13686
|
class DeleteContextCommand extends smithy_client_1.Command.classBuilder()
|
|
13424
13687
|
.m(function (Command, cs, config, o) {
|
|
@@ -13450,7 +13713,7 @@ function requireDeleteDefaultConfigCommand () {
|
|
|
13450
13713
|
exports.DeleteDefaultConfigCommand = exports.$Command = void 0;
|
|
13451
13714
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
13452
13715
|
const middleware_serde_1 = require$$1;
|
|
13453
|
-
const smithy_client_1 = require$$
|
|
13716
|
+
const smithy_client_1 = require$$76;
|
|
13454
13717
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
13455
13718
|
class DeleteDefaultConfigCommand extends smithy_client_1.Command.classBuilder()
|
|
13456
13719
|
.m(function (Command, cs, config, o) {
|
|
@@ -13482,7 +13745,7 @@ function requireDeleteDimensionCommand () {
|
|
|
13482
13745
|
exports.DeleteDimensionCommand = exports.$Command = void 0;
|
|
13483
13746
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
13484
13747
|
const middleware_serde_1 = require$$1;
|
|
13485
|
-
const smithy_client_1 = require$$
|
|
13748
|
+
const smithy_client_1 = require$$76;
|
|
13486
13749
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
13487
13750
|
class DeleteDimensionCommand extends smithy_client_1.Command.classBuilder()
|
|
13488
13751
|
.m(function (Command, cs, config, o) {
|
|
@@ -13514,7 +13777,7 @@ function requireDeleteExperimentGroupCommand () {
|
|
|
13514
13777
|
exports.DeleteExperimentGroupCommand = exports.$Command = void 0;
|
|
13515
13778
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
13516
13779
|
const middleware_serde_1 = require$$1;
|
|
13517
|
-
const smithy_client_1 = require$$
|
|
13780
|
+
const smithy_client_1 = require$$76;
|
|
13518
13781
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
13519
13782
|
class DeleteExperimentGroupCommand extends smithy_client_1.Command.classBuilder()
|
|
13520
13783
|
.m(function (Command, cs, config, o) {
|
|
@@ -13546,7 +13809,7 @@ function requireDeleteFunctionCommand () {
|
|
|
13546
13809
|
exports.DeleteFunctionCommand = exports.$Command = void 0;
|
|
13547
13810
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
13548
13811
|
const middleware_serde_1 = require$$1;
|
|
13549
|
-
const smithy_client_1 = require$$
|
|
13812
|
+
const smithy_client_1 = require$$76;
|
|
13550
13813
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
13551
13814
|
class DeleteFunctionCommand extends smithy_client_1.Command.classBuilder()
|
|
13552
13815
|
.m(function (Command, cs, config, o) {
|
|
@@ -13578,7 +13841,7 @@ function requireDeleteTypeTemplatesCommand () {
|
|
|
13578
13841
|
exports.DeleteTypeTemplatesCommand = exports.$Command = void 0;
|
|
13579
13842
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
13580
13843
|
const middleware_serde_1 = require$$1;
|
|
13581
|
-
const smithy_client_1 = require$$
|
|
13844
|
+
const smithy_client_1 = require$$76;
|
|
13582
13845
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
13583
13846
|
class DeleteTypeTemplatesCommand extends smithy_client_1.Command.classBuilder()
|
|
13584
13847
|
.m(function (Command, cs, config, o) {
|
|
@@ -13598,6 +13861,38 @@ function requireDeleteTypeTemplatesCommand () {
|
|
|
13598
13861
|
return DeleteTypeTemplatesCommand;
|
|
13599
13862
|
}
|
|
13600
13863
|
|
|
13864
|
+
var DeleteVariableCommand = {};
|
|
13865
|
+
|
|
13866
|
+
var hasRequiredDeleteVariableCommand;
|
|
13867
|
+
|
|
13868
|
+
function requireDeleteVariableCommand () {
|
|
13869
|
+
if (hasRequiredDeleteVariableCommand) return DeleteVariableCommand;
|
|
13870
|
+
hasRequiredDeleteVariableCommand = 1;
|
|
13871
|
+
(function (exports) {
|
|
13872
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13873
|
+
exports.DeleteVariableCommand = exports.$Command = void 0;
|
|
13874
|
+
const Aws_restJson1_1 = requireAws_restJson1();
|
|
13875
|
+
const middleware_serde_1 = require$$1;
|
|
13876
|
+
const smithy_client_1 = require$$76;
|
|
13877
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
13878
|
+
class DeleteVariableCommand extends smithy_client_1.Command.classBuilder()
|
|
13879
|
+
.m(function (Command, cs, config, o) {
|
|
13880
|
+
return [
|
|
13881
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
13882
|
+
];
|
|
13883
|
+
})
|
|
13884
|
+
.s("Superposition", "DeleteVariable", {})
|
|
13885
|
+
.n("SuperpositionClient", "DeleteVariableCommand")
|
|
13886
|
+
.f(void 0, void 0)
|
|
13887
|
+
.ser(Aws_restJson1_1.se_DeleteVariableCommand)
|
|
13888
|
+
.de(Aws_restJson1_1.de_DeleteVariableCommand)
|
|
13889
|
+
.build() {
|
|
13890
|
+
}
|
|
13891
|
+
exports.DeleteVariableCommand = DeleteVariableCommand;
|
|
13892
|
+
} (DeleteVariableCommand));
|
|
13893
|
+
return DeleteVariableCommand;
|
|
13894
|
+
}
|
|
13895
|
+
|
|
13601
13896
|
var DeleteWebhookCommand = {};
|
|
13602
13897
|
|
|
13603
13898
|
var hasRequiredDeleteWebhookCommand;
|
|
@@ -13610,7 +13905,7 @@ function requireDeleteWebhookCommand () {
|
|
|
13610
13905
|
exports.DeleteWebhookCommand = exports.$Command = void 0;
|
|
13611
13906
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
13612
13907
|
const middleware_serde_1 = require$$1;
|
|
13613
|
-
const smithy_client_1 = require$$
|
|
13908
|
+
const smithy_client_1 = require$$76;
|
|
13614
13909
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
13615
13910
|
class DeleteWebhookCommand extends smithy_client_1.Command.classBuilder()
|
|
13616
13911
|
.m(function (Command, cs, config, o) {
|
|
@@ -13642,7 +13937,7 @@ function requireDiscardExperimentCommand () {
|
|
|
13642
13937
|
exports.DiscardExperimentCommand = exports.$Command = void 0;
|
|
13643
13938
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
13644
13939
|
const middleware_serde_1 = require$$1;
|
|
13645
|
-
const smithy_client_1 = require$$
|
|
13940
|
+
const smithy_client_1 = require$$76;
|
|
13646
13941
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
13647
13942
|
class DiscardExperimentCommand extends smithy_client_1.Command.classBuilder()
|
|
13648
13943
|
.m(function (Command, cs, config, o) {
|
|
@@ -13674,7 +13969,7 @@ function requireGetConfigCommand () {
|
|
|
13674
13969
|
exports.GetConfigCommand = exports.$Command = void 0;
|
|
13675
13970
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
13676
13971
|
const middleware_serde_1 = require$$1;
|
|
13677
|
-
const smithy_client_1 = require$$
|
|
13972
|
+
const smithy_client_1 = require$$76;
|
|
13678
13973
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
13679
13974
|
class GetConfigCommand extends smithy_client_1.Command.classBuilder()
|
|
13680
13975
|
.m(function (Command, cs, config, o) {
|
|
@@ -13706,7 +14001,7 @@ function requireGetConfigFastCommand () {
|
|
|
13706
14001
|
exports.GetConfigFastCommand = exports.$Command = void 0;
|
|
13707
14002
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
13708
14003
|
const middleware_serde_1 = require$$1;
|
|
13709
|
-
const smithy_client_1 = require$$
|
|
14004
|
+
const smithy_client_1 = require$$76;
|
|
13710
14005
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
13711
14006
|
class GetConfigFastCommand extends smithy_client_1.Command.classBuilder()
|
|
13712
14007
|
.m(function (Command, cs, config, o) {
|
|
@@ -13738,7 +14033,7 @@ function requireGetContextCommand () {
|
|
|
13738
14033
|
exports.GetContextCommand = exports.$Command = void 0;
|
|
13739
14034
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
13740
14035
|
const middleware_serde_1 = require$$1;
|
|
13741
|
-
const smithy_client_1 = require$$
|
|
14036
|
+
const smithy_client_1 = require$$76;
|
|
13742
14037
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
13743
14038
|
class GetContextCommand extends smithy_client_1.Command.classBuilder()
|
|
13744
14039
|
.m(function (Command, cs, config, o) {
|
|
@@ -13770,7 +14065,7 @@ function requireGetContextFromConditionCommand () {
|
|
|
13770
14065
|
exports.GetContextFromConditionCommand = exports.$Command = void 0;
|
|
13771
14066
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
13772
14067
|
const middleware_serde_1 = require$$1;
|
|
13773
|
-
const smithy_client_1 = require$$
|
|
14068
|
+
const smithy_client_1 = require$$76;
|
|
13774
14069
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
13775
14070
|
class GetContextFromConditionCommand extends smithy_client_1.Command.classBuilder()
|
|
13776
14071
|
.m(function (Command, cs, config, o) {
|
|
@@ -13802,7 +14097,7 @@ function requireGetDefaultConfigCommand () {
|
|
|
13802
14097
|
exports.GetDefaultConfigCommand = exports.$Command = void 0;
|
|
13803
14098
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
13804
14099
|
const middleware_serde_1 = require$$1;
|
|
13805
|
-
const smithy_client_1 = require$$
|
|
14100
|
+
const smithy_client_1 = require$$76;
|
|
13806
14101
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
13807
14102
|
class GetDefaultConfigCommand extends smithy_client_1.Command.classBuilder()
|
|
13808
14103
|
.m(function (Command, cs, config, o) {
|
|
@@ -13834,7 +14129,7 @@ function requireGetDimensionCommand () {
|
|
|
13834
14129
|
exports.GetDimensionCommand = exports.$Command = void 0;
|
|
13835
14130
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
13836
14131
|
const middleware_serde_1 = require$$1;
|
|
13837
|
-
const smithy_client_1 = require$$
|
|
14132
|
+
const smithy_client_1 = require$$76;
|
|
13838
14133
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
13839
14134
|
class GetDimensionCommand extends smithy_client_1.Command.classBuilder()
|
|
13840
14135
|
.m(function (Command, cs, config, o) {
|
|
@@ -13866,7 +14161,7 @@ function requireGetExperimentCommand () {
|
|
|
13866
14161
|
exports.GetExperimentCommand = exports.$Command = void 0;
|
|
13867
14162
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
13868
14163
|
const middleware_serde_1 = require$$1;
|
|
13869
|
-
const smithy_client_1 = require$$
|
|
14164
|
+
const smithy_client_1 = require$$76;
|
|
13870
14165
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
13871
14166
|
class GetExperimentCommand extends smithy_client_1.Command.classBuilder()
|
|
13872
14167
|
.m(function (Command, cs, config, o) {
|
|
@@ -13898,7 +14193,7 @@ function requireGetExperimentGroupCommand () {
|
|
|
13898
14193
|
exports.GetExperimentGroupCommand = exports.$Command = void 0;
|
|
13899
14194
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
13900
14195
|
const middleware_serde_1 = require$$1;
|
|
13901
|
-
const smithy_client_1 = require$$
|
|
14196
|
+
const smithy_client_1 = require$$76;
|
|
13902
14197
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
13903
14198
|
class GetExperimentGroupCommand extends smithy_client_1.Command.classBuilder()
|
|
13904
14199
|
.m(function (Command, cs, config, o) {
|
|
@@ -13930,7 +14225,7 @@ function requireGetFunctionCommand () {
|
|
|
13930
14225
|
exports.GetFunctionCommand = exports.$Command = void 0;
|
|
13931
14226
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
13932
14227
|
const middleware_serde_1 = require$$1;
|
|
13933
|
-
const smithy_client_1 = require$$
|
|
14228
|
+
const smithy_client_1 = require$$76;
|
|
13934
14229
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
13935
14230
|
class GetFunctionCommand extends smithy_client_1.Command.classBuilder()
|
|
13936
14231
|
.m(function (Command, cs, config, o) {
|
|
@@ -13962,7 +14257,7 @@ function requireGetOrganisationCommand () {
|
|
|
13962
14257
|
exports.GetOrganisationCommand = exports.$Command = void 0;
|
|
13963
14258
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
13964
14259
|
const middleware_serde_1 = require$$1;
|
|
13965
|
-
const smithy_client_1 = require$$
|
|
14260
|
+
const smithy_client_1 = require$$76;
|
|
13966
14261
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
13967
14262
|
class GetOrganisationCommand extends smithy_client_1.Command.classBuilder()
|
|
13968
14263
|
.m(function (Command, cs, config, o) {
|
|
@@ -13994,7 +14289,7 @@ function requireGetResolvedConfigCommand () {
|
|
|
13994
14289
|
exports.GetResolvedConfigCommand = exports.$Command = void 0;
|
|
13995
14290
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
13996
14291
|
const middleware_serde_1 = require$$1;
|
|
13997
|
-
const smithy_client_1 = require$$
|
|
14292
|
+
const smithy_client_1 = require$$76;
|
|
13998
14293
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
13999
14294
|
class GetResolvedConfigCommand extends smithy_client_1.Command.classBuilder()
|
|
14000
14295
|
.m(function (Command, cs, config, o) {
|
|
@@ -14026,7 +14321,7 @@ function requireGetTypeTemplateCommand () {
|
|
|
14026
14321
|
exports.GetTypeTemplateCommand = exports.$Command = void 0;
|
|
14027
14322
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
14028
14323
|
const middleware_serde_1 = require$$1;
|
|
14029
|
-
const smithy_client_1 = require$$
|
|
14324
|
+
const smithy_client_1 = require$$76;
|
|
14030
14325
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
14031
14326
|
class GetTypeTemplateCommand extends smithy_client_1.Command.classBuilder()
|
|
14032
14327
|
.m(function (Command, cs, config, o) {
|
|
@@ -14058,7 +14353,7 @@ function requireGetTypeTemplatesListCommand () {
|
|
|
14058
14353
|
exports.GetTypeTemplatesListCommand = exports.$Command = void 0;
|
|
14059
14354
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
14060
14355
|
const middleware_serde_1 = require$$1;
|
|
14061
|
-
const smithy_client_1 = require$$
|
|
14356
|
+
const smithy_client_1 = require$$76;
|
|
14062
14357
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
14063
14358
|
class GetTypeTemplatesListCommand extends smithy_client_1.Command.classBuilder()
|
|
14064
14359
|
.m(function (Command, cs, config, o) {
|
|
@@ -14078,6 +14373,38 @@ function requireGetTypeTemplatesListCommand () {
|
|
|
14078
14373
|
return GetTypeTemplatesListCommand;
|
|
14079
14374
|
}
|
|
14080
14375
|
|
|
14376
|
+
var GetVariableCommand = {};
|
|
14377
|
+
|
|
14378
|
+
var hasRequiredGetVariableCommand;
|
|
14379
|
+
|
|
14380
|
+
function requireGetVariableCommand () {
|
|
14381
|
+
if (hasRequiredGetVariableCommand) return GetVariableCommand;
|
|
14382
|
+
hasRequiredGetVariableCommand = 1;
|
|
14383
|
+
(function (exports) {
|
|
14384
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14385
|
+
exports.GetVariableCommand = exports.$Command = void 0;
|
|
14386
|
+
const Aws_restJson1_1 = requireAws_restJson1();
|
|
14387
|
+
const middleware_serde_1 = require$$1;
|
|
14388
|
+
const smithy_client_1 = require$$76;
|
|
14389
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
14390
|
+
class GetVariableCommand extends smithy_client_1.Command.classBuilder()
|
|
14391
|
+
.m(function (Command, cs, config, o) {
|
|
14392
|
+
return [
|
|
14393
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
14394
|
+
];
|
|
14395
|
+
})
|
|
14396
|
+
.s("Superposition", "GetVariable", {})
|
|
14397
|
+
.n("SuperpositionClient", "GetVariableCommand")
|
|
14398
|
+
.f(void 0, void 0)
|
|
14399
|
+
.ser(Aws_restJson1_1.se_GetVariableCommand)
|
|
14400
|
+
.de(Aws_restJson1_1.de_GetVariableCommand)
|
|
14401
|
+
.build() {
|
|
14402
|
+
}
|
|
14403
|
+
exports.GetVariableCommand = GetVariableCommand;
|
|
14404
|
+
} (GetVariableCommand));
|
|
14405
|
+
return GetVariableCommand;
|
|
14406
|
+
}
|
|
14407
|
+
|
|
14081
14408
|
var GetVersionCommand = {};
|
|
14082
14409
|
|
|
14083
14410
|
var hasRequiredGetVersionCommand;
|
|
@@ -14090,7 +14417,7 @@ function requireGetVersionCommand () {
|
|
|
14090
14417
|
exports.GetVersionCommand = exports.$Command = void 0;
|
|
14091
14418
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
14092
14419
|
const middleware_serde_1 = require$$1;
|
|
14093
|
-
const smithy_client_1 = require$$
|
|
14420
|
+
const smithy_client_1 = require$$76;
|
|
14094
14421
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
14095
14422
|
class GetVersionCommand extends smithy_client_1.Command.classBuilder()
|
|
14096
14423
|
.m(function (Command, cs, config, o) {
|
|
@@ -14122,7 +14449,7 @@ function requireGetWebhookByEventCommand () {
|
|
|
14122
14449
|
exports.GetWebhookByEventCommand = exports.$Command = void 0;
|
|
14123
14450
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
14124
14451
|
const middleware_serde_1 = require$$1;
|
|
14125
|
-
const smithy_client_1 = require$$
|
|
14452
|
+
const smithy_client_1 = require$$76;
|
|
14126
14453
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
14127
14454
|
class GetWebhookByEventCommand extends smithy_client_1.Command.classBuilder()
|
|
14128
14455
|
.m(function (Command, cs, config, o) {
|
|
@@ -14154,7 +14481,7 @@ function requireGetWebhookCommand () {
|
|
|
14154
14481
|
exports.GetWebhookCommand = exports.$Command = void 0;
|
|
14155
14482
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
14156
14483
|
const middleware_serde_1 = require$$1;
|
|
14157
|
-
const smithy_client_1 = require$$
|
|
14484
|
+
const smithy_client_1 = require$$76;
|
|
14158
14485
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
14159
14486
|
class GetWebhookCommand extends smithy_client_1.Command.classBuilder()
|
|
14160
14487
|
.m(function (Command, cs, config, o) {
|
|
@@ -14186,7 +14513,7 @@ function requireGetWorkspaceCommand () {
|
|
|
14186
14513
|
exports.GetWorkspaceCommand = exports.$Command = void 0;
|
|
14187
14514
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
14188
14515
|
const middleware_serde_1 = require$$1;
|
|
14189
|
-
const smithy_client_1 = require$$
|
|
14516
|
+
const smithy_client_1 = require$$76;
|
|
14190
14517
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
14191
14518
|
class GetWorkspaceCommand extends smithy_client_1.Command.classBuilder()
|
|
14192
14519
|
.m(function (Command, cs, config, o) {
|
|
@@ -14218,7 +14545,7 @@ function requireListAuditLogsCommand () {
|
|
|
14218
14545
|
exports.ListAuditLogsCommand = exports.$Command = void 0;
|
|
14219
14546
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
14220
14547
|
const middleware_serde_1 = require$$1;
|
|
14221
|
-
const smithy_client_1 = require$$
|
|
14548
|
+
const smithy_client_1 = require$$76;
|
|
14222
14549
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
14223
14550
|
class ListAuditLogsCommand extends smithy_client_1.Command.classBuilder()
|
|
14224
14551
|
.m(function (Command, cs, config, o) {
|
|
@@ -14250,7 +14577,7 @@ function requireListContextsCommand () {
|
|
|
14250
14577
|
exports.ListContextsCommand = exports.$Command = void 0;
|
|
14251
14578
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
14252
14579
|
const middleware_serde_1 = require$$1;
|
|
14253
|
-
const smithy_client_1 = require$$
|
|
14580
|
+
const smithy_client_1 = require$$76;
|
|
14254
14581
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
14255
14582
|
class ListContextsCommand extends smithy_client_1.Command.classBuilder()
|
|
14256
14583
|
.m(function (Command, cs, config, o) {
|
|
@@ -14282,7 +14609,7 @@ function requireListDefaultConfigsCommand () {
|
|
|
14282
14609
|
exports.ListDefaultConfigsCommand = exports.$Command = void 0;
|
|
14283
14610
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
14284
14611
|
const middleware_serde_1 = require$$1;
|
|
14285
|
-
const smithy_client_1 = require$$
|
|
14612
|
+
const smithy_client_1 = require$$76;
|
|
14286
14613
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
14287
14614
|
class ListDefaultConfigsCommand extends smithy_client_1.Command.classBuilder()
|
|
14288
14615
|
.m(function (Command, cs, config, o) {
|
|
@@ -14314,7 +14641,7 @@ function requireListDimensionsCommand () {
|
|
|
14314
14641
|
exports.ListDimensionsCommand = exports.$Command = void 0;
|
|
14315
14642
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
14316
14643
|
const middleware_serde_1 = require$$1;
|
|
14317
|
-
const smithy_client_1 = require$$
|
|
14644
|
+
const smithy_client_1 = require$$76;
|
|
14318
14645
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
14319
14646
|
class ListDimensionsCommand extends smithy_client_1.Command.classBuilder()
|
|
14320
14647
|
.m(function (Command, cs, config, o) {
|
|
@@ -14346,7 +14673,7 @@ function requireListExperimentCommand () {
|
|
|
14346
14673
|
exports.ListExperimentCommand = exports.$Command = void 0;
|
|
14347
14674
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
14348
14675
|
const middleware_serde_1 = require$$1;
|
|
14349
|
-
const smithy_client_1 = require$$
|
|
14676
|
+
const smithy_client_1 = require$$76;
|
|
14350
14677
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
14351
14678
|
class ListExperimentCommand extends smithy_client_1.Command.classBuilder()
|
|
14352
14679
|
.m(function (Command, cs, config, o) {
|
|
@@ -14378,7 +14705,7 @@ function requireListExperimentGroupsCommand () {
|
|
|
14378
14705
|
exports.ListExperimentGroupsCommand = exports.$Command = void 0;
|
|
14379
14706
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
14380
14707
|
const middleware_serde_1 = require$$1;
|
|
14381
|
-
const smithy_client_1 = require$$
|
|
14708
|
+
const smithy_client_1 = require$$76;
|
|
14382
14709
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
14383
14710
|
class ListExperimentGroupsCommand extends smithy_client_1.Command.classBuilder()
|
|
14384
14711
|
.m(function (Command, cs, config, o) {
|
|
@@ -14410,7 +14737,7 @@ function requireListFunctionCommand () {
|
|
|
14410
14737
|
exports.ListFunctionCommand = exports.$Command = void 0;
|
|
14411
14738
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
14412
14739
|
const middleware_serde_1 = require$$1;
|
|
14413
|
-
const smithy_client_1 = require$$
|
|
14740
|
+
const smithy_client_1 = require$$76;
|
|
14414
14741
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
14415
14742
|
class ListFunctionCommand extends smithy_client_1.Command.classBuilder()
|
|
14416
14743
|
.m(function (Command, cs, config, o) {
|
|
@@ -14442,7 +14769,7 @@ function requireListOrganisationCommand () {
|
|
|
14442
14769
|
exports.ListOrganisationCommand = exports.$Command = void 0;
|
|
14443
14770
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
14444
14771
|
const middleware_serde_1 = require$$1;
|
|
14445
|
-
const smithy_client_1 = require$$
|
|
14772
|
+
const smithy_client_1 = require$$76;
|
|
14446
14773
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
14447
14774
|
class ListOrganisationCommand extends smithy_client_1.Command.classBuilder()
|
|
14448
14775
|
.m(function (Command, cs, config, o) {
|
|
@@ -14462,6 +14789,38 @@ function requireListOrganisationCommand () {
|
|
|
14462
14789
|
return ListOrganisationCommand;
|
|
14463
14790
|
}
|
|
14464
14791
|
|
|
14792
|
+
var ListVariablesCommand = {};
|
|
14793
|
+
|
|
14794
|
+
var hasRequiredListVariablesCommand;
|
|
14795
|
+
|
|
14796
|
+
function requireListVariablesCommand () {
|
|
14797
|
+
if (hasRequiredListVariablesCommand) return ListVariablesCommand;
|
|
14798
|
+
hasRequiredListVariablesCommand = 1;
|
|
14799
|
+
(function (exports) {
|
|
14800
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14801
|
+
exports.ListVariablesCommand = exports.$Command = void 0;
|
|
14802
|
+
const Aws_restJson1_1 = requireAws_restJson1();
|
|
14803
|
+
const middleware_serde_1 = require$$1;
|
|
14804
|
+
const smithy_client_1 = require$$76;
|
|
14805
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
14806
|
+
class ListVariablesCommand extends smithy_client_1.Command.classBuilder()
|
|
14807
|
+
.m(function (Command, cs, config, o) {
|
|
14808
|
+
return [
|
|
14809
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
14810
|
+
];
|
|
14811
|
+
})
|
|
14812
|
+
.s("Superposition", "ListVariables", {})
|
|
14813
|
+
.n("SuperpositionClient", "ListVariablesCommand")
|
|
14814
|
+
.f(void 0, void 0)
|
|
14815
|
+
.ser(Aws_restJson1_1.se_ListVariablesCommand)
|
|
14816
|
+
.de(Aws_restJson1_1.de_ListVariablesCommand)
|
|
14817
|
+
.build() {
|
|
14818
|
+
}
|
|
14819
|
+
exports.ListVariablesCommand = ListVariablesCommand;
|
|
14820
|
+
} (ListVariablesCommand));
|
|
14821
|
+
return ListVariablesCommand;
|
|
14822
|
+
}
|
|
14823
|
+
|
|
14465
14824
|
var ListVersionsCommand = {};
|
|
14466
14825
|
|
|
14467
14826
|
var hasRequiredListVersionsCommand;
|
|
@@ -14474,7 +14833,7 @@ function requireListVersionsCommand () {
|
|
|
14474
14833
|
exports.ListVersionsCommand = exports.$Command = void 0;
|
|
14475
14834
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
14476
14835
|
const middleware_serde_1 = require$$1;
|
|
14477
|
-
const smithy_client_1 = require$$
|
|
14836
|
+
const smithy_client_1 = require$$76;
|
|
14478
14837
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
14479
14838
|
class ListVersionsCommand extends smithy_client_1.Command.classBuilder()
|
|
14480
14839
|
.m(function (Command, cs, config, o) {
|
|
@@ -14506,7 +14865,7 @@ function requireListWebhookCommand () {
|
|
|
14506
14865
|
exports.ListWebhookCommand = exports.$Command = void 0;
|
|
14507
14866
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
14508
14867
|
const middleware_serde_1 = require$$1;
|
|
14509
|
-
const smithy_client_1 = require$$
|
|
14868
|
+
const smithy_client_1 = require$$76;
|
|
14510
14869
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
14511
14870
|
class ListWebhookCommand extends smithy_client_1.Command.classBuilder()
|
|
14512
14871
|
.m(function (Command, cs, config, o) {
|
|
@@ -14538,7 +14897,7 @@ function requireListWorkspaceCommand () {
|
|
|
14538
14897
|
exports.ListWorkspaceCommand = exports.$Command = void 0;
|
|
14539
14898
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
14540
14899
|
const middleware_serde_1 = require$$1;
|
|
14541
|
-
const smithy_client_1 = require$$
|
|
14900
|
+
const smithy_client_1 = require$$76;
|
|
14542
14901
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
14543
14902
|
class ListWorkspaceCommand extends smithy_client_1.Command.classBuilder()
|
|
14544
14903
|
.m(function (Command, cs, config, o) {
|
|
@@ -14570,7 +14929,7 @@ function requireMigrateWorkspaceSchemaCommand () {
|
|
|
14570
14929
|
exports.MigrateWorkspaceSchemaCommand = exports.$Command = void 0;
|
|
14571
14930
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
14572
14931
|
const middleware_serde_1 = require$$1;
|
|
14573
|
-
const smithy_client_1 = require$$
|
|
14932
|
+
const smithy_client_1 = require$$76;
|
|
14574
14933
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
14575
14934
|
class MigrateWorkspaceSchemaCommand extends smithy_client_1.Command.classBuilder()
|
|
14576
14935
|
.m(function (Command, cs, config, o) {
|
|
@@ -14602,7 +14961,7 @@ function requireMoveContextCommand () {
|
|
|
14602
14961
|
exports.MoveContextCommand = exports.$Command = void 0;
|
|
14603
14962
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
14604
14963
|
const middleware_serde_1 = require$$1;
|
|
14605
|
-
const smithy_client_1 = require$$
|
|
14964
|
+
const smithy_client_1 = require$$76;
|
|
14606
14965
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
14607
14966
|
class MoveContextCommand extends smithy_client_1.Command.classBuilder()
|
|
14608
14967
|
.m(function (Command, cs, config, o) {
|
|
@@ -14634,7 +14993,7 @@ function requirePauseExperimentCommand () {
|
|
|
14634
14993
|
exports.PauseExperimentCommand = exports.$Command = void 0;
|
|
14635
14994
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
14636
14995
|
const middleware_serde_1 = require$$1;
|
|
14637
|
-
const smithy_client_1 = require$$
|
|
14996
|
+
const smithy_client_1 = require$$76;
|
|
14638
14997
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
14639
14998
|
class PauseExperimentCommand extends smithy_client_1.Command.classBuilder()
|
|
14640
14999
|
.m(function (Command, cs, config, o) {
|
|
@@ -14666,7 +15025,7 @@ function requirePublishCommand () {
|
|
|
14666
15025
|
exports.PublishCommand = exports.$Command = void 0;
|
|
14667
15026
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
14668
15027
|
const middleware_serde_1 = require$$1;
|
|
14669
|
-
const smithy_client_1 = require$$
|
|
15028
|
+
const smithy_client_1 = require$$76;
|
|
14670
15029
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
14671
15030
|
class PublishCommand extends smithy_client_1.Command.classBuilder()
|
|
14672
15031
|
.m(function (Command, cs, config, o) {
|
|
@@ -14698,7 +15057,7 @@ function requireRampExperimentCommand () {
|
|
|
14698
15057
|
exports.RampExperimentCommand = exports.$Command = void 0;
|
|
14699
15058
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
14700
15059
|
const middleware_serde_1 = require$$1;
|
|
14701
|
-
const smithy_client_1 = require$$
|
|
15060
|
+
const smithy_client_1 = require$$76;
|
|
14702
15061
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
14703
15062
|
class RampExperimentCommand extends smithy_client_1.Command.classBuilder()
|
|
14704
15063
|
.m(function (Command, cs, config, o) {
|
|
@@ -14730,7 +15089,7 @@ function requireRemoveMembersFromGroupCommand () {
|
|
|
14730
15089
|
exports.RemoveMembersFromGroupCommand = exports.$Command = void 0;
|
|
14731
15090
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
14732
15091
|
const middleware_serde_1 = require$$1;
|
|
14733
|
-
const smithy_client_1 = require$$
|
|
15092
|
+
const smithy_client_1 = require$$76;
|
|
14734
15093
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
14735
15094
|
class RemoveMembersFromGroupCommand extends smithy_client_1.Command.classBuilder()
|
|
14736
15095
|
.m(function (Command, cs, config, o) {
|
|
@@ -14762,7 +15121,7 @@ function requireResumeExperimentCommand () {
|
|
|
14762
15121
|
exports.ResumeExperimentCommand = exports.$Command = void 0;
|
|
14763
15122
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
14764
15123
|
const middleware_serde_1 = require$$1;
|
|
14765
|
-
const smithy_client_1 = require$$
|
|
15124
|
+
const smithy_client_1 = require$$76;
|
|
14766
15125
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
14767
15126
|
class ResumeExperimentCommand extends smithy_client_1.Command.classBuilder()
|
|
14768
15127
|
.m(function (Command, cs, config, o) {
|
|
@@ -14794,7 +15153,7 @@ function requireTestCommand () {
|
|
|
14794
15153
|
exports.TestCommand = exports.$Command = void 0;
|
|
14795
15154
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
14796
15155
|
const middleware_serde_1 = require$$1;
|
|
14797
|
-
const smithy_client_1 = require$$
|
|
15156
|
+
const smithy_client_1 = require$$76;
|
|
14798
15157
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
14799
15158
|
class TestCommand extends smithy_client_1.Command.classBuilder()
|
|
14800
15159
|
.m(function (Command, cs, config, o) {
|
|
@@ -14826,7 +15185,7 @@ function requireUpdateDefaultConfigCommand () {
|
|
|
14826
15185
|
exports.UpdateDefaultConfigCommand = exports.$Command = void 0;
|
|
14827
15186
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
14828
15187
|
const middleware_serde_1 = require$$1;
|
|
14829
|
-
const smithy_client_1 = require$$
|
|
15188
|
+
const smithy_client_1 = require$$76;
|
|
14830
15189
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
14831
15190
|
class UpdateDefaultConfigCommand extends smithy_client_1.Command.classBuilder()
|
|
14832
15191
|
.m(function (Command, cs, config, o) {
|
|
@@ -14858,7 +15217,7 @@ function requireUpdateDimensionCommand () {
|
|
|
14858
15217
|
exports.UpdateDimensionCommand = exports.$Command = void 0;
|
|
14859
15218
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
14860
15219
|
const middleware_serde_1 = require$$1;
|
|
14861
|
-
const smithy_client_1 = require$$
|
|
15220
|
+
const smithy_client_1 = require$$76;
|
|
14862
15221
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
14863
15222
|
class UpdateDimensionCommand extends smithy_client_1.Command.classBuilder()
|
|
14864
15223
|
.m(function (Command, cs, config, o) {
|
|
@@ -14890,7 +15249,7 @@ function requireUpdateExperimentGroupCommand () {
|
|
|
14890
15249
|
exports.UpdateExperimentGroupCommand = exports.$Command = void 0;
|
|
14891
15250
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
14892
15251
|
const middleware_serde_1 = require$$1;
|
|
14893
|
-
const smithy_client_1 = require$$
|
|
15252
|
+
const smithy_client_1 = require$$76;
|
|
14894
15253
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
14895
15254
|
class UpdateExperimentGroupCommand extends smithy_client_1.Command.classBuilder()
|
|
14896
15255
|
.m(function (Command, cs, config, o) {
|
|
@@ -14922,7 +15281,7 @@ function requireUpdateFunctionCommand () {
|
|
|
14922
15281
|
exports.UpdateFunctionCommand = exports.$Command = void 0;
|
|
14923
15282
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
14924
15283
|
const middleware_serde_1 = require$$1;
|
|
14925
|
-
const smithy_client_1 = require$$
|
|
15284
|
+
const smithy_client_1 = require$$76;
|
|
14926
15285
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
14927
15286
|
class UpdateFunctionCommand extends smithy_client_1.Command.classBuilder()
|
|
14928
15287
|
.m(function (Command, cs, config, o) {
|
|
@@ -14954,7 +15313,7 @@ function requireUpdateOrganisationCommand () {
|
|
|
14954
15313
|
exports.UpdateOrganisationCommand = exports.$Command = void 0;
|
|
14955
15314
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
14956
15315
|
const middleware_serde_1 = require$$1;
|
|
14957
|
-
const smithy_client_1 = require$$
|
|
15316
|
+
const smithy_client_1 = require$$76;
|
|
14958
15317
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
14959
15318
|
class UpdateOrganisationCommand extends smithy_client_1.Command.classBuilder()
|
|
14960
15319
|
.m(function (Command, cs, config, o) {
|
|
@@ -14986,7 +15345,7 @@ function requireUpdateOverrideCommand () {
|
|
|
14986
15345
|
exports.UpdateOverrideCommand = exports.$Command = void 0;
|
|
14987
15346
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
14988
15347
|
const middleware_serde_1 = require$$1;
|
|
14989
|
-
const smithy_client_1 = require$$
|
|
15348
|
+
const smithy_client_1 = require$$76;
|
|
14990
15349
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
14991
15350
|
class UpdateOverrideCommand extends smithy_client_1.Command.classBuilder()
|
|
14992
15351
|
.m(function (Command, cs, config, o) {
|
|
@@ -15018,7 +15377,7 @@ function requireUpdateOverridesExperimentCommand () {
|
|
|
15018
15377
|
exports.UpdateOverridesExperimentCommand = exports.$Command = void 0;
|
|
15019
15378
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
15020
15379
|
const middleware_serde_1 = require$$1;
|
|
15021
|
-
const smithy_client_1 = require$$
|
|
15380
|
+
const smithy_client_1 = require$$76;
|
|
15022
15381
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
15023
15382
|
class UpdateOverridesExperimentCommand extends smithy_client_1.Command.classBuilder()
|
|
15024
15383
|
.m(function (Command, cs, config, o) {
|
|
@@ -15050,7 +15409,7 @@ function requireUpdateTypeTemplatesCommand () {
|
|
|
15050
15409
|
exports.UpdateTypeTemplatesCommand = exports.$Command = void 0;
|
|
15051
15410
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
15052
15411
|
const middleware_serde_1 = require$$1;
|
|
15053
|
-
const smithy_client_1 = require$$
|
|
15412
|
+
const smithy_client_1 = require$$76;
|
|
15054
15413
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
15055
15414
|
class UpdateTypeTemplatesCommand extends smithy_client_1.Command.classBuilder()
|
|
15056
15415
|
.m(function (Command, cs, config, o) {
|
|
@@ -15070,6 +15429,38 @@ function requireUpdateTypeTemplatesCommand () {
|
|
|
15070
15429
|
return UpdateTypeTemplatesCommand;
|
|
15071
15430
|
}
|
|
15072
15431
|
|
|
15432
|
+
var UpdateVariableCommand = {};
|
|
15433
|
+
|
|
15434
|
+
var hasRequiredUpdateVariableCommand;
|
|
15435
|
+
|
|
15436
|
+
function requireUpdateVariableCommand () {
|
|
15437
|
+
if (hasRequiredUpdateVariableCommand) return UpdateVariableCommand;
|
|
15438
|
+
hasRequiredUpdateVariableCommand = 1;
|
|
15439
|
+
(function (exports) {
|
|
15440
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15441
|
+
exports.UpdateVariableCommand = exports.$Command = void 0;
|
|
15442
|
+
const Aws_restJson1_1 = requireAws_restJson1();
|
|
15443
|
+
const middleware_serde_1 = require$$1;
|
|
15444
|
+
const smithy_client_1 = require$$76;
|
|
15445
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
15446
|
+
class UpdateVariableCommand extends smithy_client_1.Command.classBuilder()
|
|
15447
|
+
.m(function (Command, cs, config, o) {
|
|
15448
|
+
return [
|
|
15449
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
15450
|
+
];
|
|
15451
|
+
})
|
|
15452
|
+
.s("Superposition", "UpdateVariable", {})
|
|
15453
|
+
.n("SuperpositionClient", "UpdateVariableCommand")
|
|
15454
|
+
.f(void 0, void 0)
|
|
15455
|
+
.ser(Aws_restJson1_1.se_UpdateVariableCommand)
|
|
15456
|
+
.de(Aws_restJson1_1.de_UpdateVariableCommand)
|
|
15457
|
+
.build() {
|
|
15458
|
+
}
|
|
15459
|
+
exports.UpdateVariableCommand = UpdateVariableCommand;
|
|
15460
|
+
} (UpdateVariableCommand));
|
|
15461
|
+
return UpdateVariableCommand;
|
|
15462
|
+
}
|
|
15463
|
+
|
|
15073
15464
|
var UpdateWebhookCommand = {};
|
|
15074
15465
|
|
|
15075
15466
|
var hasRequiredUpdateWebhookCommand;
|
|
@@ -15082,7 +15473,7 @@ function requireUpdateWebhookCommand () {
|
|
|
15082
15473
|
exports.UpdateWebhookCommand = exports.$Command = void 0;
|
|
15083
15474
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
15084
15475
|
const middleware_serde_1 = require$$1;
|
|
15085
|
-
const smithy_client_1 = require$$
|
|
15476
|
+
const smithy_client_1 = require$$76;
|
|
15086
15477
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
15087
15478
|
class UpdateWebhookCommand extends smithy_client_1.Command.classBuilder()
|
|
15088
15479
|
.m(function (Command, cs, config, o) {
|
|
@@ -15114,7 +15505,7 @@ function requireUpdateWorkspaceCommand () {
|
|
|
15114
15505
|
exports.UpdateWorkspaceCommand = exports.$Command = void 0;
|
|
15115
15506
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
15116
15507
|
const middleware_serde_1 = require$$1;
|
|
15117
|
-
const smithy_client_1 = require$$
|
|
15508
|
+
const smithy_client_1 = require$$76;
|
|
15118
15509
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
15119
15510
|
class UpdateWorkspaceCommand extends smithy_client_1.Command.classBuilder()
|
|
15120
15511
|
.m(function (Command, cs, config, o) {
|
|
@@ -15146,7 +15537,7 @@ function requireValidateContextCommand () {
|
|
|
15146
15537
|
exports.ValidateContextCommand = exports.$Command = void 0;
|
|
15147
15538
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
15148
15539
|
const middleware_serde_1 = require$$1;
|
|
15149
|
-
const smithy_client_1 = require$$
|
|
15540
|
+
const smithy_client_1 = require$$76;
|
|
15150
15541
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
15151
15542
|
class ValidateContextCommand extends smithy_client_1.Command.classBuilder()
|
|
15152
15543
|
.m(function (Command, cs, config, o) {
|
|
@@ -15178,7 +15569,7 @@ function requireWeightRecomputeCommand () {
|
|
|
15178
15569
|
exports.WeightRecomputeCommand = exports.$Command = void 0;
|
|
15179
15570
|
const Aws_restJson1_1 = requireAws_restJson1();
|
|
15180
15571
|
const middleware_serde_1 = require$$1;
|
|
15181
|
-
const smithy_client_1 = require$$
|
|
15572
|
+
const smithy_client_1 = require$$76;
|
|
15182
15573
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
15183
15574
|
class WeightRecomputeCommand extends smithy_client_1.Command.classBuilder()
|
|
15184
15575
|
.m(function (Command, cs, config, o) {
|
|
@@ -15218,6 +15609,7 @@ function requireSuperposition () {
|
|
|
15218
15609
|
const CreateFunctionCommand_1 = requireCreateFunctionCommand();
|
|
15219
15610
|
const CreateOrganisationCommand_1 = requireCreateOrganisationCommand();
|
|
15220
15611
|
const CreateTypeTemplatesCommand_1 = requireCreateTypeTemplatesCommand();
|
|
15612
|
+
const CreateVariableCommand_1 = requireCreateVariableCommand();
|
|
15221
15613
|
const CreateWebhookCommand_1 = requireCreateWebhookCommand();
|
|
15222
15614
|
const CreateWorkspaceCommand_1 = requireCreateWorkspaceCommand();
|
|
15223
15615
|
const DeleteContextCommand_1 = requireDeleteContextCommand();
|
|
@@ -15226,6 +15618,7 @@ function requireSuperposition () {
|
|
|
15226
15618
|
const DeleteExperimentGroupCommand_1 = requireDeleteExperimentGroupCommand();
|
|
15227
15619
|
const DeleteFunctionCommand_1 = requireDeleteFunctionCommand();
|
|
15228
15620
|
const DeleteTypeTemplatesCommand_1 = requireDeleteTypeTemplatesCommand();
|
|
15621
|
+
const DeleteVariableCommand_1 = requireDeleteVariableCommand();
|
|
15229
15622
|
const DeleteWebhookCommand_1 = requireDeleteWebhookCommand();
|
|
15230
15623
|
const DiscardExperimentCommand_1 = requireDiscardExperimentCommand();
|
|
15231
15624
|
const GetConfigCommand_1 = requireGetConfigCommand();
|
|
@@ -15241,6 +15634,7 @@ function requireSuperposition () {
|
|
|
15241
15634
|
const GetResolvedConfigCommand_1 = requireGetResolvedConfigCommand();
|
|
15242
15635
|
const GetTypeTemplateCommand_1 = requireGetTypeTemplateCommand();
|
|
15243
15636
|
const GetTypeTemplatesListCommand_1 = requireGetTypeTemplatesListCommand();
|
|
15637
|
+
const GetVariableCommand_1 = requireGetVariableCommand();
|
|
15244
15638
|
const GetVersionCommand_1 = requireGetVersionCommand();
|
|
15245
15639
|
const GetWebhookByEventCommand_1 = requireGetWebhookByEventCommand();
|
|
15246
15640
|
const GetWebhookCommand_1 = requireGetWebhookCommand();
|
|
@@ -15253,6 +15647,7 @@ function requireSuperposition () {
|
|
|
15253
15647
|
const ListExperimentGroupsCommand_1 = requireListExperimentGroupsCommand();
|
|
15254
15648
|
const ListFunctionCommand_1 = requireListFunctionCommand();
|
|
15255
15649
|
const ListOrganisationCommand_1 = requireListOrganisationCommand();
|
|
15650
|
+
const ListVariablesCommand_1 = requireListVariablesCommand();
|
|
15256
15651
|
const ListVersionsCommand_1 = requireListVersionsCommand();
|
|
15257
15652
|
const ListWebhookCommand_1 = requireListWebhookCommand();
|
|
15258
15653
|
const ListWorkspaceCommand_1 = requireListWorkspaceCommand();
|
|
@@ -15272,11 +15667,12 @@ function requireSuperposition () {
|
|
|
15272
15667
|
const UpdateOverrideCommand_1 = requireUpdateOverrideCommand();
|
|
15273
15668
|
const UpdateOverridesExperimentCommand_1 = requireUpdateOverridesExperimentCommand();
|
|
15274
15669
|
const UpdateTypeTemplatesCommand_1 = requireUpdateTypeTemplatesCommand();
|
|
15670
|
+
const UpdateVariableCommand_1 = requireUpdateVariableCommand();
|
|
15275
15671
|
const UpdateWebhookCommand_1 = requireUpdateWebhookCommand();
|
|
15276
15672
|
const UpdateWorkspaceCommand_1 = requireUpdateWorkspaceCommand();
|
|
15277
15673
|
const ValidateContextCommand_1 = requireValidateContextCommand();
|
|
15278
15674
|
const WeightRecomputeCommand_1 = requireWeightRecomputeCommand();
|
|
15279
|
-
const smithy_client_1 = require$$
|
|
15675
|
+
const smithy_client_1 = require$$76;
|
|
15280
15676
|
const commands = {
|
|
15281
15677
|
AddMembersToGroupCommand: AddMembersToGroupCommand_1.AddMembersToGroupCommand,
|
|
15282
15678
|
ApplicableVariantsCommand: ApplicableVariantsCommand_1.ApplicableVariantsCommand,
|
|
@@ -15290,6 +15686,7 @@ function requireSuperposition () {
|
|
|
15290
15686
|
CreateFunctionCommand: CreateFunctionCommand_1.CreateFunctionCommand,
|
|
15291
15687
|
CreateOrganisationCommand: CreateOrganisationCommand_1.CreateOrganisationCommand,
|
|
15292
15688
|
CreateTypeTemplatesCommand: CreateTypeTemplatesCommand_1.CreateTypeTemplatesCommand,
|
|
15689
|
+
CreateVariableCommand: CreateVariableCommand_1.CreateVariableCommand,
|
|
15293
15690
|
CreateWebhookCommand: CreateWebhookCommand_1.CreateWebhookCommand,
|
|
15294
15691
|
CreateWorkspaceCommand: CreateWorkspaceCommand_1.CreateWorkspaceCommand,
|
|
15295
15692
|
DeleteContextCommand: DeleteContextCommand_1.DeleteContextCommand,
|
|
@@ -15298,6 +15695,7 @@ function requireSuperposition () {
|
|
|
15298
15695
|
DeleteExperimentGroupCommand: DeleteExperimentGroupCommand_1.DeleteExperimentGroupCommand,
|
|
15299
15696
|
DeleteFunctionCommand: DeleteFunctionCommand_1.DeleteFunctionCommand,
|
|
15300
15697
|
DeleteTypeTemplatesCommand: DeleteTypeTemplatesCommand_1.DeleteTypeTemplatesCommand,
|
|
15698
|
+
DeleteVariableCommand: DeleteVariableCommand_1.DeleteVariableCommand,
|
|
15301
15699
|
DeleteWebhookCommand: DeleteWebhookCommand_1.DeleteWebhookCommand,
|
|
15302
15700
|
DiscardExperimentCommand: DiscardExperimentCommand_1.DiscardExperimentCommand,
|
|
15303
15701
|
GetConfigCommand: GetConfigCommand_1.GetConfigCommand,
|
|
@@ -15313,6 +15711,7 @@ function requireSuperposition () {
|
|
|
15313
15711
|
GetResolvedConfigCommand: GetResolvedConfigCommand_1.GetResolvedConfigCommand,
|
|
15314
15712
|
GetTypeTemplateCommand: GetTypeTemplateCommand_1.GetTypeTemplateCommand,
|
|
15315
15713
|
GetTypeTemplatesListCommand: GetTypeTemplatesListCommand_1.GetTypeTemplatesListCommand,
|
|
15714
|
+
GetVariableCommand: GetVariableCommand_1.GetVariableCommand,
|
|
15316
15715
|
GetVersionCommand: GetVersionCommand_1.GetVersionCommand,
|
|
15317
15716
|
GetWebhookCommand: GetWebhookCommand_1.GetWebhookCommand,
|
|
15318
15717
|
GetWebhookByEventCommand: GetWebhookByEventCommand_1.GetWebhookByEventCommand,
|
|
@@ -15325,6 +15724,7 @@ function requireSuperposition () {
|
|
|
15325
15724
|
ListExperimentGroupsCommand: ListExperimentGroupsCommand_1.ListExperimentGroupsCommand,
|
|
15326
15725
|
ListFunctionCommand: ListFunctionCommand_1.ListFunctionCommand,
|
|
15327
15726
|
ListOrganisationCommand: ListOrganisationCommand_1.ListOrganisationCommand,
|
|
15727
|
+
ListVariablesCommand: ListVariablesCommand_1.ListVariablesCommand,
|
|
15328
15728
|
ListVersionsCommand: ListVersionsCommand_1.ListVersionsCommand,
|
|
15329
15729
|
ListWebhookCommand: ListWebhookCommand_1.ListWebhookCommand,
|
|
15330
15730
|
ListWorkspaceCommand: ListWorkspaceCommand_1.ListWorkspaceCommand,
|
|
@@ -15344,6 +15744,7 @@ function requireSuperposition () {
|
|
|
15344
15744
|
UpdateOverrideCommand: UpdateOverrideCommand_1.UpdateOverrideCommand,
|
|
15345
15745
|
UpdateOverridesExperimentCommand: UpdateOverridesExperimentCommand_1.UpdateOverridesExperimentCommand,
|
|
15346
15746
|
UpdateTypeTemplatesCommand: UpdateTypeTemplatesCommand_1.UpdateTypeTemplatesCommand,
|
|
15747
|
+
UpdateVariableCommand: UpdateVariableCommand_1.UpdateVariableCommand,
|
|
15347
15748
|
UpdateWebhookCommand: UpdateWebhookCommand_1.UpdateWebhookCommand,
|
|
15348
15749
|
UpdateWorkspaceCommand: UpdateWorkspaceCommand_1.UpdateWorkspaceCommand,
|
|
15349
15750
|
ValidateContextCommand: ValidateContextCommand_1.ValidateContextCommand,
|
|
@@ -15378,6 +15779,7 @@ function requireCommands () {
|
|
|
15378
15779
|
tslib_1.__exportStar(requireCreateFunctionCommand(), exports);
|
|
15379
15780
|
tslib_1.__exportStar(requireCreateOrganisationCommand(), exports);
|
|
15380
15781
|
tslib_1.__exportStar(requireCreateTypeTemplatesCommand(), exports);
|
|
15782
|
+
tslib_1.__exportStar(requireCreateVariableCommand(), exports);
|
|
15381
15783
|
tslib_1.__exportStar(requireCreateWebhookCommand(), exports);
|
|
15382
15784
|
tslib_1.__exportStar(requireCreateWorkspaceCommand(), exports);
|
|
15383
15785
|
tslib_1.__exportStar(requireDeleteContextCommand(), exports);
|
|
@@ -15386,6 +15788,7 @@ function requireCommands () {
|
|
|
15386
15788
|
tslib_1.__exportStar(requireDeleteExperimentGroupCommand(), exports);
|
|
15387
15789
|
tslib_1.__exportStar(requireDeleteFunctionCommand(), exports);
|
|
15388
15790
|
tslib_1.__exportStar(requireDeleteTypeTemplatesCommand(), exports);
|
|
15791
|
+
tslib_1.__exportStar(requireDeleteVariableCommand(), exports);
|
|
15389
15792
|
tslib_1.__exportStar(requireDeleteWebhookCommand(), exports);
|
|
15390
15793
|
tslib_1.__exportStar(requireDiscardExperimentCommand(), exports);
|
|
15391
15794
|
tslib_1.__exportStar(requireGetConfigCommand(), exports);
|
|
@@ -15401,6 +15804,7 @@ function requireCommands () {
|
|
|
15401
15804
|
tslib_1.__exportStar(requireGetResolvedConfigCommand(), exports);
|
|
15402
15805
|
tslib_1.__exportStar(requireGetTypeTemplateCommand(), exports);
|
|
15403
15806
|
tslib_1.__exportStar(requireGetTypeTemplatesListCommand(), exports);
|
|
15807
|
+
tslib_1.__exportStar(requireGetVariableCommand(), exports);
|
|
15404
15808
|
tslib_1.__exportStar(requireGetVersionCommand(), exports);
|
|
15405
15809
|
tslib_1.__exportStar(requireGetWebhookCommand(), exports);
|
|
15406
15810
|
tslib_1.__exportStar(requireGetWebhookByEventCommand(), exports);
|
|
@@ -15413,6 +15817,7 @@ function requireCommands () {
|
|
|
15413
15817
|
tslib_1.__exportStar(requireListExperimentGroupsCommand(), exports);
|
|
15414
15818
|
tslib_1.__exportStar(requireListFunctionCommand(), exports);
|
|
15415
15819
|
tslib_1.__exportStar(requireListOrganisationCommand(), exports);
|
|
15820
|
+
tslib_1.__exportStar(requireListVariablesCommand(), exports);
|
|
15416
15821
|
tslib_1.__exportStar(requireListVersionsCommand(), exports);
|
|
15417
15822
|
tslib_1.__exportStar(requireListWebhookCommand(), exports);
|
|
15418
15823
|
tslib_1.__exportStar(requireListWorkspaceCommand(), exports);
|
|
@@ -15432,6 +15837,7 @@ function requireCommands () {
|
|
|
15432
15837
|
tslib_1.__exportStar(requireUpdateOverrideCommand(), exports);
|
|
15433
15838
|
tslib_1.__exportStar(requireUpdateOverridesExperimentCommand(), exports);
|
|
15434
15839
|
tslib_1.__exportStar(requireUpdateTypeTemplatesCommand(), exports);
|
|
15840
|
+
tslib_1.__exportStar(requireUpdateVariableCommand(), exports);
|
|
15435
15841
|
tslib_1.__exportStar(requireUpdateWebhookCommand(), exports);
|
|
15436
15842
|
tslib_1.__exportStar(requireUpdateWorkspaceCommand(), exports);
|
|
15437
15843
|
tslib_1.__exportStar(requireValidateContextCommand(), exports);
|