superposition-provider 0.99.2 → 0.100.1

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.js CHANGED
@@ -3183,7 +3183,7 @@ var runtimeConfig = {};
3183
3183
 
3184
3184
  var name = "superposition-sdk";
3185
3185
  var description = "superposition-sdk client";
3186
- var version = "0.99.2";
3186
+ var version = "0.100.1";
3187
3187
  var repository = {
3188
3188
  type: "git",
3189
3189
  url: "git+https://github.com/juspay/superposition.git"
@@ -5145,11 +5145,11 @@ const loadRestJsonErrorCode = (output, data) => {
5145
5145
  }
5146
5146
  };
5147
5147
 
5148
- var validator$2 = {};
5148
+ var validator$1 = {};
5149
5149
 
5150
5150
  var util$3 = {};
5151
5151
 
5152
- (function (exports) {
5152
+ (function (exports$1) {
5153
5153
 
5154
5154
  const nameStartChar = ':A-Za-z_\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD';
5155
5155
  const nameChar = nameStartChar + '\\-.\\d\\u00B7\\u0300-\\u036F\\u203F-\\u2040';
@@ -5177,11 +5177,11 @@ var util$3 = {};
5177
5177
  return !(match === null || typeof match === 'undefined');
5178
5178
  };
5179
5179
 
5180
- exports.isExist = function(v) {
5180
+ exports$1.isExist = function(v) {
5181
5181
  return typeof v !== 'undefined';
5182
5182
  };
5183
5183
 
5184
- exports.isEmptyObject = function(obj) {
5184
+ exports$1.isEmptyObject = function(obj) {
5185
5185
  return Object.keys(obj).length === 0;
5186
5186
  };
5187
5187
 
@@ -5190,7 +5190,7 @@ var util$3 = {};
5190
5190
  * @param {*} target
5191
5191
  * @param {*} a
5192
5192
  */
5193
- exports.merge = function(target, a, arrayMode) {
5193
+ exports$1.merge = function(target, a, arrayMode) {
5194
5194
  if (a) {
5195
5195
  const keys = Object.keys(a); // will return an array of own properties
5196
5196
  const len = keys.length; //don't make it inline
@@ -5207,8 +5207,8 @@ var util$3 = {};
5207
5207
  return Object.assign(b,a);
5208
5208
  } */
5209
5209
 
5210
- exports.getValue = function(v) {
5211
- if (exports.isExist(v)) {
5210
+ exports$1.getValue = function(v) {
5211
+ if (exports$1.isExist(v)) {
5212
5212
  return v;
5213
5213
  } else {
5214
5214
  return '';
@@ -5218,21 +5218,21 @@ var util$3 = {};
5218
5218
  // const fakeCall = function(a) {return a;};
5219
5219
  // const fakeCallNoReturn = function() {};
5220
5220
 
5221
- exports.isName = isName;
5222
- exports.getAllMatches = getAllMatches;
5223
- exports.nameRegexp = nameRegexp;
5221
+ exports$1.isName = isName;
5222
+ exports$1.getAllMatches = getAllMatches;
5223
+ exports$1.nameRegexp = nameRegexp;
5224
5224
  } (util$3));
5225
5225
 
5226
5226
  const util$2 = util$3;
5227
5227
 
5228
- const defaultOptions$2 = {
5228
+ const defaultOptions$1 = {
5229
5229
  allowBooleanAttributes: false, //A tag can have attributes without any value
5230
5230
  unpairedTags: []
5231
5231
  };
5232
5232
 
5233
5233
  //const tagsPattern = new RegExp("<\\/?([\\w:\\-_\.]+)\\s*\/?>","g");
5234
- validator$2.validate = function (xmlData, options) {
5235
- options = Object.assign({}, defaultOptions$2, options);
5234
+ validator$1.validate = function (xmlData, options) {
5235
+ options = Object.assign({}, defaultOptions$1, options);
5236
5236
 
5237
5237
  //xmlData = xmlData.replace(/(\r\n|\n|\r)/gm,"");//make it single line
5238
5238
  //xmlData = xmlData.replace(/(^\s*<\?xml.*?\?>)/g,"");//Remove XML starting tag
@@ -5645,7 +5645,7 @@ function getPositionFromMatch(match) {
5645
5645
 
5646
5646
  var OptionsBuilder = {};
5647
5647
 
5648
- const defaultOptions$1 = {
5648
+ const defaultOptions = {
5649
5649
  preserveOrder: false,
5650
5650
  attributeNamePrefix: '@_',
5651
5651
  attributesGroupName: false,
@@ -5687,11 +5687,11 @@ const defaultOptions$1 = {
5687
5687
  };
5688
5688
 
5689
5689
  const buildOptions$1 = function(options) {
5690
- return Object.assign({}, defaultOptions$1, options);
5690
+ return Object.assign({}, defaultOptions, options);
5691
5691
  };
5692
5692
 
5693
5693
  OptionsBuilder.buildOptions = buildOptions$1;
5694
- OptionsBuilder.defaultOptions = defaultOptions$1;
5694
+ OptionsBuilder.defaultOptions = defaultOptions;
5695
5695
 
5696
5696
  class XmlNode{
5697
5697
  constructor(tagname) {
@@ -6030,7 +6030,7 @@ let OrderedObjParser$1 = class OrderedObjParser{
6030
6030
  this.resolveNameSpace = resolveNameSpace;
6031
6031
  this.buildAttributesMap = buildAttributesMap;
6032
6032
  this.isItStopNode = isItStopNode;
6033
- this.replaceEntitiesValue = replaceEntitiesValue$1;
6033
+ this.replaceEntitiesValue = replaceEntitiesValue;
6034
6034
  this.readStopNodeData = readStopNodeData;
6035
6035
  this.saveTextToParentTag = saveTextToParentTag;
6036
6036
  this.addChild = addChild;
@@ -6379,7 +6379,7 @@ function addChild(currentNode, childNode, jPath){
6379
6379
  }
6380
6380
  }
6381
6381
 
6382
- const replaceEntitiesValue$1 = function(val){
6382
+ const replaceEntitiesValue = function(val){
6383
6383
 
6384
6384
  if(this.options.processEntities){
6385
6385
  for(let entityName in this.docTypeEntities){
@@ -6602,7 +6602,7 @@ function compress(arr, options, jPath){
6602
6602
  const compressedObj = {};
6603
6603
  for (let i = 0; i < arr.length; i++) {
6604
6604
  const tagObj = arr[i];
6605
- const property = propName$1(tagObj);
6605
+ const property = propName(tagObj);
6606
6606
  let newJpath = "";
6607
6607
  if(jPath === undefined) newJpath = property;
6608
6608
  else newJpath = jPath + "." + property;
@@ -6650,7 +6650,7 @@ function compress(arr, options, jPath){
6650
6650
  return compressedObj;
6651
6651
  }
6652
6652
 
6653
- function propName$1(obj){
6653
+ function propName(obj){
6654
6654
  const keys = Object.keys(obj);
6655
6655
  for (let i = 0; i < keys.length; i++) {
6656
6656
  const key = keys[i];
@@ -6695,7 +6695,7 @@ node2json.prettify = prettify$1;
6695
6695
  const { buildOptions} = OptionsBuilder;
6696
6696
  const OrderedObjParser = OrderedObjParser_1;
6697
6697
  const { prettify} = node2json;
6698
- const validator$1 = validator$2;
6698
+ const validator = validator$1;
6699
6699
 
6700
6700
  let XMLParser$1 = class XMLParser{
6701
6701
 
@@ -6718,7 +6718,7 @@ let XMLParser$1 = class XMLParser{
6718
6718
  if( validationOption){
6719
6719
  if(validationOption === true) validationOption = {}; //validate with default options
6720
6720
 
6721
- const result = validator$1.validate(xmlData, validationOption);
6721
+ const result = validator.validate(xmlData, validationOption);
6722
6722
  if (result !== true) {
6723
6723
  throw Error( `${result.err.msg}:${result.err.line}:${result.err.col}` )
6724
6724
  }
@@ -6750,418 +6750,10 @@ let XMLParser$1 = class XMLParser{
6750
6750
 
6751
6751
  var XMLParser_1 = XMLParser$1;
6752
6752
 
6753
- const EOL = "\n";
6754
-
6755
- /**
6756
- *
6757
- * @param {array} jArray
6758
- * @param {any} options
6759
- * @returns
6760
- */
6761
- function toXml(jArray, options) {
6762
- let indentation = "";
6763
- if (options.format && options.indentBy.length > 0) {
6764
- indentation = EOL;
6765
- }
6766
- return arrToStr(jArray, options, "", indentation);
6767
- }
6768
-
6769
- function arrToStr(arr, options, jPath, indentation) {
6770
- let xmlStr = "";
6771
- let isPreviousElementTag = false;
6772
-
6773
- for (let i = 0; i < arr.length; i++) {
6774
- const tagObj = arr[i];
6775
- const tagName = propName(tagObj);
6776
- if(tagName === undefined) continue;
6777
-
6778
- let newJPath = "";
6779
- if (jPath.length === 0) newJPath = tagName;
6780
- else newJPath = `${jPath}.${tagName}`;
6781
-
6782
- if (tagName === options.textNodeName) {
6783
- let tagText = tagObj[tagName];
6784
- if (!isStopNode(newJPath, options)) {
6785
- tagText = options.tagValueProcessor(tagName, tagText);
6786
- tagText = replaceEntitiesValue(tagText, options);
6787
- }
6788
- if (isPreviousElementTag) {
6789
- xmlStr += indentation;
6790
- }
6791
- xmlStr += tagText;
6792
- isPreviousElementTag = false;
6793
- continue;
6794
- } else if (tagName === options.cdataPropName) {
6795
- if (isPreviousElementTag) {
6796
- xmlStr += indentation;
6797
- }
6798
- xmlStr += `<![CDATA[${tagObj[tagName][0][options.textNodeName]}]]>`;
6799
- isPreviousElementTag = false;
6800
- continue;
6801
- } else if (tagName === options.commentPropName) {
6802
- xmlStr += indentation + `<!--${tagObj[tagName][0][options.textNodeName]}-->`;
6803
- isPreviousElementTag = true;
6804
- continue;
6805
- } else if (tagName[0] === "?") {
6806
- const attStr = attr_to_str(tagObj[":@"], options);
6807
- const tempInd = tagName === "?xml" ? "" : indentation;
6808
- let piTextNodeName = tagObj[tagName][0][options.textNodeName];
6809
- piTextNodeName = piTextNodeName.length !== 0 ? " " + piTextNodeName : ""; //remove extra spacing
6810
- xmlStr += tempInd + `<${tagName}${piTextNodeName}${attStr}?>`;
6811
- isPreviousElementTag = true;
6812
- continue;
6813
- }
6814
- let newIdentation = indentation;
6815
- if (newIdentation !== "") {
6816
- newIdentation += options.indentBy;
6817
- }
6818
- const attStr = attr_to_str(tagObj[":@"], options);
6819
- const tagStart = indentation + `<${tagName}${attStr}`;
6820
- const tagValue = arrToStr(tagObj[tagName], options, newJPath, newIdentation);
6821
- if (options.unpairedTags.indexOf(tagName) !== -1) {
6822
- if (options.suppressUnpairedNode) xmlStr += tagStart + ">";
6823
- else xmlStr += tagStart + "/>";
6824
- } else if ((!tagValue || tagValue.length === 0) && options.suppressEmptyNode) {
6825
- xmlStr += tagStart + "/>";
6826
- } else if (tagValue && tagValue.endsWith(">")) {
6827
- xmlStr += tagStart + `>${tagValue}${indentation}</${tagName}>`;
6828
- } else {
6829
- xmlStr += tagStart + ">";
6830
- if (tagValue && indentation !== "" && (tagValue.includes("/>") || tagValue.includes("</"))) {
6831
- xmlStr += indentation + options.indentBy + tagValue + indentation;
6832
- } else {
6833
- xmlStr += tagValue;
6834
- }
6835
- xmlStr += `</${tagName}>`;
6836
- }
6837
- isPreviousElementTag = true;
6838
- }
6839
-
6840
- return xmlStr;
6841
- }
6842
-
6843
- function propName(obj) {
6844
- const keys = Object.keys(obj);
6845
- for (let i = 0; i < keys.length; i++) {
6846
- const key = keys[i];
6847
- if(!obj.hasOwnProperty(key)) continue;
6848
- if (key !== ":@") return key;
6849
- }
6850
- }
6851
-
6852
- function attr_to_str(attrMap, options) {
6853
- let attrStr = "";
6854
- if (attrMap && !options.ignoreAttributes) {
6855
- for (let attr in attrMap) {
6856
- if(!attrMap.hasOwnProperty(attr)) continue;
6857
- let attrVal = options.attributeValueProcessor(attr, attrMap[attr]);
6858
- attrVal = replaceEntitiesValue(attrVal, options);
6859
- if (attrVal === true && options.suppressBooleanAttributes) {
6860
- attrStr += ` ${attr.substr(options.attributeNamePrefix.length)}`;
6861
- } else {
6862
- attrStr += ` ${attr.substr(options.attributeNamePrefix.length)}="${attrVal}"`;
6863
- }
6864
- }
6865
- }
6866
- return attrStr;
6867
- }
6868
-
6869
- function isStopNode(jPath, options) {
6870
- jPath = jPath.substr(0, jPath.length - options.textNodeName.length - 1);
6871
- let tagName = jPath.substr(jPath.lastIndexOf(".") + 1);
6872
- for (let index in options.stopNodes) {
6873
- if (options.stopNodes[index] === jPath || options.stopNodes[index] === "*." + tagName) return true;
6874
- }
6875
- return false;
6876
- }
6877
-
6878
- function replaceEntitiesValue(textValue, options) {
6879
- if (textValue && textValue.length > 0 && options.processEntities) {
6880
- for (let i = 0; i < options.entities.length; i++) {
6881
- const entity = options.entities[i];
6882
- textValue = textValue.replace(entity.regex, entity.val);
6883
- }
6884
- }
6885
- return textValue;
6886
- }
6887
- var orderedJs2Xml = toXml;
6888
-
6889
- //parse Empty Node as self closing node
6890
- const buildFromOrderedJs = orderedJs2Xml;
6891
-
6892
- const defaultOptions = {
6893
- attributeNamePrefix: '@_',
6894
- attributesGroupName: false,
6895
- textNodeName: '#text',
6896
- ignoreAttributes: true,
6897
- cdataPropName: false,
6898
- format: false,
6899
- indentBy: ' ',
6900
- suppressEmptyNode: false,
6901
- suppressUnpairedNode: true,
6902
- suppressBooleanAttributes: true,
6903
- tagValueProcessor: function(key, a) {
6904
- return a;
6905
- },
6906
- attributeValueProcessor: function(attrName, a) {
6907
- return a;
6908
- },
6909
- preserveOrder: false,
6910
- commentPropName: false,
6911
- unpairedTags: [],
6912
- entities: [
6913
- { regex: new RegExp("&", "g"), val: "&amp;" },//it must be on top
6914
- { regex: new RegExp(">", "g"), val: "&gt;" },
6915
- { regex: new RegExp("<", "g"), val: "&lt;" },
6916
- { regex: new RegExp("\'", "g"), val: "&apos;" },
6917
- { regex: new RegExp("\"", "g"), val: "&quot;" }
6918
- ],
6919
- processEntities: true,
6920
- stopNodes: [],
6921
- // transformTagName: false,
6922
- // transformAttributeName: false,
6923
- oneListGroup: false
6924
- };
6925
-
6926
- function Builder(options) {
6927
- this.options = Object.assign({}, defaultOptions, options);
6928
- if (this.options.ignoreAttributes || this.options.attributesGroupName) {
6929
- this.isAttribute = function(/*a*/) {
6930
- return false;
6931
- };
6932
- } else {
6933
- this.attrPrefixLen = this.options.attributeNamePrefix.length;
6934
- this.isAttribute = isAttribute;
6935
- }
6936
-
6937
- this.processTextOrObjNode = processTextOrObjNode;
6938
-
6939
- if (this.options.format) {
6940
- this.indentate = indentate;
6941
- this.tagEndChar = '>\n';
6942
- this.newLine = '\n';
6943
- } else {
6944
- this.indentate = function() {
6945
- return '';
6946
- };
6947
- this.tagEndChar = '>';
6948
- this.newLine = '';
6949
- }
6950
- }
6951
-
6952
- Builder.prototype.build = function(jObj) {
6953
- if(this.options.preserveOrder){
6954
- return buildFromOrderedJs(jObj, this.options);
6955
- }else {
6956
- if(Array.isArray(jObj) && this.options.arrayNodeName && this.options.arrayNodeName.length > 1){
6957
- jObj = {
6958
- [this.options.arrayNodeName] : jObj
6959
- };
6960
- }
6961
- return this.j2x(jObj, 0).val;
6962
- }
6963
- };
6964
-
6965
- Builder.prototype.j2x = function(jObj, level) {
6966
- let attrStr = '';
6967
- let val = '';
6968
- for (let key in jObj) {
6969
- if(!Object.prototype.hasOwnProperty.call(jObj, key)) continue;
6970
- if (typeof jObj[key] === 'undefined') {
6971
- // supress undefined node only if it is not an attribute
6972
- if (this.isAttribute(key)) {
6973
- val += '';
6974
- }
6975
- } else if (jObj[key] === null) {
6976
- // null attribute should be ignored by the attribute list, but should not cause the tag closing
6977
- if (this.isAttribute(key)) {
6978
- val += '';
6979
- } else if (key[0] === '?') {
6980
- val += this.indentate(level) + '<' + key + '?' + this.tagEndChar;
6981
- } else {
6982
- val += this.indentate(level) + '<' + key + '/' + this.tagEndChar;
6983
- }
6984
- // val += this.indentate(level) + '<' + key + '/' + this.tagEndChar;
6985
- } else if (jObj[key] instanceof Date) {
6986
- val += this.buildTextValNode(jObj[key], key, '', level);
6987
- } else if (typeof jObj[key] !== 'object') {
6988
- //premitive type
6989
- const attr = this.isAttribute(key);
6990
- if (attr) {
6991
- attrStr += this.buildAttrPairStr(attr, '' + jObj[key]);
6992
- }else {
6993
- //tag value
6994
- if (key === this.options.textNodeName) {
6995
- let newval = this.options.tagValueProcessor(key, '' + jObj[key]);
6996
- val += this.replaceEntitiesValue(newval);
6997
- } else {
6998
- val += this.buildTextValNode(jObj[key], key, '', level);
6999
- }
7000
- }
7001
- } else if (Array.isArray(jObj[key])) {
7002
- //repeated nodes
7003
- const arrLen = jObj[key].length;
7004
- let listTagVal = "";
7005
- let listTagAttr = "";
7006
- for (let j = 0; j < arrLen; j++) {
7007
- const item = jObj[key][j];
7008
- if (typeof item === 'undefined') ; else if (item === null) {
7009
- if(key[0] === "?") val += this.indentate(level) + '<' + key + '?' + this.tagEndChar;
7010
- else val += this.indentate(level) + '<' + key + '/' + this.tagEndChar;
7011
- // val += this.indentate(level) + '<' + key + '/' + this.tagEndChar;
7012
- } else if (typeof item === 'object') {
7013
- if(this.options.oneListGroup){
7014
- const result = this.j2x(item, level + 1);
7015
- listTagVal += result.val;
7016
- if (this.options.attributesGroupName && item.hasOwnProperty(this.options.attributesGroupName)) {
7017
- listTagAttr += result.attrStr;
7018
- }
7019
- }else {
7020
- listTagVal += this.processTextOrObjNode(item, key, level);
7021
- }
7022
- } else {
7023
- if (this.options.oneListGroup) {
7024
- let textValue = this.options.tagValueProcessor(key, item);
7025
- textValue = this.replaceEntitiesValue(textValue);
7026
- listTagVal += textValue;
7027
- } else {
7028
- listTagVal += this.buildTextValNode(item, key, '', level);
7029
- }
7030
- }
7031
- }
7032
- if(this.options.oneListGroup){
7033
- listTagVal = this.buildObjectNode(listTagVal, key, listTagAttr, level);
7034
- }
7035
- val += listTagVal;
7036
- } else {
7037
- //nested node
7038
- if (this.options.attributesGroupName && key === this.options.attributesGroupName) {
7039
- const Ks = Object.keys(jObj[key]);
7040
- const L = Ks.length;
7041
- for (let j = 0; j < L; j++) {
7042
- attrStr += this.buildAttrPairStr(Ks[j], '' + jObj[key][Ks[j]]);
7043
- }
7044
- } else {
7045
- val += this.processTextOrObjNode(jObj[key], key, level);
7046
- }
7047
- }
7048
- }
7049
- return {attrStr: attrStr, val: val};
7050
- };
7051
-
7052
- Builder.prototype.buildAttrPairStr = function(attrName, val){
7053
- val = this.options.attributeValueProcessor(attrName, '' + val);
7054
- val = this.replaceEntitiesValue(val);
7055
- if (this.options.suppressBooleanAttributes && val === "true") {
7056
- return ' ' + attrName;
7057
- } else return ' ' + attrName + '="' + val + '"';
7058
- };
7059
-
7060
- function processTextOrObjNode (object, key, level) {
7061
- const result = this.j2x(object, level + 1);
7062
- if (object[this.options.textNodeName] !== undefined && Object.keys(object).length === 1) {
7063
- return this.buildTextValNode(object[this.options.textNodeName], key, result.attrStr, level);
7064
- } else {
7065
- return this.buildObjectNode(result.val, key, result.attrStr, level);
7066
- }
7067
- }
7068
-
7069
- Builder.prototype.buildObjectNode = function(val, key, attrStr, level) {
7070
- if(val === ""){
7071
- if(key[0] === "?") return this.indentate(level) + '<' + key + attrStr+ '?' + this.tagEndChar;
7072
- else {
7073
- return this.indentate(level) + '<' + key + attrStr + this.closeTag(key) + this.tagEndChar;
7074
- }
7075
- }else {
7076
-
7077
- let tagEndExp = '</' + key + this.tagEndChar;
7078
- let piClosingChar = "";
7079
-
7080
- if(key[0] === "?") {
7081
- piClosingChar = "?";
7082
- tagEndExp = "";
7083
- }
7084
-
7085
- // attrStr is an empty string in case the attribute came as undefined or null
7086
- if ((attrStr || attrStr === '') && val.indexOf('<') === -1) {
7087
- return ( this.indentate(level) + '<' + key + attrStr + piClosingChar + '>' + val + tagEndExp );
7088
- } else if (this.options.commentPropName !== false && key === this.options.commentPropName && piClosingChar.length === 0) {
7089
- return this.indentate(level) + `<!--${val}-->` + this.newLine;
7090
- }else {
7091
- return (
7092
- this.indentate(level) + '<' + key + attrStr + piClosingChar + this.tagEndChar +
7093
- val +
7094
- this.indentate(level) + tagEndExp );
7095
- }
7096
- }
7097
- };
7098
-
7099
- Builder.prototype.closeTag = function(key){
7100
- let closeTag = "";
7101
- if(this.options.unpairedTags.indexOf(key) !== -1){ //unpaired
7102
- if(!this.options.suppressUnpairedNode) closeTag = "/";
7103
- }else if(this.options.suppressEmptyNode){ //empty
7104
- closeTag = "/";
7105
- }else {
7106
- closeTag = `></${key}`;
7107
- }
7108
- return closeTag;
7109
- };
7110
-
7111
- Builder.prototype.buildTextValNode = function(val, key, attrStr, level) {
7112
- if (this.options.cdataPropName !== false && key === this.options.cdataPropName) {
7113
- return this.indentate(level) + `<![CDATA[${val}]]>` + this.newLine;
7114
- }else if (this.options.commentPropName !== false && key === this.options.commentPropName) {
7115
- return this.indentate(level) + `<!--${val}-->` + this.newLine;
7116
- }else if(key[0] === "?") {//PI tag
7117
- return this.indentate(level) + '<' + key + attrStr+ '?' + this.tagEndChar;
7118
- }else {
7119
- let textValue = this.options.tagValueProcessor(key, val);
7120
- textValue = this.replaceEntitiesValue(textValue);
7121
-
7122
- if( textValue === ''){
7123
- return this.indentate(level) + '<' + key + attrStr + this.closeTag(key) + this.tagEndChar;
7124
- }else {
7125
- return this.indentate(level) + '<' + key + attrStr + '>' +
7126
- textValue +
7127
- '</' + key + this.tagEndChar;
7128
- }
7129
- }
7130
- };
7131
-
7132
- Builder.prototype.replaceEntitiesValue = function(textValue){
7133
- if(textValue && textValue.length > 0 && this.options.processEntities){
7134
- for (let i=0; i<this.options.entities.length; i++) {
7135
- const entity = this.options.entities[i];
7136
- textValue = textValue.replace(entity.regex, entity.val);
7137
- }
7138
- }
7139
- return textValue;
7140
- };
7141
-
7142
- function indentate(level) {
7143
- return this.options.indentBy.repeat(level);
7144
- }
7145
-
7146
- function isAttribute(name /*, options*/) {
7147
- if (name.startsWith(this.options.attributeNamePrefix) && name !== this.options.textNodeName) {
7148
- return name.substr(this.attrPrefixLen);
7149
- } else {
7150
- return false;
7151
- }
7152
- }
7153
-
7154
- var json2xml = Builder;
7155
-
7156
- const validator = validator$2;
7157
6753
  const XMLParser = XMLParser_1;
7158
- const XMLBuilder = json2xml;
7159
6754
 
7160
6755
  var fxp = {
7161
- XMLParser: XMLParser,
7162
- XMLValidator: validator,
7163
- XMLBuilder: XMLBuilder
7164
- };
6756
+ XMLParser: XMLParser};
7165
6757
 
7166
6758
  const parseXmlBody = (streamBody, context) => collectBodyString(streamBody, context).then((encoded) => {
7167
6759
  if (encoded.length) {
@@ -8447,7 +8039,7 @@ var require$$8 = /*@__PURE__*/getAugmentedNamespace(distEs$a);
8447
8039
 
8448
8040
  var runtimeConfig_shared = {};
8449
8041
 
8450
- var require$$84 = /*@__PURE__*/getAugmentedNamespace(distEs$f);
8042
+ var require$$86 = /*@__PURE__*/getAugmentedNamespace(distEs$f);
8451
8043
 
8452
8044
  function parseQueryString(querystring) {
8453
8045
  const query = {};
@@ -8511,7 +8103,7 @@ function requireRuntimeConfig_shared () {
8511
8103
  runtimeConfig_shared.getRuntimeConfig = void 0;
8512
8104
  const httpAuthSchemeProvider_1 = requireHttpAuthSchemeProvider();
8513
8105
  const core_1 = require$$3$3;
8514
- const smithy_client_1 = require$$84;
8106
+ const smithy_client_1 = require$$86;
8515
8107
  const url_parser_1 = require$$3$1;
8516
8108
  const util_base64_1 = require$$4$1;
8517
8109
  const util_utf8_1 = require$$5$1;
@@ -8815,9 +8407,9 @@ function requireRuntimeConfig () {
8815
8407
  const util_body_length_node_1 = require$$7$1;
8816
8408
  const util_retry_1 = require$$8;
8817
8409
  const runtimeConfig_shared_1 = requireRuntimeConfig_shared();
8818
- const smithy_client_1 = require$$84;
8410
+ const smithy_client_1 = require$$86;
8819
8411
  const util_defaults_mode_node_1 = require$$11;
8820
- const smithy_client_2 = require$$84;
8412
+ const smithy_client_2 = require$$86;
8821
8413
  const getRuntimeConfig = (config) => {
8822
8414
  (0, smithy_client_2.emitWarningIfUnsupportedVersion)(process.version);
8823
8415
  const defaultsMode = (0, util_defaults_mode_node_1.resolveDefaultsModeConfig)(config);
@@ -8908,7 +8500,7 @@ function requireRuntimeExtensions () {
8908
8500
  runtimeExtensions.resolveRuntimeExtensions = void 0;
8909
8501
  const httpAuthExtensionConfiguration_1 = requireHttpAuthExtensionConfiguration();
8910
8502
  const protocol_http_1 = require$$1$1;
8911
- const smithy_client_1 = require$$84;
8503
+ const smithy_client_1 = require$$86;
8912
8504
  const asPartial = (t) => t;
8913
8505
  const resolveRuntimeExtensions = (runtimeConfig, extensions) => {
8914
8506
  const extensionConfiguration = {
@@ -9123,9 +8715,9 @@ var hasRequiredSuperpositionClient;
9123
8715
  function requireSuperpositionClient () {
9124
8716
  if (hasRequiredSuperpositionClient) return SuperpositionClient;
9125
8717
  hasRequiredSuperpositionClient = 1;
9126
- (function (exports) {
9127
- Object.defineProperty(exports, "__esModule", { value: true });
9128
- exports.SuperpositionClient = exports.__Client = void 0;
8718
+ (function (exports$1) {
8719
+ Object.defineProperty(exports$1, "__esModule", { value: true });
8720
+ exports$1.SuperpositionClient = exports$1.__Client = void 0;
9129
8721
  const httpAuthSchemeProvider_1 = requireHttpAuthSchemeProvider();
9130
8722
  const runtimeConfig_1 = requireRuntimeConfig();
9131
8723
  const runtimeExtensions_1 = requireRuntimeExtensions();
@@ -9137,8 +8729,8 @@ function requireSuperpositionClient () {
9137
8729
  const core_1 = require$$3$3;
9138
8730
  const middleware_content_length_1 = require$$9;
9139
8731
  const middleware_retry_1 = require$$10;
9140
- const smithy_client_1 = require$$84;
9141
- Object.defineProperty(exports, "__Client", { enumerable: true, get: function () { return smithy_client_1.Client; } });
8732
+ const smithy_client_1 = require$$86;
8733
+ Object.defineProperty(exports$1, "__Client", { enumerable: true, get: function () { return smithy_client_1.Client; } });
9142
8734
  class SuperpositionClient extends smithy_client_1.Client {
9143
8735
  config;
9144
8736
  constructor(...[configuration]) {
@@ -9168,7 +8760,7 @@ function requireSuperpositionClient () {
9168
8760
  super.destroy();
9169
8761
  }
9170
8762
  }
9171
- exports.SuperpositionClient = SuperpositionClient;
8763
+ exports$1.SuperpositionClient = SuperpositionClient;
9172
8764
  } (SuperpositionClient));
9173
8765
  return SuperpositionClient;
9174
8766
  }
@@ -9186,18 +8778,18 @@ var hasRequiredSuperpositionServiceException;
9186
8778
  function requireSuperpositionServiceException () {
9187
8779
  if (hasRequiredSuperpositionServiceException) return SuperpositionServiceException;
9188
8780
  hasRequiredSuperpositionServiceException = 1;
9189
- (function (exports) {
9190
- Object.defineProperty(exports, "__esModule", { value: true });
9191
- exports.SuperpositionServiceException = exports.__ServiceException = void 0;
9192
- const smithy_client_1 = require$$84;
9193
- Object.defineProperty(exports, "__ServiceException", { enumerable: true, get: function () { return smithy_client_1.ServiceException; } });
8781
+ (function (exports$1) {
8782
+ Object.defineProperty(exports$1, "__esModule", { value: true });
8783
+ exports$1.SuperpositionServiceException = exports$1.__ServiceException = void 0;
8784
+ const smithy_client_1 = require$$86;
8785
+ Object.defineProperty(exports$1, "__ServiceException", { enumerable: true, get: function () { return smithy_client_1.ServiceException; } });
9194
8786
  class SuperpositionServiceException extends smithy_client_1.ServiceException {
9195
8787
  constructor(options) {
9196
8788
  super(options);
9197
8789
  Object.setPrototypeOf(this, SuperpositionServiceException.prototype);
9198
8790
  }
9199
8791
  }
9200
- exports.SuperpositionServiceException = SuperpositionServiceException;
8792
+ exports$1.SuperpositionServiceException = SuperpositionServiceException;
9201
8793
  } (SuperpositionServiceException));
9202
8794
  return SuperpositionServiceException;
9203
8795
  }
@@ -9406,15 +8998,15 @@ function requireAws_restJson1 () {
9406
8998
  if (hasRequiredAws_restJson1) return Aws_restJson1;
9407
8999
  hasRequiredAws_restJson1 = 1;
9408
9000
  Object.defineProperty(Aws_restJson1, "__esModule", { value: true });
9409
- 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_GetSecretCommand = Aws_restJson1.se_GetResolvedConfigWithIdentifierCommand = 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_DeleteSecretCommand = 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_CreateSecretCommand = 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;
9410
- Aws_restJson1.de_DeleteContextCommand = Aws_restJson1.de_CreateWorkspaceCommand = Aws_restJson1.de_CreateWebhookCommand = Aws_restJson1.de_CreateVariableCommand = Aws_restJson1.de_CreateTypeTemplatesCommand = Aws_restJson1.de_CreateSecretCommand = 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_UpdateSecretCommand = 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_RotateWorkspaceEncryptionKeyCommand = Aws_restJson1.se_RotateMasterEncryptionKeyCommand = 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 = Aws_restJson1.se_ListSecretsCommand = Aws_restJson1.se_ListOrganisationCommand = Aws_restJson1.se_ListFunctionCommand = Aws_restJson1.se_ListExperimentGroupsCommand = Aws_restJson1.se_ListExperimentCommand = void 0;
9411
- Aws_restJson1.de_RotateMasterEncryptionKeyCommand = 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_ListSecretsCommand = 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_GetSecretCommand = Aws_restJson1.de_GetResolvedConfigWithIdentifierCommand = 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 = Aws_restJson1.de_GetConfigCommand = Aws_restJson1.de_DiscardExperimentCommand = Aws_restJson1.de_DeleteWebhookCommand = Aws_restJson1.de_DeleteVariableCommand = Aws_restJson1.de_DeleteTypeTemplatesCommand = Aws_restJson1.de_DeleteSecretCommand = Aws_restJson1.de_DeleteFunctionCommand = Aws_restJson1.de_DeleteExperimentGroupCommand = Aws_restJson1.de_DeleteDimensionCommand = Aws_restJson1.de_DeleteDefaultConfigCommand = void 0;
9412
- 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_UpdateSecretCommand = 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_RotateWorkspaceEncryptionKeyCommand = void 0;
9001
+ 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_GetSecretCommand = Aws_restJson1.se_GetResolvedConfigWithIdentifierCommand = 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_GetConfigTomlCommand = Aws_restJson1.se_GetConfigJsonCommand = 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_DeleteSecretCommand = 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_CreateSecretCommand = 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;
9002
+ Aws_restJson1.de_CreateWebhookCommand = Aws_restJson1.de_CreateVariableCommand = Aws_restJson1.de_CreateTypeTemplatesCommand = Aws_restJson1.de_CreateSecretCommand = 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_UpdateSecretCommand = 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_RotateWorkspaceEncryptionKeyCommand = Aws_restJson1.se_RotateMasterEncryptionKeyCommand = 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 = Aws_restJson1.se_ListSecretsCommand = Aws_restJson1.se_ListOrganisationCommand = Aws_restJson1.se_ListFunctionCommand = Aws_restJson1.se_ListExperimentGroupsCommand = Aws_restJson1.se_ListExperimentCommand = Aws_restJson1.se_ListDimensionsCommand = Aws_restJson1.se_ListDefaultConfigsCommand = void 0;
9003
+ 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_ListSecretsCommand = 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_GetSecretCommand = Aws_restJson1.de_GetResolvedConfigWithIdentifierCommand = 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_GetConfigTomlCommand = Aws_restJson1.de_GetConfigJsonCommand = Aws_restJson1.de_GetConfigFastCommand = Aws_restJson1.de_GetConfigCommand = Aws_restJson1.de_DiscardExperimentCommand = Aws_restJson1.de_DeleteWebhookCommand = Aws_restJson1.de_DeleteVariableCommand = Aws_restJson1.de_DeleteTypeTemplatesCommand = Aws_restJson1.de_DeleteSecretCommand = Aws_restJson1.de_DeleteFunctionCommand = Aws_restJson1.de_DeleteExperimentGroupCommand = Aws_restJson1.de_DeleteDimensionCommand = Aws_restJson1.de_DeleteDefaultConfigCommand = Aws_restJson1.de_DeleteContextCommand = Aws_restJson1.de_CreateWorkspaceCommand = void 0;
9004
+ 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_UpdateSecretCommand = 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_RotateWorkspaceEncryptionKeyCommand = Aws_restJson1.de_RotateMasterEncryptionKeyCommand = Aws_restJson1.de_ResumeExperimentCommand = Aws_restJson1.de_RemoveMembersFromGroupCommand = Aws_restJson1.de_RampExperimentCommand = void 0;
9413
9005
  const SuperpositionServiceException_1 = requireSuperpositionServiceException();
9414
9006
  const models_0_1 = requireModels_0();
9415
9007
  const core_1 = require$$2;
9416
9008
  const core_2 = require$$3$3;
9417
- const smithy_client_1 = require$$84;
9009
+ const smithy_client_1 = require$$86;
9418
9010
  const se_AddMembersToGroupCommand = async (input, context) => {
9419
9011
  const b = (0, core_2.requestBuilder)(input, context);
9420
9012
  const headers = (0, smithy_client_1.map)({}, smithy_client_1.isSerializableHeaderValue, {
@@ -9963,6 +9555,34 @@ function requireAws_restJson1 () {
9963
9555
  return b.build();
9964
9556
  };
9965
9557
  Aws_restJson1.se_GetConfigFastCommand = se_GetConfigFastCommand;
9558
+ const se_GetConfigJsonCommand = async (input, context) => {
9559
+ const b = (0, core_2.requestBuilder)(input, context);
9560
+ const headers = (0, smithy_client_1.map)({}, smithy_client_1.isSerializableHeaderValue, {
9561
+ [_xw]: input[_wi],
9562
+ [_xoi]: input[_oi],
9563
+ });
9564
+ b.bp("/config/json");
9565
+ let body;
9566
+ b.m("GET")
9567
+ .h(headers)
9568
+ .b(body);
9569
+ return b.build();
9570
+ };
9571
+ Aws_restJson1.se_GetConfigJsonCommand = se_GetConfigJsonCommand;
9572
+ const se_GetConfigTomlCommand = async (input, context) => {
9573
+ const b = (0, core_2.requestBuilder)(input, context);
9574
+ const headers = (0, smithy_client_1.map)({}, smithy_client_1.isSerializableHeaderValue, {
9575
+ [_xw]: input[_wi],
9576
+ [_xoi]: input[_oi],
9577
+ });
9578
+ b.bp("/config/toml");
9579
+ let body;
9580
+ b.m("GET")
9581
+ .h(headers)
9582
+ .b(body);
9583
+ return b.build();
9584
+ };
9585
+ Aws_restJson1.se_GetConfigTomlCommand = se_GetConfigTomlCommand;
9966
9586
  const se_GetContextCommand = async (input, context) => {
9967
9587
  const b = (0, core_2.requestBuilder)(input, context);
9968
9588
  const headers = (0, smithy_client_1.map)({}, smithy_client_1.isSerializableHeaderValue, {
@@ -11685,6 +11305,32 @@ function requireAws_restJson1 () {
11685
11305
  return contents;
11686
11306
  };
11687
11307
  Aws_restJson1.de_GetConfigFastCommand = de_GetConfigFastCommand;
11308
+ const de_GetConfigJsonCommand = async (output, context) => {
11309
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
11310
+ return de_CommandError(output, context);
11311
+ }
11312
+ const contents = (0, smithy_client_1.map)({
11313
+ $metadata: deserializeMetadata(output),
11314
+ [_lm_]: [() => void 0 !== output.headers[_lm], () => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(output.headers[_lm]))],
11315
+ });
11316
+ const data = await collectBodyString(output.body, context);
11317
+ contents.json_config = (0, smithy_client_1.expectString)(data);
11318
+ return contents;
11319
+ };
11320
+ Aws_restJson1.de_GetConfigJsonCommand = de_GetConfigJsonCommand;
11321
+ const de_GetConfigTomlCommand = async (output, context) => {
11322
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
11323
+ return de_CommandError(output, context);
11324
+ }
11325
+ const contents = (0, smithy_client_1.map)({
11326
+ $metadata: deserializeMetadata(output),
11327
+ [_lm_]: [() => void 0 !== output.headers[_lm], () => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(output.headers[_lm]))],
11328
+ });
11329
+ const data = await collectBodyString(output.body, context);
11330
+ contents.toml_config = (0, smithy_client_1.expectString)(data);
11331
+ return contents;
11332
+ };
11333
+ Aws_restJson1.de_GetConfigTomlCommand = de_GetConfigTomlCommand;
11688
11334
  const de_GetContextCommand = async (output, context) => {
11689
11335
  if (output.statusCode !== 200 && output.statusCode >= 300) {
11690
11336
  return de_CommandError(output, context);
@@ -13646,13 +13292,13 @@ var hasRequiredAddMembersToGroupCommand;
13646
13292
  function requireAddMembersToGroupCommand () {
13647
13293
  if (hasRequiredAddMembersToGroupCommand) return AddMembersToGroupCommand;
13648
13294
  hasRequiredAddMembersToGroupCommand = 1;
13649
- (function (exports) {
13650
- Object.defineProperty(exports, "__esModule", { value: true });
13651
- exports.AddMembersToGroupCommand = exports.$Command = void 0;
13295
+ (function (exports$1) {
13296
+ Object.defineProperty(exports$1, "__esModule", { value: true });
13297
+ exports$1.AddMembersToGroupCommand = exports$1.$Command = void 0;
13652
13298
  const Aws_restJson1_1 = requireAws_restJson1();
13653
13299
  const middleware_serde_1 = require$$1;
13654
- const smithy_client_1 = require$$84;
13655
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
13300
+ const smithy_client_1 = require$$86;
13301
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
13656
13302
  class AddMembersToGroupCommand extends smithy_client_1.Command.classBuilder()
13657
13303
  .m(function (Command, cs, config, o) {
13658
13304
  return [
@@ -13666,7 +13312,7 @@ function requireAddMembersToGroupCommand () {
13666
13312
  .de(Aws_restJson1_1.de_AddMembersToGroupCommand)
13667
13313
  .build() {
13668
13314
  }
13669
- exports.AddMembersToGroupCommand = AddMembersToGroupCommand;
13315
+ exports$1.AddMembersToGroupCommand = AddMembersToGroupCommand;
13670
13316
  } (AddMembersToGroupCommand));
13671
13317
  return AddMembersToGroupCommand;
13672
13318
  }
@@ -13678,13 +13324,13 @@ var hasRequiredApplicableVariantsCommand;
13678
13324
  function requireApplicableVariantsCommand () {
13679
13325
  if (hasRequiredApplicableVariantsCommand) return ApplicableVariantsCommand;
13680
13326
  hasRequiredApplicableVariantsCommand = 1;
13681
- (function (exports) {
13682
- Object.defineProperty(exports, "__esModule", { value: true });
13683
- exports.ApplicableVariantsCommand = exports.$Command = void 0;
13327
+ (function (exports$1) {
13328
+ Object.defineProperty(exports$1, "__esModule", { value: true });
13329
+ exports$1.ApplicableVariantsCommand = exports$1.$Command = void 0;
13684
13330
  const Aws_restJson1_1 = requireAws_restJson1();
13685
13331
  const middleware_serde_1 = require$$1;
13686
- const smithy_client_1 = require$$84;
13687
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
13332
+ const smithy_client_1 = require$$86;
13333
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
13688
13334
  class ApplicableVariantsCommand extends smithy_client_1.Command.classBuilder()
13689
13335
  .m(function (Command, cs, config, o) {
13690
13336
  return [
@@ -13698,7 +13344,7 @@ function requireApplicableVariantsCommand () {
13698
13344
  .de(Aws_restJson1_1.de_ApplicableVariantsCommand)
13699
13345
  .build() {
13700
13346
  }
13701
- exports.ApplicableVariantsCommand = ApplicableVariantsCommand;
13347
+ exports$1.ApplicableVariantsCommand = ApplicableVariantsCommand;
13702
13348
  } (ApplicableVariantsCommand));
13703
13349
  return ApplicableVariantsCommand;
13704
13350
  }
@@ -13710,13 +13356,13 @@ var hasRequiredBulkOperationCommand;
13710
13356
  function requireBulkOperationCommand () {
13711
13357
  if (hasRequiredBulkOperationCommand) return BulkOperationCommand;
13712
13358
  hasRequiredBulkOperationCommand = 1;
13713
- (function (exports) {
13714
- Object.defineProperty(exports, "__esModule", { value: true });
13715
- exports.BulkOperationCommand = exports.$Command = void 0;
13359
+ (function (exports$1) {
13360
+ Object.defineProperty(exports$1, "__esModule", { value: true });
13361
+ exports$1.BulkOperationCommand = exports$1.$Command = void 0;
13716
13362
  const Aws_restJson1_1 = requireAws_restJson1();
13717
13363
  const middleware_serde_1 = require$$1;
13718
- const smithy_client_1 = require$$84;
13719
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
13364
+ const smithy_client_1 = require$$86;
13365
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
13720
13366
  class BulkOperationCommand extends smithy_client_1.Command.classBuilder()
13721
13367
  .m(function (Command, cs, config, o) {
13722
13368
  return [
@@ -13730,7 +13376,7 @@ function requireBulkOperationCommand () {
13730
13376
  .de(Aws_restJson1_1.de_BulkOperationCommand)
13731
13377
  .build() {
13732
13378
  }
13733
- exports.BulkOperationCommand = BulkOperationCommand;
13379
+ exports$1.BulkOperationCommand = BulkOperationCommand;
13734
13380
  } (BulkOperationCommand));
13735
13381
  return BulkOperationCommand;
13736
13382
  }
@@ -13742,13 +13388,13 @@ var hasRequiredConcludeExperimentCommand;
13742
13388
  function requireConcludeExperimentCommand () {
13743
13389
  if (hasRequiredConcludeExperimentCommand) return ConcludeExperimentCommand;
13744
13390
  hasRequiredConcludeExperimentCommand = 1;
13745
- (function (exports) {
13746
- Object.defineProperty(exports, "__esModule", { value: true });
13747
- exports.ConcludeExperimentCommand = exports.$Command = void 0;
13391
+ (function (exports$1) {
13392
+ Object.defineProperty(exports$1, "__esModule", { value: true });
13393
+ exports$1.ConcludeExperimentCommand = exports$1.$Command = void 0;
13748
13394
  const Aws_restJson1_1 = requireAws_restJson1();
13749
13395
  const middleware_serde_1 = require$$1;
13750
- const smithy_client_1 = require$$84;
13751
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
13396
+ const smithy_client_1 = require$$86;
13397
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
13752
13398
  class ConcludeExperimentCommand extends smithy_client_1.Command.classBuilder()
13753
13399
  .m(function (Command, cs, config, o) {
13754
13400
  return [
@@ -13762,7 +13408,7 @@ function requireConcludeExperimentCommand () {
13762
13408
  .de(Aws_restJson1_1.de_ConcludeExperimentCommand)
13763
13409
  .build() {
13764
13410
  }
13765
- exports.ConcludeExperimentCommand = ConcludeExperimentCommand;
13411
+ exports$1.ConcludeExperimentCommand = ConcludeExperimentCommand;
13766
13412
  } (ConcludeExperimentCommand));
13767
13413
  return ConcludeExperimentCommand;
13768
13414
  }
@@ -13774,13 +13420,13 @@ var hasRequiredCreateContextCommand;
13774
13420
  function requireCreateContextCommand () {
13775
13421
  if (hasRequiredCreateContextCommand) return CreateContextCommand;
13776
13422
  hasRequiredCreateContextCommand = 1;
13777
- (function (exports) {
13778
- Object.defineProperty(exports, "__esModule", { value: true });
13779
- exports.CreateContextCommand = exports.$Command = void 0;
13423
+ (function (exports$1) {
13424
+ Object.defineProperty(exports$1, "__esModule", { value: true });
13425
+ exports$1.CreateContextCommand = exports$1.$Command = void 0;
13780
13426
  const Aws_restJson1_1 = requireAws_restJson1();
13781
13427
  const middleware_serde_1 = require$$1;
13782
- const smithy_client_1 = require$$84;
13783
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
13428
+ const smithy_client_1 = require$$86;
13429
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
13784
13430
  class CreateContextCommand extends smithy_client_1.Command.classBuilder()
13785
13431
  .m(function (Command, cs, config, o) {
13786
13432
  return [
@@ -13794,7 +13440,7 @@ function requireCreateContextCommand () {
13794
13440
  .de(Aws_restJson1_1.de_CreateContextCommand)
13795
13441
  .build() {
13796
13442
  }
13797
- exports.CreateContextCommand = CreateContextCommand;
13443
+ exports$1.CreateContextCommand = CreateContextCommand;
13798
13444
  } (CreateContextCommand));
13799
13445
  return CreateContextCommand;
13800
13446
  }
@@ -13806,13 +13452,13 @@ var hasRequiredCreateDefaultConfigCommand;
13806
13452
  function requireCreateDefaultConfigCommand () {
13807
13453
  if (hasRequiredCreateDefaultConfigCommand) return CreateDefaultConfigCommand;
13808
13454
  hasRequiredCreateDefaultConfigCommand = 1;
13809
- (function (exports) {
13810
- Object.defineProperty(exports, "__esModule", { value: true });
13811
- exports.CreateDefaultConfigCommand = exports.$Command = void 0;
13455
+ (function (exports$1) {
13456
+ Object.defineProperty(exports$1, "__esModule", { value: true });
13457
+ exports$1.CreateDefaultConfigCommand = exports$1.$Command = void 0;
13812
13458
  const Aws_restJson1_1 = requireAws_restJson1();
13813
13459
  const middleware_serde_1 = require$$1;
13814
- const smithy_client_1 = require$$84;
13815
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
13460
+ const smithy_client_1 = require$$86;
13461
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
13816
13462
  class CreateDefaultConfigCommand extends smithy_client_1.Command.classBuilder()
13817
13463
  .m(function (Command, cs, config, o) {
13818
13464
  return [
@@ -13826,7 +13472,7 @@ function requireCreateDefaultConfigCommand () {
13826
13472
  .de(Aws_restJson1_1.de_CreateDefaultConfigCommand)
13827
13473
  .build() {
13828
13474
  }
13829
- exports.CreateDefaultConfigCommand = CreateDefaultConfigCommand;
13475
+ exports$1.CreateDefaultConfigCommand = CreateDefaultConfigCommand;
13830
13476
  } (CreateDefaultConfigCommand));
13831
13477
  return CreateDefaultConfigCommand;
13832
13478
  }
@@ -13838,13 +13484,13 @@ var hasRequiredCreateDimensionCommand;
13838
13484
  function requireCreateDimensionCommand () {
13839
13485
  if (hasRequiredCreateDimensionCommand) return CreateDimensionCommand;
13840
13486
  hasRequiredCreateDimensionCommand = 1;
13841
- (function (exports) {
13842
- Object.defineProperty(exports, "__esModule", { value: true });
13843
- exports.CreateDimensionCommand = exports.$Command = void 0;
13487
+ (function (exports$1) {
13488
+ Object.defineProperty(exports$1, "__esModule", { value: true });
13489
+ exports$1.CreateDimensionCommand = exports$1.$Command = void 0;
13844
13490
  const Aws_restJson1_1 = requireAws_restJson1();
13845
13491
  const middleware_serde_1 = require$$1;
13846
- const smithy_client_1 = require$$84;
13847
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
13492
+ const smithy_client_1 = require$$86;
13493
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
13848
13494
  class CreateDimensionCommand extends smithy_client_1.Command.classBuilder()
13849
13495
  .m(function (Command, cs, config, o) {
13850
13496
  return [
@@ -13858,7 +13504,7 @@ function requireCreateDimensionCommand () {
13858
13504
  .de(Aws_restJson1_1.de_CreateDimensionCommand)
13859
13505
  .build() {
13860
13506
  }
13861
- exports.CreateDimensionCommand = CreateDimensionCommand;
13507
+ exports$1.CreateDimensionCommand = CreateDimensionCommand;
13862
13508
  } (CreateDimensionCommand));
13863
13509
  return CreateDimensionCommand;
13864
13510
  }
@@ -13870,13 +13516,13 @@ var hasRequiredCreateExperimentCommand;
13870
13516
  function requireCreateExperimentCommand () {
13871
13517
  if (hasRequiredCreateExperimentCommand) return CreateExperimentCommand;
13872
13518
  hasRequiredCreateExperimentCommand = 1;
13873
- (function (exports) {
13874
- Object.defineProperty(exports, "__esModule", { value: true });
13875
- exports.CreateExperimentCommand = exports.$Command = void 0;
13519
+ (function (exports$1) {
13520
+ Object.defineProperty(exports$1, "__esModule", { value: true });
13521
+ exports$1.CreateExperimentCommand = exports$1.$Command = void 0;
13876
13522
  const Aws_restJson1_1 = requireAws_restJson1();
13877
13523
  const middleware_serde_1 = require$$1;
13878
- const smithy_client_1 = require$$84;
13879
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
13524
+ const smithy_client_1 = require$$86;
13525
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
13880
13526
  class CreateExperimentCommand extends smithy_client_1.Command.classBuilder()
13881
13527
  .m(function (Command, cs, config, o) {
13882
13528
  return [
@@ -13890,7 +13536,7 @@ function requireCreateExperimentCommand () {
13890
13536
  .de(Aws_restJson1_1.de_CreateExperimentCommand)
13891
13537
  .build() {
13892
13538
  }
13893
- exports.CreateExperimentCommand = CreateExperimentCommand;
13539
+ exports$1.CreateExperimentCommand = CreateExperimentCommand;
13894
13540
  } (CreateExperimentCommand));
13895
13541
  return CreateExperimentCommand;
13896
13542
  }
@@ -13902,13 +13548,13 @@ var hasRequiredCreateExperimentGroupCommand;
13902
13548
  function requireCreateExperimentGroupCommand () {
13903
13549
  if (hasRequiredCreateExperimentGroupCommand) return CreateExperimentGroupCommand;
13904
13550
  hasRequiredCreateExperimentGroupCommand = 1;
13905
- (function (exports) {
13906
- Object.defineProperty(exports, "__esModule", { value: true });
13907
- exports.CreateExperimentGroupCommand = exports.$Command = void 0;
13551
+ (function (exports$1) {
13552
+ Object.defineProperty(exports$1, "__esModule", { value: true });
13553
+ exports$1.CreateExperimentGroupCommand = exports$1.$Command = void 0;
13908
13554
  const Aws_restJson1_1 = requireAws_restJson1();
13909
13555
  const middleware_serde_1 = require$$1;
13910
- const smithy_client_1 = require$$84;
13911
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
13556
+ const smithy_client_1 = require$$86;
13557
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
13912
13558
  class CreateExperimentGroupCommand extends smithy_client_1.Command.classBuilder()
13913
13559
  .m(function (Command, cs, config, o) {
13914
13560
  return [
@@ -13922,7 +13568,7 @@ function requireCreateExperimentGroupCommand () {
13922
13568
  .de(Aws_restJson1_1.de_CreateExperimentGroupCommand)
13923
13569
  .build() {
13924
13570
  }
13925
- exports.CreateExperimentGroupCommand = CreateExperimentGroupCommand;
13571
+ exports$1.CreateExperimentGroupCommand = CreateExperimentGroupCommand;
13926
13572
  } (CreateExperimentGroupCommand));
13927
13573
  return CreateExperimentGroupCommand;
13928
13574
  }
@@ -13934,13 +13580,13 @@ var hasRequiredCreateFunctionCommand;
13934
13580
  function requireCreateFunctionCommand () {
13935
13581
  if (hasRequiredCreateFunctionCommand) return CreateFunctionCommand;
13936
13582
  hasRequiredCreateFunctionCommand = 1;
13937
- (function (exports) {
13938
- Object.defineProperty(exports, "__esModule", { value: true });
13939
- exports.CreateFunctionCommand = exports.$Command = void 0;
13583
+ (function (exports$1) {
13584
+ Object.defineProperty(exports$1, "__esModule", { value: true });
13585
+ exports$1.CreateFunctionCommand = exports$1.$Command = void 0;
13940
13586
  const Aws_restJson1_1 = requireAws_restJson1();
13941
13587
  const middleware_serde_1 = require$$1;
13942
- const smithy_client_1 = require$$84;
13943
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
13588
+ const smithy_client_1 = require$$86;
13589
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
13944
13590
  class CreateFunctionCommand extends smithy_client_1.Command.classBuilder()
13945
13591
  .m(function (Command, cs, config, o) {
13946
13592
  return [
@@ -13954,7 +13600,7 @@ function requireCreateFunctionCommand () {
13954
13600
  .de(Aws_restJson1_1.de_CreateFunctionCommand)
13955
13601
  .build() {
13956
13602
  }
13957
- exports.CreateFunctionCommand = CreateFunctionCommand;
13603
+ exports$1.CreateFunctionCommand = CreateFunctionCommand;
13958
13604
  } (CreateFunctionCommand));
13959
13605
  return CreateFunctionCommand;
13960
13606
  }
@@ -13966,13 +13612,13 @@ var hasRequiredCreateOrganisationCommand;
13966
13612
  function requireCreateOrganisationCommand () {
13967
13613
  if (hasRequiredCreateOrganisationCommand) return CreateOrganisationCommand;
13968
13614
  hasRequiredCreateOrganisationCommand = 1;
13969
- (function (exports) {
13970
- Object.defineProperty(exports, "__esModule", { value: true });
13971
- exports.CreateOrganisationCommand = exports.$Command = void 0;
13615
+ (function (exports$1) {
13616
+ Object.defineProperty(exports$1, "__esModule", { value: true });
13617
+ exports$1.CreateOrganisationCommand = exports$1.$Command = void 0;
13972
13618
  const Aws_restJson1_1 = requireAws_restJson1();
13973
13619
  const middleware_serde_1 = require$$1;
13974
- const smithy_client_1 = require$$84;
13975
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
13620
+ const smithy_client_1 = require$$86;
13621
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
13976
13622
  class CreateOrganisationCommand extends smithy_client_1.Command.classBuilder()
13977
13623
  .m(function (Command, cs, config, o) {
13978
13624
  return [
@@ -13986,7 +13632,7 @@ function requireCreateOrganisationCommand () {
13986
13632
  .de(Aws_restJson1_1.de_CreateOrganisationCommand)
13987
13633
  .build() {
13988
13634
  }
13989
- exports.CreateOrganisationCommand = CreateOrganisationCommand;
13635
+ exports$1.CreateOrganisationCommand = CreateOrganisationCommand;
13990
13636
  } (CreateOrganisationCommand));
13991
13637
  return CreateOrganisationCommand;
13992
13638
  }
@@ -13998,13 +13644,13 @@ var hasRequiredCreateSecretCommand;
13998
13644
  function requireCreateSecretCommand () {
13999
13645
  if (hasRequiredCreateSecretCommand) return CreateSecretCommand;
14000
13646
  hasRequiredCreateSecretCommand = 1;
14001
- (function (exports) {
14002
- Object.defineProperty(exports, "__esModule", { value: true });
14003
- exports.CreateSecretCommand = exports.$Command = void 0;
13647
+ (function (exports$1) {
13648
+ Object.defineProperty(exports$1, "__esModule", { value: true });
13649
+ exports$1.CreateSecretCommand = exports$1.$Command = void 0;
14004
13650
  const Aws_restJson1_1 = requireAws_restJson1();
14005
13651
  const middleware_serde_1 = require$$1;
14006
- const smithy_client_1 = require$$84;
14007
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
13652
+ const smithy_client_1 = require$$86;
13653
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
14008
13654
  class CreateSecretCommand extends smithy_client_1.Command.classBuilder()
14009
13655
  .m(function (Command, cs, config, o) {
14010
13656
  return [
@@ -14018,7 +13664,7 @@ function requireCreateSecretCommand () {
14018
13664
  .de(Aws_restJson1_1.de_CreateSecretCommand)
14019
13665
  .build() {
14020
13666
  }
14021
- exports.CreateSecretCommand = CreateSecretCommand;
13667
+ exports$1.CreateSecretCommand = CreateSecretCommand;
14022
13668
  } (CreateSecretCommand));
14023
13669
  return CreateSecretCommand;
14024
13670
  }
@@ -14030,13 +13676,13 @@ var hasRequiredCreateTypeTemplatesCommand;
14030
13676
  function requireCreateTypeTemplatesCommand () {
14031
13677
  if (hasRequiredCreateTypeTemplatesCommand) return CreateTypeTemplatesCommand;
14032
13678
  hasRequiredCreateTypeTemplatesCommand = 1;
14033
- (function (exports) {
14034
- Object.defineProperty(exports, "__esModule", { value: true });
14035
- exports.CreateTypeTemplatesCommand = exports.$Command = void 0;
13679
+ (function (exports$1) {
13680
+ Object.defineProperty(exports$1, "__esModule", { value: true });
13681
+ exports$1.CreateTypeTemplatesCommand = exports$1.$Command = void 0;
14036
13682
  const Aws_restJson1_1 = requireAws_restJson1();
14037
13683
  const middleware_serde_1 = require$$1;
14038
- const smithy_client_1 = require$$84;
14039
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
13684
+ const smithy_client_1 = require$$86;
13685
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
14040
13686
  class CreateTypeTemplatesCommand extends smithy_client_1.Command.classBuilder()
14041
13687
  .m(function (Command, cs, config, o) {
14042
13688
  return [
@@ -14050,7 +13696,7 @@ function requireCreateTypeTemplatesCommand () {
14050
13696
  .de(Aws_restJson1_1.de_CreateTypeTemplatesCommand)
14051
13697
  .build() {
14052
13698
  }
14053
- exports.CreateTypeTemplatesCommand = CreateTypeTemplatesCommand;
13699
+ exports$1.CreateTypeTemplatesCommand = CreateTypeTemplatesCommand;
14054
13700
  } (CreateTypeTemplatesCommand));
14055
13701
  return CreateTypeTemplatesCommand;
14056
13702
  }
@@ -14062,13 +13708,13 @@ var hasRequiredCreateVariableCommand;
14062
13708
  function requireCreateVariableCommand () {
14063
13709
  if (hasRequiredCreateVariableCommand) return CreateVariableCommand;
14064
13710
  hasRequiredCreateVariableCommand = 1;
14065
- (function (exports) {
14066
- Object.defineProperty(exports, "__esModule", { value: true });
14067
- exports.CreateVariableCommand = exports.$Command = void 0;
13711
+ (function (exports$1) {
13712
+ Object.defineProperty(exports$1, "__esModule", { value: true });
13713
+ exports$1.CreateVariableCommand = exports$1.$Command = void 0;
14068
13714
  const Aws_restJson1_1 = requireAws_restJson1();
14069
13715
  const middleware_serde_1 = require$$1;
14070
- const smithy_client_1 = require$$84;
14071
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
13716
+ const smithy_client_1 = require$$86;
13717
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
14072
13718
  class CreateVariableCommand extends smithy_client_1.Command.classBuilder()
14073
13719
  .m(function (Command, cs, config, o) {
14074
13720
  return [
@@ -14082,7 +13728,7 @@ function requireCreateVariableCommand () {
14082
13728
  .de(Aws_restJson1_1.de_CreateVariableCommand)
14083
13729
  .build() {
14084
13730
  }
14085
- exports.CreateVariableCommand = CreateVariableCommand;
13731
+ exports$1.CreateVariableCommand = CreateVariableCommand;
14086
13732
  } (CreateVariableCommand));
14087
13733
  return CreateVariableCommand;
14088
13734
  }
@@ -14094,13 +13740,13 @@ var hasRequiredCreateWebhookCommand;
14094
13740
  function requireCreateWebhookCommand () {
14095
13741
  if (hasRequiredCreateWebhookCommand) return CreateWebhookCommand;
14096
13742
  hasRequiredCreateWebhookCommand = 1;
14097
- (function (exports) {
14098
- Object.defineProperty(exports, "__esModule", { value: true });
14099
- exports.CreateWebhookCommand = exports.$Command = void 0;
13743
+ (function (exports$1) {
13744
+ Object.defineProperty(exports$1, "__esModule", { value: true });
13745
+ exports$1.CreateWebhookCommand = exports$1.$Command = void 0;
14100
13746
  const Aws_restJson1_1 = requireAws_restJson1();
14101
13747
  const middleware_serde_1 = require$$1;
14102
- const smithy_client_1 = require$$84;
14103
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
13748
+ const smithy_client_1 = require$$86;
13749
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
14104
13750
  class CreateWebhookCommand extends smithy_client_1.Command.classBuilder()
14105
13751
  .m(function (Command, cs, config, o) {
14106
13752
  return [
@@ -14114,7 +13760,7 @@ function requireCreateWebhookCommand () {
14114
13760
  .de(Aws_restJson1_1.de_CreateWebhookCommand)
14115
13761
  .build() {
14116
13762
  }
14117
- exports.CreateWebhookCommand = CreateWebhookCommand;
13763
+ exports$1.CreateWebhookCommand = CreateWebhookCommand;
14118
13764
  } (CreateWebhookCommand));
14119
13765
  return CreateWebhookCommand;
14120
13766
  }
@@ -14126,13 +13772,13 @@ var hasRequiredCreateWorkspaceCommand;
14126
13772
  function requireCreateWorkspaceCommand () {
14127
13773
  if (hasRequiredCreateWorkspaceCommand) return CreateWorkspaceCommand;
14128
13774
  hasRequiredCreateWorkspaceCommand = 1;
14129
- (function (exports) {
14130
- Object.defineProperty(exports, "__esModule", { value: true });
14131
- exports.CreateWorkspaceCommand = exports.$Command = void 0;
13775
+ (function (exports$1) {
13776
+ Object.defineProperty(exports$1, "__esModule", { value: true });
13777
+ exports$1.CreateWorkspaceCommand = exports$1.$Command = void 0;
14132
13778
  const Aws_restJson1_1 = requireAws_restJson1();
14133
13779
  const middleware_serde_1 = require$$1;
14134
- const smithy_client_1 = require$$84;
14135
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
13780
+ const smithy_client_1 = require$$86;
13781
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
14136
13782
  class CreateWorkspaceCommand extends smithy_client_1.Command.classBuilder()
14137
13783
  .m(function (Command, cs, config, o) {
14138
13784
  return [
@@ -14146,7 +13792,7 @@ function requireCreateWorkspaceCommand () {
14146
13792
  .de(Aws_restJson1_1.de_CreateWorkspaceCommand)
14147
13793
  .build() {
14148
13794
  }
14149
- exports.CreateWorkspaceCommand = CreateWorkspaceCommand;
13795
+ exports$1.CreateWorkspaceCommand = CreateWorkspaceCommand;
14150
13796
  } (CreateWorkspaceCommand));
14151
13797
  return CreateWorkspaceCommand;
14152
13798
  }
@@ -14158,13 +13804,13 @@ var hasRequiredDeleteContextCommand;
14158
13804
  function requireDeleteContextCommand () {
14159
13805
  if (hasRequiredDeleteContextCommand) return DeleteContextCommand;
14160
13806
  hasRequiredDeleteContextCommand = 1;
14161
- (function (exports) {
14162
- Object.defineProperty(exports, "__esModule", { value: true });
14163
- exports.DeleteContextCommand = exports.$Command = void 0;
13807
+ (function (exports$1) {
13808
+ Object.defineProperty(exports$1, "__esModule", { value: true });
13809
+ exports$1.DeleteContextCommand = exports$1.$Command = void 0;
14164
13810
  const Aws_restJson1_1 = requireAws_restJson1();
14165
13811
  const middleware_serde_1 = require$$1;
14166
- const smithy_client_1 = require$$84;
14167
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
13812
+ const smithy_client_1 = require$$86;
13813
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
14168
13814
  class DeleteContextCommand extends smithy_client_1.Command.classBuilder()
14169
13815
  .m(function (Command, cs, config, o) {
14170
13816
  return [
@@ -14178,7 +13824,7 @@ function requireDeleteContextCommand () {
14178
13824
  .de(Aws_restJson1_1.de_DeleteContextCommand)
14179
13825
  .build() {
14180
13826
  }
14181
- exports.DeleteContextCommand = DeleteContextCommand;
13827
+ exports$1.DeleteContextCommand = DeleteContextCommand;
14182
13828
  } (DeleteContextCommand));
14183
13829
  return DeleteContextCommand;
14184
13830
  }
@@ -14190,13 +13836,13 @@ var hasRequiredDeleteDefaultConfigCommand;
14190
13836
  function requireDeleteDefaultConfigCommand () {
14191
13837
  if (hasRequiredDeleteDefaultConfigCommand) return DeleteDefaultConfigCommand;
14192
13838
  hasRequiredDeleteDefaultConfigCommand = 1;
14193
- (function (exports) {
14194
- Object.defineProperty(exports, "__esModule", { value: true });
14195
- exports.DeleteDefaultConfigCommand = exports.$Command = void 0;
13839
+ (function (exports$1) {
13840
+ Object.defineProperty(exports$1, "__esModule", { value: true });
13841
+ exports$1.DeleteDefaultConfigCommand = exports$1.$Command = void 0;
14196
13842
  const Aws_restJson1_1 = requireAws_restJson1();
14197
13843
  const middleware_serde_1 = require$$1;
14198
- const smithy_client_1 = require$$84;
14199
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
13844
+ const smithy_client_1 = require$$86;
13845
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
14200
13846
  class DeleteDefaultConfigCommand extends smithy_client_1.Command.classBuilder()
14201
13847
  .m(function (Command, cs, config, o) {
14202
13848
  return [
@@ -14210,7 +13856,7 @@ function requireDeleteDefaultConfigCommand () {
14210
13856
  .de(Aws_restJson1_1.de_DeleteDefaultConfigCommand)
14211
13857
  .build() {
14212
13858
  }
14213
- exports.DeleteDefaultConfigCommand = DeleteDefaultConfigCommand;
13859
+ exports$1.DeleteDefaultConfigCommand = DeleteDefaultConfigCommand;
14214
13860
  } (DeleteDefaultConfigCommand));
14215
13861
  return DeleteDefaultConfigCommand;
14216
13862
  }
@@ -14222,13 +13868,13 @@ var hasRequiredDeleteDimensionCommand;
14222
13868
  function requireDeleteDimensionCommand () {
14223
13869
  if (hasRequiredDeleteDimensionCommand) return DeleteDimensionCommand;
14224
13870
  hasRequiredDeleteDimensionCommand = 1;
14225
- (function (exports) {
14226
- Object.defineProperty(exports, "__esModule", { value: true });
14227
- exports.DeleteDimensionCommand = exports.$Command = void 0;
13871
+ (function (exports$1) {
13872
+ Object.defineProperty(exports$1, "__esModule", { value: true });
13873
+ exports$1.DeleteDimensionCommand = exports$1.$Command = void 0;
14228
13874
  const Aws_restJson1_1 = requireAws_restJson1();
14229
13875
  const middleware_serde_1 = require$$1;
14230
- const smithy_client_1 = require$$84;
14231
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
13876
+ const smithy_client_1 = require$$86;
13877
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
14232
13878
  class DeleteDimensionCommand extends smithy_client_1.Command.classBuilder()
14233
13879
  .m(function (Command, cs, config, o) {
14234
13880
  return [
@@ -14242,7 +13888,7 @@ function requireDeleteDimensionCommand () {
14242
13888
  .de(Aws_restJson1_1.de_DeleteDimensionCommand)
14243
13889
  .build() {
14244
13890
  }
14245
- exports.DeleteDimensionCommand = DeleteDimensionCommand;
13891
+ exports$1.DeleteDimensionCommand = DeleteDimensionCommand;
14246
13892
  } (DeleteDimensionCommand));
14247
13893
  return DeleteDimensionCommand;
14248
13894
  }
@@ -14254,13 +13900,13 @@ var hasRequiredDeleteExperimentGroupCommand;
14254
13900
  function requireDeleteExperimentGroupCommand () {
14255
13901
  if (hasRequiredDeleteExperimentGroupCommand) return DeleteExperimentGroupCommand;
14256
13902
  hasRequiredDeleteExperimentGroupCommand = 1;
14257
- (function (exports) {
14258
- Object.defineProperty(exports, "__esModule", { value: true });
14259
- exports.DeleteExperimentGroupCommand = exports.$Command = void 0;
13903
+ (function (exports$1) {
13904
+ Object.defineProperty(exports$1, "__esModule", { value: true });
13905
+ exports$1.DeleteExperimentGroupCommand = exports$1.$Command = void 0;
14260
13906
  const Aws_restJson1_1 = requireAws_restJson1();
14261
13907
  const middleware_serde_1 = require$$1;
14262
- const smithy_client_1 = require$$84;
14263
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
13908
+ const smithy_client_1 = require$$86;
13909
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
14264
13910
  class DeleteExperimentGroupCommand extends smithy_client_1.Command.classBuilder()
14265
13911
  .m(function (Command, cs, config, o) {
14266
13912
  return [
@@ -14274,7 +13920,7 @@ function requireDeleteExperimentGroupCommand () {
14274
13920
  .de(Aws_restJson1_1.de_DeleteExperimentGroupCommand)
14275
13921
  .build() {
14276
13922
  }
14277
- exports.DeleteExperimentGroupCommand = DeleteExperimentGroupCommand;
13923
+ exports$1.DeleteExperimentGroupCommand = DeleteExperimentGroupCommand;
14278
13924
  } (DeleteExperimentGroupCommand));
14279
13925
  return DeleteExperimentGroupCommand;
14280
13926
  }
@@ -14286,13 +13932,13 @@ var hasRequiredDeleteFunctionCommand;
14286
13932
  function requireDeleteFunctionCommand () {
14287
13933
  if (hasRequiredDeleteFunctionCommand) return DeleteFunctionCommand;
14288
13934
  hasRequiredDeleteFunctionCommand = 1;
14289
- (function (exports) {
14290
- Object.defineProperty(exports, "__esModule", { value: true });
14291
- exports.DeleteFunctionCommand = exports.$Command = void 0;
13935
+ (function (exports$1) {
13936
+ Object.defineProperty(exports$1, "__esModule", { value: true });
13937
+ exports$1.DeleteFunctionCommand = exports$1.$Command = void 0;
14292
13938
  const Aws_restJson1_1 = requireAws_restJson1();
14293
13939
  const middleware_serde_1 = require$$1;
14294
- const smithy_client_1 = require$$84;
14295
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
13940
+ const smithy_client_1 = require$$86;
13941
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
14296
13942
  class DeleteFunctionCommand extends smithy_client_1.Command.classBuilder()
14297
13943
  .m(function (Command, cs, config, o) {
14298
13944
  return [
@@ -14306,7 +13952,7 @@ function requireDeleteFunctionCommand () {
14306
13952
  .de(Aws_restJson1_1.de_DeleteFunctionCommand)
14307
13953
  .build() {
14308
13954
  }
14309
- exports.DeleteFunctionCommand = DeleteFunctionCommand;
13955
+ exports$1.DeleteFunctionCommand = DeleteFunctionCommand;
14310
13956
  } (DeleteFunctionCommand));
14311
13957
  return DeleteFunctionCommand;
14312
13958
  }
@@ -14318,13 +13964,13 @@ var hasRequiredDeleteSecretCommand;
14318
13964
  function requireDeleteSecretCommand () {
14319
13965
  if (hasRequiredDeleteSecretCommand) return DeleteSecretCommand;
14320
13966
  hasRequiredDeleteSecretCommand = 1;
14321
- (function (exports) {
14322
- Object.defineProperty(exports, "__esModule", { value: true });
14323
- exports.DeleteSecretCommand = exports.$Command = void 0;
13967
+ (function (exports$1) {
13968
+ Object.defineProperty(exports$1, "__esModule", { value: true });
13969
+ exports$1.DeleteSecretCommand = exports$1.$Command = void 0;
14324
13970
  const Aws_restJson1_1 = requireAws_restJson1();
14325
13971
  const middleware_serde_1 = require$$1;
14326
- const smithy_client_1 = require$$84;
14327
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
13972
+ const smithy_client_1 = require$$86;
13973
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
14328
13974
  class DeleteSecretCommand extends smithy_client_1.Command.classBuilder()
14329
13975
  .m(function (Command, cs, config, o) {
14330
13976
  return [
@@ -14338,7 +13984,7 @@ function requireDeleteSecretCommand () {
14338
13984
  .de(Aws_restJson1_1.de_DeleteSecretCommand)
14339
13985
  .build() {
14340
13986
  }
14341
- exports.DeleteSecretCommand = DeleteSecretCommand;
13987
+ exports$1.DeleteSecretCommand = DeleteSecretCommand;
14342
13988
  } (DeleteSecretCommand));
14343
13989
  return DeleteSecretCommand;
14344
13990
  }
@@ -14350,13 +13996,13 @@ var hasRequiredDeleteTypeTemplatesCommand;
14350
13996
  function requireDeleteTypeTemplatesCommand () {
14351
13997
  if (hasRequiredDeleteTypeTemplatesCommand) return DeleteTypeTemplatesCommand;
14352
13998
  hasRequiredDeleteTypeTemplatesCommand = 1;
14353
- (function (exports) {
14354
- Object.defineProperty(exports, "__esModule", { value: true });
14355
- exports.DeleteTypeTemplatesCommand = exports.$Command = void 0;
13999
+ (function (exports$1) {
14000
+ Object.defineProperty(exports$1, "__esModule", { value: true });
14001
+ exports$1.DeleteTypeTemplatesCommand = exports$1.$Command = void 0;
14356
14002
  const Aws_restJson1_1 = requireAws_restJson1();
14357
14003
  const middleware_serde_1 = require$$1;
14358
- const smithy_client_1 = require$$84;
14359
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
14004
+ const smithy_client_1 = require$$86;
14005
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
14360
14006
  class DeleteTypeTemplatesCommand extends smithy_client_1.Command.classBuilder()
14361
14007
  .m(function (Command, cs, config, o) {
14362
14008
  return [
@@ -14370,7 +14016,7 @@ function requireDeleteTypeTemplatesCommand () {
14370
14016
  .de(Aws_restJson1_1.de_DeleteTypeTemplatesCommand)
14371
14017
  .build() {
14372
14018
  }
14373
- exports.DeleteTypeTemplatesCommand = DeleteTypeTemplatesCommand;
14019
+ exports$1.DeleteTypeTemplatesCommand = DeleteTypeTemplatesCommand;
14374
14020
  } (DeleteTypeTemplatesCommand));
14375
14021
  return DeleteTypeTemplatesCommand;
14376
14022
  }
@@ -14382,13 +14028,13 @@ var hasRequiredDeleteVariableCommand;
14382
14028
  function requireDeleteVariableCommand () {
14383
14029
  if (hasRequiredDeleteVariableCommand) return DeleteVariableCommand;
14384
14030
  hasRequiredDeleteVariableCommand = 1;
14385
- (function (exports) {
14386
- Object.defineProperty(exports, "__esModule", { value: true });
14387
- exports.DeleteVariableCommand = exports.$Command = void 0;
14031
+ (function (exports$1) {
14032
+ Object.defineProperty(exports$1, "__esModule", { value: true });
14033
+ exports$1.DeleteVariableCommand = exports$1.$Command = void 0;
14388
14034
  const Aws_restJson1_1 = requireAws_restJson1();
14389
14035
  const middleware_serde_1 = require$$1;
14390
- const smithy_client_1 = require$$84;
14391
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
14036
+ const smithy_client_1 = require$$86;
14037
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
14392
14038
  class DeleteVariableCommand extends smithy_client_1.Command.classBuilder()
14393
14039
  .m(function (Command, cs, config, o) {
14394
14040
  return [
@@ -14402,7 +14048,7 @@ function requireDeleteVariableCommand () {
14402
14048
  .de(Aws_restJson1_1.de_DeleteVariableCommand)
14403
14049
  .build() {
14404
14050
  }
14405
- exports.DeleteVariableCommand = DeleteVariableCommand;
14051
+ exports$1.DeleteVariableCommand = DeleteVariableCommand;
14406
14052
  } (DeleteVariableCommand));
14407
14053
  return DeleteVariableCommand;
14408
14054
  }
@@ -14414,13 +14060,13 @@ var hasRequiredDeleteWebhookCommand;
14414
14060
  function requireDeleteWebhookCommand () {
14415
14061
  if (hasRequiredDeleteWebhookCommand) return DeleteWebhookCommand;
14416
14062
  hasRequiredDeleteWebhookCommand = 1;
14417
- (function (exports) {
14418
- Object.defineProperty(exports, "__esModule", { value: true });
14419
- exports.DeleteWebhookCommand = exports.$Command = void 0;
14063
+ (function (exports$1) {
14064
+ Object.defineProperty(exports$1, "__esModule", { value: true });
14065
+ exports$1.DeleteWebhookCommand = exports$1.$Command = void 0;
14420
14066
  const Aws_restJson1_1 = requireAws_restJson1();
14421
14067
  const middleware_serde_1 = require$$1;
14422
- const smithy_client_1 = require$$84;
14423
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
14068
+ const smithy_client_1 = require$$86;
14069
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
14424
14070
  class DeleteWebhookCommand extends smithy_client_1.Command.classBuilder()
14425
14071
  .m(function (Command, cs, config, o) {
14426
14072
  return [
@@ -14434,7 +14080,7 @@ function requireDeleteWebhookCommand () {
14434
14080
  .de(Aws_restJson1_1.de_DeleteWebhookCommand)
14435
14081
  .build() {
14436
14082
  }
14437
- exports.DeleteWebhookCommand = DeleteWebhookCommand;
14083
+ exports$1.DeleteWebhookCommand = DeleteWebhookCommand;
14438
14084
  } (DeleteWebhookCommand));
14439
14085
  return DeleteWebhookCommand;
14440
14086
  }
@@ -14446,13 +14092,13 @@ var hasRequiredDiscardExperimentCommand;
14446
14092
  function requireDiscardExperimentCommand () {
14447
14093
  if (hasRequiredDiscardExperimentCommand) return DiscardExperimentCommand;
14448
14094
  hasRequiredDiscardExperimentCommand = 1;
14449
- (function (exports) {
14450
- Object.defineProperty(exports, "__esModule", { value: true });
14451
- exports.DiscardExperimentCommand = exports.$Command = void 0;
14095
+ (function (exports$1) {
14096
+ Object.defineProperty(exports$1, "__esModule", { value: true });
14097
+ exports$1.DiscardExperimentCommand = exports$1.$Command = void 0;
14452
14098
  const Aws_restJson1_1 = requireAws_restJson1();
14453
14099
  const middleware_serde_1 = require$$1;
14454
- const smithy_client_1 = require$$84;
14455
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
14100
+ const smithy_client_1 = require$$86;
14101
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
14456
14102
  class DiscardExperimentCommand extends smithy_client_1.Command.classBuilder()
14457
14103
  .m(function (Command, cs, config, o) {
14458
14104
  return [
@@ -14466,7 +14112,7 @@ function requireDiscardExperimentCommand () {
14466
14112
  .de(Aws_restJson1_1.de_DiscardExperimentCommand)
14467
14113
  .build() {
14468
14114
  }
14469
- exports.DiscardExperimentCommand = DiscardExperimentCommand;
14115
+ exports$1.DiscardExperimentCommand = DiscardExperimentCommand;
14470
14116
  } (DiscardExperimentCommand));
14471
14117
  return DiscardExperimentCommand;
14472
14118
  }
@@ -14478,13 +14124,13 @@ var hasRequiredGetConfigCommand;
14478
14124
  function requireGetConfigCommand () {
14479
14125
  if (hasRequiredGetConfigCommand) return GetConfigCommand;
14480
14126
  hasRequiredGetConfigCommand = 1;
14481
- (function (exports) {
14482
- Object.defineProperty(exports, "__esModule", { value: true });
14483
- exports.GetConfigCommand = exports.$Command = void 0;
14127
+ (function (exports$1) {
14128
+ Object.defineProperty(exports$1, "__esModule", { value: true });
14129
+ exports$1.GetConfigCommand = exports$1.$Command = void 0;
14484
14130
  const Aws_restJson1_1 = requireAws_restJson1();
14485
14131
  const middleware_serde_1 = require$$1;
14486
- const smithy_client_1 = require$$84;
14487
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
14132
+ const smithy_client_1 = require$$86;
14133
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
14488
14134
  class GetConfigCommand extends smithy_client_1.Command.classBuilder()
14489
14135
  .m(function (Command, cs, config, o) {
14490
14136
  return [
@@ -14498,7 +14144,7 @@ function requireGetConfigCommand () {
14498
14144
  .de(Aws_restJson1_1.de_GetConfigCommand)
14499
14145
  .build() {
14500
14146
  }
14501
- exports.GetConfigCommand = GetConfigCommand;
14147
+ exports$1.GetConfigCommand = GetConfigCommand;
14502
14148
  } (GetConfigCommand));
14503
14149
  return GetConfigCommand;
14504
14150
  }
@@ -14510,13 +14156,13 @@ var hasRequiredGetConfigFastCommand;
14510
14156
  function requireGetConfigFastCommand () {
14511
14157
  if (hasRequiredGetConfigFastCommand) return GetConfigFastCommand;
14512
14158
  hasRequiredGetConfigFastCommand = 1;
14513
- (function (exports) {
14514
- Object.defineProperty(exports, "__esModule", { value: true });
14515
- exports.GetConfigFastCommand = exports.$Command = void 0;
14159
+ (function (exports$1) {
14160
+ Object.defineProperty(exports$1, "__esModule", { value: true });
14161
+ exports$1.GetConfigFastCommand = exports$1.$Command = void 0;
14516
14162
  const Aws_restJson1_1 = requireAws_restJson1();
14517
14163
  const middleware_serde_1 = require$$1;
14518
- const smithy_client_1 = require$$84;
14519
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
14164
+ const smithy_client_1 = require$$86;
14165
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
14520
14166
  class GetConfigFastCommand extends smithy_client_1.Command.classBuilder()
14521
14167
  .m(function (Command, cs, config, o) {
14522
14168
  return [
@@ -14530,11 +14176,75 @@ function requireGetConfigFastCommand () {
14530
14176
  .de(Aws_restJson1_1.de_GetConfigFastCommand)
14531
14177
  .build() {
14532
14178
  }
14533
- exports.GetConfigFastCommand = GetConfigFastCommand;
14179
+ exports$1.GetConfigFastCommand = GetConfigFastCommand;
14534
14180
  } (GetConfigFastCommand));
14535
14181
  return GetConfigFastCommand;
14536
14182
  }
14537
14183
 
14184
+ var GetConfigJsonCommand = {};
14185
+
14186
+ var hasRequiredGetConfigJsonCommand;
14187
+
14188
+ function requireGetConfigJsonCommand () {
14189
+ if (hasRequiredGetConfigJsonCommand) return GetConfigJsonCommand;
14190
+ hasRequiredGetConfigJsonCommand = 1;
14191
+ (function (exports$1) {
14192
+ Object.defineProperty(exports$1, "__esModule", { value: true });
14193
+ exports$1.GetConfigJsonCommand = exports$1.$Command = void 0;
14194
+ const Aws_restJson1_1 = requireAws_restJson1();
14195
+ const middleware_serde_1 = require$$1;
14196
+ const smithy_client_1 = require$$86;
14197
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
14198
+ class GetConfigJsonCommand extends smithy_client_1.Command.classBuilder()
14199
+ .m(function (Command, cs, config, o) {
14200
+ return [
14201
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
14202
+ ];
14203
+ })
14204
+ .s("Superposition", "GetConfigJson", {})
14205
+ .n("SuperpositionClient", "GetConfigJsonCommand")
14206
+ .f(void 0, void 0)
14207
+ .ser(Aws_restJson1_1.se_GetConfigJsonCommand)
14208
+ .de(Aws_restJson1_1.de_GetConfigJsonCommand)
14209
+ .build() {
14210
+ }
14211
+ exports$1.GetConfigJsonCommand = GetConfigJsonCommand;
14212
+ } (GetConfigJsonCommand));
14213
+ return GetConfigJsonCommand;
14214
+ }
14215
+
14216
+ var GetConfigTomlCommand = {};
14217
+
14218
+ var hasRequiredGetConfigTomlCommand;
14219
+
14220
+ function requireGetConfigTomlCommand () {
14221
+ if (hasRequiredGetConfigTomlCommand) return GetConfigTomlCommand;
14222
+ hasRequiredGetConfigTomlCommand = 1;
14223
+ (function (exports$1) {
14224
+ Object.defineProperty(exports$1, "__esModule", { value: true });
14225
+ exports$1.GetConfigTomlCommand = exports$1.$Command = void 0;
14226
+ const Aws_restJson1_1 = requireAws_restJson1();
14227
+ const middleware_serde_1 = require$$1;
14228
+ const smithy_client_1 = require$$86;
14229
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
14230
+ class GetConfigTomlCommand extends smithy_client_1.Command.classBuilder()
14231
+ .m(function (Command, cs, config, o) {
14232
+ return [
14233
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
14234
+ ];
14235
+ })
14236
+ .s("Superposition", "GetConfigToml", {})
14237
+ .n("SuperpositionClient", "GetConfigTomlCommand")
14238
+ .f(void 0, void 0)
14239
+ .ser(Aws_restJson1_1.se_GetConfigTomlCommand)
14240
+ .de(Aws_restJson1_1.de_GetConfigTomlCommand)
14241
+ .build() {
14242
+ }
14243
+ exports$1.GetConfigTomlCommand = GetConfigTomlCommand;
14244
+ } (GetConfigTomlCommand));
14245
+ return GetConfigTomlCommand;
14246
+ }
14247
+
14538
14248
  var GetContextCommand = {};
14539
14249
 
14540
14250
  var hasRequiredGetContextCommand;
@@ -14542,13 +14252,13 @@ var hasRequiredGetContextCommand;
14542
14252
  function requireGetContextCommand () {
14543
14253
  if (hasRequiredGetContextCommand) return GetContextCommand;
14544
14254
  hasRequiredGetContextCommand = 1;
14545
- (function (exports) {
14546
- Object.defineProperty(exports, "__esModule", { value: true });
14547
- exports.GetContextCommand = exports.$Command = void 0;
14255
+ (function (exports$1) {
14256
+ Object.defineProperty(exports$1, "__esModule", { value: true });
14257
+ exports$1.GetContextCommand = exports$1.$Command = void 0;
14548
14258
  const Aws_restJson1_1 = requireAws_restJson1();
14549
14259
  const middleware_serde_1 = require$$1;
14550
- const smithy_client_1 = require$$84;
14551
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
14260
+ const smithy_client_1 = require$$86;
14261
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
14552
14262
  class GetContextCommand extends smithy_client_1.Command.classBuilder()
14553
14263
  .m(function (Command, cs, config, o) {
14554
14264
  return [
@@ -14562,7 +14272,7 @@ function requireGetContextCommand () {
14562
14272
  .de(Aws_restJson1_1.de_GetContextCommand)
14563
14273
  .build() {
14564
14274
  }
14565
- exports.GetContextCommand = GetContextCommand;
14275
+ exports$1.GetContextCommand = GetContextCommand;
14566
14276
  } (GetContextCommand));
14567
14277
  return GetContextCommand;
14568
14278
  }
@@ -14574,13 +14284,13 @@ var hasRequiredGetContextFromConditionCommand;
14574
14284
  function requireGetContextFromConditionCommand () {
14575
14285
  if (hasRequiredGetContextFromConditionCommand) return GetContextFromConditionCommand;
14576
14286
  hasRequiredGetContextFromConditionCommand = 1;
14577
- (function (exports) {
14578
- Object.defineProperty(exports, "__esModule", { value: true });
14579
- exports.GetContextFromConditionCommand = exports.$Command = void 0;
14287
+ (function (exports$1) {
14288
+ Object.defineProperty(exports$1, "__esModule", { value: true });
14289
+ exports$1.GetContextFromConditionCommand = exports$1.$Command = void 0;
14580
14290
  const Aws_restJson1_1 = requireAws_restJson1();
14581
14291
  const middleware_serde_1 = require$$1;
14582
- const smithy_client_1 = require$$84;
14583
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
14292
+ const smithy_client_1 = require$$86;
14293
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
14584
14294
  class GetContextFromConditionCommand extends smithy_client_1.Command.classBuilder()
14585
14295
  .m(function (Command, cs, config, o) {
14586
14296
  return [
@@ -14594,7 +14304,7 @@ function requireGetContextFromConditionCommand () {
14594
14304
  .de(Aws_restJson1_1.de_GetContextFromConditionCommand)
14595
14305
  .build() {
14596
14306
  }
14597
- exports.GetContextFromConditionCommand = GetContextFromConditionCommand;
14307
+ exports$1.GetContextFromConditionCommand = GetContextFromConditionCommand;
14598
14308
  } (GetContextFromConditionCommand));
14599
14309
  return GetContextFromConditionCommand;
14600
14310
  }
@@ -14606,13 +14316,13 @@ var hasRequiredGetDefaultConfigCommand;
14606
14316
  function requireGetDefaultConfigCommand () {
14607
14317
  if (hasRequiredGetDefaultConfigCommand) return GetDefaultConfigCommand;
14608
14318
  hasRequiredGetDefaultConfigCommand = 1;
14609
- (function (exports) {
14610
- Object.defineProperty(exports, "__esModule", { value: true });
14611
- exports.GetDefaultConfigCommand = exports.$Command = void 0;
14319
+ (function (exports$1) {
14320
+ Object.defineProperty(exports$1, "__esModule", { value: true });
14321
+ exports$1.GetDefaultConfigCommand = exports$1.$Command = void 0;
14612
14322
  const Aws_restJson1_1 = requireAws_restJson1();
14613
14323
  const middleware_serde_1 = require$$1;
14614
- const smithy_client_1 = require$$84;
14615
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
14324
+ const smithy_client_1 = require$$86;
14325
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
14616
14326
  class GetDefaultConfigCommand extends smithy_client_1.Command.classBuilder()
14617
14327
  .m(function (Command, cs, config, o) {
14618
14328
  return [
@@ -14626,7 +14336,7 @@ function requireGetDefaultConfigCommand () {
14626
14336
  .de(Aws_restJson1_1.de_GetDefaultConfigCommand)
14627
14337
  .build() {
14628
14338
  }
14629
- exports.GetDefaultConfigCommand = GetDefaultConfigCommand;
14339
+ exports$1.GetDefaultConfigCommand = GetDefaultConfigCommand;
14630
14340
  } (GetDefaultConfigCommand));
14631
14341
  return GetDefaultConfigCommand;
14632
14342
  }
@@ -14638,13 +14348,13 @@ var hasRequiredGetDimensionCommand;
14638
14348
  function requireGetDimensionCommand () {
14639
14349
  if (hasRequiredGetDimensionCommand) return GetDimensionCommand;
14640
14350
  hasRequiredGetDimensionCommand = 1;
14641
- (function (exports) {
14642
- Object.defineProperty(exports, "__esModule", { value: true });
14643
- exports.GetDimensionCommand = exports.$Command = void 0;
14351
+ (function (exports$1) {
14352
+ Object.defineProperty(exports$1, "__esModule", { value: true });
14353
+ exports$1.GetDimensionCommand = exports$1.$Command = void 0;
14644
14354
  const Aws_restJson1_1 = requireAws_restJson1();
14645
14355
  const middleware_serde_1 = require$$1;
14646
- const smithy_client_1 = require$$84;
14647
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
14356
+ const smithy_client_1 = require$$86;
14357
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
14648
14358
  class GetDimensionCommand extends smithy_client_1.Command.classBuilder()
14649
14359
  .m(function (Command, cs, config, o) {
14650
14360
  return [
@@ -14658,7 +14368,7 @@ function requireGetDimensionCommand () {
14658
14368
  .de(Aws_restJson1_1.de_GetDimensionCommand)
14659
14369
  .build() {
14660
14370
  }
14661
- exports.GetDimensionCommand = GetDimensionCommand;
14371
+ exports$1.GetDimensionCommand = GetDimensionCommand;
14662
14372
  } (GetDimensionCommand));
14663
14373
  return GetDimensionCommand;
14664
14374
  }
@@ -14670,13 +14380,13 @@ var hasRequiredGetExperimentCommand;
14670
14380
  function requireGetExperimentCommand () {
14671
14381
  if (hasRequiredGetExperimentCommand) return GetExperimentCommand;
14672
14382
  hasRequiredGetExperimentCommand = 1;
14673
- (function (exports) {
14674
- Object.defineProperty(exports, "__esModule", { value: true });
14675
- exports.GetExperimentCommand = exports.$Command = void 0;
14383
+ (function (exports$1) {
14384
+ Object.defineProperty(exports$1, "__esModule", { value: true });
14385
+ exports$1.GetExperimentCommand = exports$1.$Command = void 0;
14676
14386
  const Aws_restJson1_1 = requireAws_restJson1();
14677
14387
  const middleware_serde_1 = require$$1;
14678
- const smithy_client_1 = require$$84;
14679
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
14388
+ const smithy_client_1 = require$$86;
14389
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
14680
14390
  class GetExperimentCommand extends smithy_client_1.Command.classBuilder()
14681
14391
  .m(function (Command, cs, config, o) {
14682
14392
  return [
@@ -14690,7 +14400,7 @@ function requireGetExperimentCommand () {
14690
14400
  .de(Aws_restJson1_1.de_GetExperimentCommand)
14691
14401
  .build() {
14692
14402
  }
14693
- exports.GetExperimentCommand = GetExperimentCommand;
14403
+ exports$1.GetExperimentCommand = GetExperimentCommand;
14694
14404
  } (GetExperimentCommand));
14695
14405
  return GetExperimentCommand;
14696
14406
  }
@@ -14702,13 +14412,13 @@ var hasRequiredGetExperimentGroupCommand;
14702
14412
  function requireGetExperimentGroupCommand () {
14703
14413
  if (hasRequiredGetExperimentGroupCommand) return GetExperimentGroupCommand;
14704
14414
  hasRequiredGetExperimentGroupCommand = 1;
14705
- (function (exports) {
14706
- Object.defineProperty(exports, "__esModule", { value: true });
14707
- exports.GetExperimentGroupCommand = exports.$Command = void 0;
14415
+ (function (exports$1) {
14416
+ Object.defineProperty(exports$1, "__esModule", { value: true });
14417
+ exports$1.GetExperimentGroupCommand = exports$1.$Command = void 0;
14708
14418
  const Aws_restJson1_1 = requireAws_restJson1();
14709
14419
  const middleware_serde_1 = require$$1;
14710
- const smithy_client_1 = require$$84;
14711
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
14420
+ const smithy_client_1 = require$$86;
14421
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
14712
14422
  class GetExperimentGroupCommand extends smithy_client_1.Command.classBuilder()
14713
14423
  .m(function (Command, cs, config, o) {
14714
14424
  return [
@@ -14722,7 +14432,7 @@ function requireGetExperimentGroupCommand () {
14722
14432
  .de(Aws_restJson1_1.de_GetExperimentGroupCommand)
14723
14433
  .build() {
14724
14434
  }
14725
- exports.GetExperimentGroupCommand = GetExperimentGroupCommand;
14435
+ exports$1.GetExperimentGroupCommand = GetExperimentGroupCommand;
14726
14436
  } (GetExperimentGroupCommand));
14727
14437
  return GetExperimentGroupCommand;
14728
14438
  }
@@ -14734,13 +14444,13 @@ var hasRequiredGetFunctionCommand;
14734
14444
  function requireGetFunctionCommand () {
14735
14445
  if (hasRequiredGetFunctionCommand) return GetFunctionCommand;
14736
14446
  hasRequiredGetFunctionCommand = 1;
14737
- (function (exports) {
14738
- Object.defineProperty(exports, "__esModule", { value: true });
14739
- exports.GetFunctionCommand = exports.$Command = void 0;
14447
+ (function (exports$1) {
14448
+ Object.defineProperty(exports$1, "__esModule", { value: true });
14449
+ exports$1.GetFunctionCommand = exports$1.$Command = void 0;
14740
14450
  const Aws_restJson1_1 = requireAws_restJson1();
14741
14451
  const middleware_serde_1 = require$$1;
14742
- const smithy_client_1 = require$$84;
14743
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
14452
+ const smithy_client_1 = require$$86;
14453
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
14744
14454
  class GetFunctionCommand extends smithy_client_1.Command.classBuilder()
14745
14455
  .m(function (Command, cs, config, o) {
14746
14456
  return [
@@ -14754,7 +14464,7 @@ function requireGetFunctionCommand () {
14754
14464
  .de(Aws_restJson1_1.de_GetFunctionCommand)
14755
14465
  .build() {
14756
14466
  }
14757
- exports.GetFunctionCommand = GetFunctionCommand;
14467
+ exports$1.GetFunctionCommand = GetFunctionCommand;
14758
14468
  } (GetFunctionCommand));
14759
14469
  return GetFunctionCommand;
14760
14470
  }
@@ -14766,13 +14476,13 @@ var hasRequiredGetOrganisationCommand;
14766
14476
  function requireGetOrganisationCommand () {
14767
14477
  if (hasRequiredGetOrganisationCommand) return GetOrganisationCommand;
14768
14478
  hasRequiredGetOrganisationCommand = 1;
14769
- (function (exports) {
14770
- Object.defineProperty(exports, "__esModule", { value: true });
14771
- exports.GetOrganisationCommand = exports.$Command = void 0;
14479
+ (function (exports$1) {
14480
+ Object.defineProperty(exports$1, "__esModule", { value: true });
14481
+ exports$1.GetOrganisationCommand = exports$1.$Command = void 0;
14772
14482
  const Aws_restJson1_1 = requireAws_restJson1();
14773
14483
  const middleware_serde_1 = require$$1;
14774
- const smithy_client_1 = require$$84;
14775
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
14484
+ const smithy_client_1 = require$$86;
14485
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
14776
14486
  class GetOrganisationCommand extends smithy_client_1.Command.classBuilder()
14777
14487
  .m(function (Command, cs, config, o) {
14778
14488
  return [
@@ -14786,7 +14496,7 @@ function requireGetOrganisationCommand () {
14786
14496
  .de(Aws_restJson1_1.de_GetOrganisationCommand)
14787
14497
  .build() {
14788
14498
  }
14789
- exports.GetOrganisationCommand = GetOrganisationCommand;
14499
+ exports$1.GetOrganisationCommand = GetOrganisationCommand;
14790
14500
  } (GetOrganisationCommand));
14791
14501
  return GetOrganisationCommand;
14792
14502
  }
@@ -14798,13 +14508,13 @@ var hasRequiredGetResolvedConfigCommand;
14798
14508
  function requireGetResolvedConfigCommand () {
14799
14509
  if (hasRequiredGetResolvedConfigCommand) return GetResolvedConfigCommand;
14800
14510
  hasRequiredGetResolvedConfigCommand = 1;
14801
- (function (exports) {
14802
- Object.defineProperty(exports, "__esModule", { value: true });
14803
- exports.GetResolvedConfigCommand = exports.$Command = void 0;
14511
+ (function (exports$1) {
14512
+ Object.defineProperty(exports$1, "__esModule", { value: true });
14513
+ exports$1.GetResolvedConfigCommand = exports$1.$Command = void 0;
14804
14514
  const Aws_restJson1_1 = requireAws_restJson1();
14805
14515
  const middleware_serde_1 = require$$1;
14806
- const smithy_client_1 = require$$84;
14807
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
14516
+ const smithy_client_1 = require$$86;
14517
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
14808
14518
  class GetResolvedConfigCommand extends smithy_client_1.Command.classBuilder()
14809
14519
  .m(function (Command, cs, config, o) {
14810
14520
  return [
@@ -14818,7 +14528,7 @@ function requireGetResolvedConfigCommand () {
14818
14528
  .de(Aws_restJson1_1.de_GetResolvedConfigCommand)
14819
14529
  .build() {
14820
14530
  }
14821
- exports.GetResolvedConfigCommand = GetResolvedConfigCommand;
14531
+ exports$1.GetResolvedConfigCommand = GetResolvedConfigCommand;
14822
14532
  } (GetResolvedConfigCommand));
14823
14533
  return GetResolvedConfigCommand;
14824
14534
  }
@@ -14830,13 +14540,13 @@ var hasRequiredGetResolvedConfigWithIdentifierCommand;
14830
14540
  function requireGetResolvedConfigWithIdentifierCommand () {
14831
14541
  if (hasRequiredGetResolvedConfigWithIdentifierCommand) return GetResolvedConfigWithIdentifierCommand;
14832
14542
  hasRequiredGetResolvedConfigWithIdentifierCommand = 1;
14833
- (function (exports) {
14834
- Object.defineProperty(exports, "__esModule", { value: true });
14835
- exports.GetResolvedConfigWithIdentifierCommand = exports.$Command = void 0;
14543
+ (function (exports$1) {
14544
+ Object.defineProperty(exports$1, "__esModule", { value: true });
14545
+ exports$1.GetResolvedConfigWithIdentifierCommand = exports$1.$Command = void 0;
14836
14546
  const Aws_restJson1_1 = requireAws_restJson1();
14837
14547
  const middleware_serde_1 = require$$1;
14838
- const smithy_client_1 = require$$84;
14839
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
14548
+ const smithy_client_1 = require$$86;
14549
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
14840
14550
  class GetResolvedConfigWithIdentifierCommand extends smithy_client_1.Command.classBuilder()
14841
14551
  .m(function (Command, cs, config, o) {
14842
14552
  return [
@@ -14850,7 +14560,7 @@ function requireGetResolvedConfigWithIdentifierCommand () {
14850
14560
  .de(Aws_restJson1_1.de_GetResolvedConfigWithIdentifierCommand)
14851
14561
  .build() {
14852
14562
  }
14853
- exports.GetResolvedConfigWithIdentifierCommand = GetResolvedConfigWithIdentifierCommand;
14563
+ exports$1.GetResolvedConfigWithIdentifierCommand = GetResolvedConfigWithIdentifierCommand;
14854
14564
  } (GetResolvedConfigWithIdentifierCommand));
14855
14565
  return GetResolvedConfigWithIdentifierCommand;
14856
14566
  }
@@ -14862,13 +14572,13 @@ var hasRequiredGetSecretCommand;
14862
14572
  function requireGetSecretCommand () {
14863
14573
  if (hasRequiredGetSecretCommand) return GetSecretCommand;
14864
14574
  hasRequiredGetSecretCommand = 1;
14865
- (function (exports) {
14866
- Object.defineProperty(exports, "__esModule", { value: true });
14867
- exports.GetSecretCommand = exports.$Command = void 0;
14575
+ (function (exports$1) {
14576
+ Object.defineProperty(exports$1, "__esModule", { value: true });
14577
+ exports$1.GetSecretCommand = exports$1.$Command = void 0;
14868
14578
  const Aws_restJson1_1 = requireAws_restJson1();
14869
14579
  const middleware_serde_1 = require$$1;
14870
- const smithy_client_1 = require$$84;
14871
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
14580
+ const smithy_client_1 = require$$86;
14581
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
14872
14582
  class GetSecretCommand extends smithy_client_1.Command.classBuilder()
14873
14583
  .m(function (Command, cs, config, o) {
14874
14584
  return [
@@ -14882,7 +14592,7 @@ function requireGetSecretCommand () {
14882
14592
  .de(Aws_restJson1_1.de_GetSecretCommand)
14883
14593
  .build() {
14884
14594
  }
14885
- exports.GetSecretCommand = GetSecretCommand;
14595
+ exports$1.GetSecretCommand = GetSecretCommand;
14886
14596
  } (GetSecretCommand));
14887
14597
  return GetSecretCommand;
14888
14598
  }
@@ -14894,13 +14604,13 @@ var hasRequiredGetTypeTemplateCommand;
14894
14604
  function requireGetTypeTemplateCommand () {
14895
14605
  if (hasRequiredGetTypeTemplateCommand) return GetTypeTemplateCommand;
14896
14606
  hasRequiredGetTypeTemplateCommand = 1;
14897
- (function (exports) {
14898
- Object.defineProperty(exports, "__esModule", { value: true });
14899
- exports.GetTypeTemplateCommand = exports.$Command = void 0;
14607
+ (function (exports$1) {
14608
+ Object.defineProperty(exports$1, "__esModule", { value: true });
14609
+ exports$1.GetTypeTemplateCommand = exports$1.$Command = void 0;
14900
14610
  const Aws_restJson1_1 = requireAws_restJson1();
14901
14611
  const middleware_serde_1 = require$$1;
14902
- const smithy_client_1 = require$$84;
14903
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
14612
+ const smithy_client_1 = require$$86;
14613
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
14904
14614
  class GetTypeTemplateCommand extends smithy_client_1.Command.classBuilder()
14905
14615
  .m(function (Command, cs, config, o) {
14906
14616
  return [
@@ -14914,7 +14624,7 @@ function requireGetTypeTemplateCommand () {
14914
14624
  .de(Aws_restJson1_1.de_GetTypeTemplateCommand)
14915
14625
  .build() {
14916
14626
  }
14917
- exports.GetTypeTemplateCommand = GetTypeTemplateCommand;
14627
+ exports$1.GetTypeTemplateCommand = GetTypeTemplateCommand;
14918
14628
  } (GetTypeTemplateCommand));
14919
14629
  return GetTypeTemplateCommand;
14920
14630
  }
@@ -14926,13 +14636,13 @@ var hasRequiredGetTypeTemplatesListCommand;
14926
14636
  function requireGetTypeTemplatesListCommand () {
14927
14637
  if (hasRequiredGetTypeTemplatesListCommand) return GetTypeTemplatesListCommand;
14928
14638
  hasRequiredGetTypeTemplatesListCommand = 1;
14929
- (function (exports) {
14930
- Object.defineProperty(exports, "__esModule", { value: true });
14931
- exports.GetTypeTemplatesListCommand = exports.$Command = void 0;
14639
+ (function (exports$1) {
14640
+ Object.defineProperty(exports$1, "__esModule", { value: true });
14641
+ exports$1.GetTypeTemplatesListCommand = exports$1.$Command = void 0;
14932
14642
  const Aws_restJson1_1 = requireAws_restJson1();
14933
14643
  const middleware_serde_1 = require$$1;
14934
- const smithy_client_1 = require$$84;
14935
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
14644
+ const smithy_client_1 = require$$86;
14645
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
14936
14646
  class GetTypeTemplatesListCommand extends smithy_client_1.Command.classBuilder()
14937
14647
  .m(function (Command, cs, config, o) {
14938
14648
  return [
@@ -14946,7 +14656,7 @@ function requireGetTypeTemplatesListCommand () {
14946
14656
  .de(Aws_restJson1_1.de_GetTypeTemplatesListCommand)
14947
14657
  .build() {
14948
14658
  }
14949
- exports.GetTypeTemplatesListCommand = GetTypeTemplatesListCommand;
14659
+ exports$1.GetTypeTemplatesListCommand = GetTypeTemplatesListCommand;
14950
14660
  } (GetTypeTemplatesListCommand));
14951
14661
  return GetTypeTemplatesListCommand;
14952
14662
  }
@@ -14958,13 +14668,13 @@ var hasRequiredGetVariableCommand;
14958
14668
  function requireGetVariableCommand () {
14959
14669
  if (hasRequiredGetVariableCommand) return GetVariableCommand;
14960
14670
  hasRequiredGetVariableCommand = 1;
14961
- (function (exports) {
14962
- Object.defineProperty(exports, "__esModule", { value: true });
14963
- exports.GetVariableCommand = exports.$Command = void 0;
14671
+ (function (exports$1) {
14672
+ Object.defineProperty(exports$1, "__esModule", { value: true });
14673
+ exports$1.GetVariableCommand = exports$1.$Command = void 0;
14964
14674
  const Aws_restJson1_1 = requireAws_restJson1();
14965
14675
  const middleware_serde_1 = require$$1;
14966
- const smithy_client_1 = require$$84;
14967
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
14676
+ const smithy_client_1 = require$$86;
14677
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
14968
14678
  class GetVariableCommand extends smithy_client_1.Command.classBuilder()
14969
14679
  .m(function (Command, cs, config, o) {
14970
14680
  return [
@@ -14978,7 +14688,7 @@ function requireGetVariableCommand () {
14978
14688
  .de(Aws_restJson1_1.de_GetVariableCommand)
14979
14689
  .build() {
14980
14690
  }
14981
- exports.GetVariableCommand = GetVariableCommand;
14691
+ exports$1.GetVariableCommand = GetVariableCommand;
14982
14692
  } (GetVariableCommand));
14983
14693
  return GetVariableCommand;
14984
14694
  }
@@ -14990,13 +14700,13 @@ var hasRequiredGetVersionCommand;
14990
14700
  function requireGetVersionCommand () {
14991
14701
  if (hasRequiredGetVersionCommand) return GetVersionCommand;
14992
14702
  hasRequiredGetVersionCommand = 1;
14993
- (function (exports) {
14994
- Object.defineProperty(exports, "__esModule", { value: true });
14995
- exports.GetVersionCommand = exports.$Command = void 0;
14703
+ (function (exports$1) {
14704
+ Object.defineProperty(exports$1, "__esModule", { value: true });
14705
+ exports$1.GetVersionCommand = exports$1.$Command = void 0;
14996
14706
  const Aws_restJson1_1 = requireAws_restJson1();
14997
14707
  const middleware_serde_1 = require$$1;
14998
- const smithy_client_1 = require$$84;
14999
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
14708
+ const smithy_client_1 = require$$86;
14709
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
15000
14710
  class GetVersionCommand extends smithy_client_1.Command.classBuilder()
15001
14711
  .m(function (Command, cs, config, o) {
15002
14712
  return [
@@ -15010,7 +14720,7 @@ function requireGetVersionCommand () {
15010
14720
  .de(Aws_restJson1_1.de_GetVersionCommand)
15011
14721
  .build() {
15012
14722
  }
15013
- exports.GetVersionCommand = GetVersionCommand;
14723
+ exports$1.GetVersionCommand = GetVersionCommand;
15014
14724
  } (GetVersionCommand));
15015
14725
  return GetVersionCommand;
15016
14726
  }
@@ -15022,13 +14732,13 @@ var hasRequiredGetWebhookByEventCommand;
15022
14732
  function requireGetWebhookByEventCommand () {
15023
14733
  if (hasRequiredGetWebhookByEventCommand) return GetWebhookByEventCommand;
15024
14734
  hasRequiredGetWebhookByEventCommand = 1;
15025
- (function (exports) {
15026
- Object.defineProperty(exports, "__esModule", { value: true });
15027
- exports.GetWebhookByEventCommand = exports.$Command = void 0;
14735
+ (function (exports$1) {
14736
+ Object.defineProperty(exports$1, "__esModule", { value: true });
14737
+ exports$1.GetWebhookByEventCommand = exports$1.$Command = void 0;
15028
14738
  const Aws_restJson1_1 = requireAws_restJson1();
15029
14739
  const middleware_serde_1 = require$$1;
15030
- const smithy_client_1 = require$$84;
15031
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
14740
+ const smithy_client_1 = require$$86;
14741
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
15032
14742
  class GetWebhookByEventCommand extends smithy_client_1.Command.classBuilder()
15033
14743
  .m(function (Command, cs, config, o) {
15034
14744
  return [
@@ -15042,7 +14752,7 @@ function requireGetWebhookByEventCommand () {
15042
14752
  .de(Aws_restJson1_1.de_GetWebhookByEventCommand)
15043
14753
  .build() {
15044
14754
  }
15045
- exports.GetWebhookByEventCommand = GetWebhookByEventCommand;
14755
+ exports$1.GetWebhookByEventCommand = GetWebhookByEventCommand;
15046
14756
  } (GetWebhookByEventCommand));
15047
14757
  return GetWebhookByEventCommand;
15048
14758
  }
@@ -15054,13 +14764,13 @@ var hasRequiredGetWebhookCommand;
15054
14764
  function requireGetWebhookCommand () {
15055
14765
  if (hasRequiredGetWebhookCommand) return GetWebhookCommand;
15056
14766
  hasRequiredGetWebhookCommand = 1;
15057
- (function (exports) {
15058
- Object.defineProperty(exports, "__esModule", { value: true });
15059
- exports.GetWebhookCommand = exports.$Command = void 0;
14767
+ (function (exports$1) {
14768
+ Object.defineProperty(exports$1, "__esModule", { value: true });
14769
+ exports$1.GetWebhookCommand = exports$1.$Command = void 0;
15060
14770
  const Aws_restJson1_1 = requireAws_restJson1();
15061
14771
  const middleware_serde_1 = require$$1;
15062
- const smithy_client_1 = require$$84;
15063
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
14772
+ const smithy_client_1 = require$$86;
14773
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
15064
14774
  class GetWebhookCommand extends smithy_client_1.Command.classBuilder()
15065
14775
  .m(function (Command, cs, config, o) {
15066
14776
  return [
@@ -15074,7 +14784,7 @@ function requireGetWebhookCommand () {
15074
14784
  .de(Aws_restJson1_1.de_GetWebhookCommand)
15075
14785
  .build() {
15076
14786
  }
15077
- exports.GetWebhookCommand = GetWebhookCommand;
14787
+ exports$1.GetWebhookCommand = GetWebhookCommand;
15078
14788
  } (GetWebhookCommand));
15079
14789
  return GetWebhookCommand;
15080
14790
  }
@@ -15086,13 +14796,13 @@ var hasRequiredGetWorkspaceCommand;
15086
14796
  function requireGetWorkspaceCommand () {
15087
14797
  if (hasRequiredGetWorkspaceCommand) return GetWorkspaceCommand;
15088
14798
  hasRequiredGetWorkspaceCommand = 1;
15089
- (function (exports) {
15090
- Object.defineProperty(exports, "__esModule", { value: true });
15091
- exports.GetWorkspaceCommand = exports.$Command = void 0;
14799
+ (function (exports$1) {
14800
+ Object.defineProperty(exports$1, "__esModule", { value: true });
14801
+ exports$1.GetWorkspaceCommand = exports$1.$Command = void 0;
15092
14802
  const Aws_restJson1_1 = requireAws_restJson1();
15093
14803
  const middleware_serde_1 = require$$1;
15094
- const smithy_client_1 = require$$84;
15095
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
14804
+ const smithy_client_1 = require$$86;
14805
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
15096
14806
  class GetWorkspaceCommand extends smithy_client_1.Command.classBuilder()
15097
14807
  .m(function (Command, cs, config, o) {
15098
14808
  return [
@@ -15106,7 +14816,7 @@ function requireGetWorkspaceCommand () {
15106
14816
  .de(Aws_restJson1_1.de_GetWorkspaceCommand)
15107
14817
  .build() {
15108
14818
  }
15109
- exports.GetWorkspaceCommand = GetWorkspaceCommand;
14819
+ exports$1.GetWorkspaceCommand = GetWorkspaceCommand;
15110
14820
  } (GetWorkspaceCommand));
15111
14821
  return GetWorkspaceCommand;
15112
14822
  }
@@ -15118,13 +14828,13 @@ var hasRequiredListAuditLogsCommand;
15118
14828
  function requireListAuditLogsCommand () {
15119
14829
  if (hasRequiredListAuditLogsCommand) return ListAuditLogsCommand;
15120
14830
  hasRequiredListAuditLogsCommand = 1;
15121
- (function (exports) {
15122
- Object.defineProperty(exports, "__esModule", { value: true });
15123
- exports.ListAuditLogsCommand = exports.$Command = void 0;
14831
+ (function (exports$1) {
14832
+ Object.defineProperty(exports$1, "__esModule", { value: true });
14833
+ exports$1.ListAuditLogsCommand = exports$1.$Command = void 0;
15124
14834
  const Aws_restJson1_1 = requireAws_restJson1();
15125
14835
  const middleware_serde_1 = require$$1;
15126
- const smithy_client_1 = require$$84;
15127
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
14836
+ const smithy_client_1 = require$$86;
14837
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
15128
14838
  class ListAuditLogsCommand extends smithy_client_1.Command.classBuilder()
15129
14839
  .m(function (Command, cs, config, o) {
15130
14840
  return [
@@ -15138,7 +14848,7 @@ function requireListAuditLogsCommand () {
15138
14848
  .de(Aws_restJson1_1.de_ListAuditLogsCommand)
15139
14849
  .build() {
15140
14850
  }
15141
- exports.ListAuditLogsCommand = ListAuditLogsCommand;
14851
+ exports$1.ListAuditLogsCommand = ListAuditLogsCommand;
15142
14852
  } (ListAuditLogsCommand));
15143
14853
  return ListAuditLogsCommand;
15144
14854
  }
@@ -15150,13 +14860,13 @@ var hasRequiredListContextsCommand;
15150
14860
  function requireListContextsCommand () {
15151
14861
  if (hasRequiredListContextsCommand) return ListContextsCommand;
15152
14862
  hasRequiredListContextsCommand = 1;
15153
- (function (exports) {
15154
- Object.defineProperty(exports, "__esModule", { value: true });
15155
- exports.ListContextsCommand = exports.$Command = void 0;
14863
+ (function (exports$1) {
14864
+ Object.defineProperty(exports$1, "__esModule", { value: true });
14865
+ exports$1.ListContextsCommand = exports$1.$Command = void 0;
15156
14866
  const Aws_restJson1_1 = requireAws_restJson1();
15157
14867
  const middleware_serde_1 = require$$1;
15158
- const smithy_client_1 = require$$84;
15159
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
14868
+ const smithy_client_1 = require$$86;
14869
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
15160
14870
  class ListContextsCommand extends smithy_client_1.Command.classBuilder()
15161
14871
  .m(function (Command, cs, config, o) {
15162
14872
  return [
@@ -15170,7 +14880,7 @@ function requireListContextsCommand () {
15170
14880
  .de(Aws_restJson1_1.de_ListContextsCommand)
15171
14881
  .build() {
15172
14882
  }
15173
- exports.ListContextsCommand = ListContextsCommand;
14883
+ exports$1.ListContextsCommand = ListContextsCommand;
15174
14884
  } (ListContextsCommand));
15175
14885
  return ListContextsCommand;
15176
14886
  }
@@ -15182,13 +14892,13 @@ var hasRequiredListDefaultConfigsCommand;
15182
14892
  function requireListDefaultConfigsCommand () {
15183
14893
  if (hasRequiredListDefaultConfigsCommand) return ListDefaultConfigsCommand;
15184
14894
  hasRequiredListDefaultConfigsCommand = 1;
15185
- (function (exports) {
15186
- Object.defineProperty(exports, "__esModule", { value: true });
15187
- exports.ListDefaultConfigsCommand = exports.$Command = void 0;
14895
+ (function (exports$1) {
14896
+ Object.defineProperty(exports$1, "__esModule", { value: true });
14897
+ exports$1.ListDefaultConfigsCommand = exports$1.$Command = void 0;
15188
14898
  const Aws_restJson1_1 = requireAws_restJson1();
15189
14899
  const middleware_serde_1 = require$$1;
15190
- const smithy_client_1 = require$$84;
15191
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
14900
+ const smithy_client_1 = require$$86;
14901
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
15192
14902
  class ListDefaultConfigsCommand extends smithy_client_1.Command.classBuilder()
15193
14903
  .m(function (Command, cs, config, o) {
15194
14904
  return [
@@ -15202,7 +14912,7 @@ function requireListDefaultConfigsCommand () {
15202
14912
  .de(Aws_restJson1_1.de_ListDefaultConfigsCommand)
15203
14913
  .build() {
15204
14914
  }
15205
- exports.ListDefaultConfigsCommand = ListDefaultConfigsCommand;
14915
+ exports$1.ListDefaultConfigsCommand = ListDefaultConfigsCommand;
15206
14916
  } (ListDefaultConfigsCommand));
15207
14917
  return ListDefaultConfigsCommand;
15208
14918
  }
@@ -15214,13 +14924,13 @@ var hasRequiredListDimensionsCommand;
15214
14924
  function requireListDimensionsCommand () {
15215
14925
  if (hasRequiredListDimensionsCommand) return ListDimensionsCommand;
15216
14926
  hasRequiredListDimensionsCommand = 1;
15217
- (function (exports) {
15218
- Object.defineProperty(exports, "__esModule", { value: true });
15219
- exports.ListDimensionsCommand = exports.$Command = void 0;
14927
+ (function (exports$1) {
14928
+ Object.defineProperty(exports$1, "__esModule", { value: true });
14929
+ exports$1.ListDimensionsCommand = exports$1.$Command = void 0;
15220
14930
  const Aws_restJson1_1 = requireAws_restJson1();
15221
14931
  const middleware_serde_1 = require$$1;
15222
- const smithy_client_1 = require$$84;
15223
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
14932
+ const smithy_client_1 = require$$86;
14933
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
15224
14934
  class ListDimensionsCommand extends smithy_client_1.Command.classBuilder()
15225
14935
  .m(function (Command, cs, config, o) {
15226
14936
  return [
@@ -15234,7 +14944,7 @@ function requireListDimensionsCommand () {
15234
14944
  .de(Aws_restJson1_1.de_ListDimensionsCommand)
15235
14945
  .build() {
15236
14946
  }
15237
- exports.ListDimensionsCommand = ListDimensionsCommand;
14947
+ exports$1.ListDimensionsCommand = ListDimensionsCommand;
15238
14948
  } (ListDimensionsCommand));
15239
14949
  return ListDimensionsCommand;
15240
14950
  }
@@ -15246,13 +14956,13 @@ var hasRequiredListExperimentCommand;
15246
14956
  function requireListExperimentCommand () {
15247
14957
  if (hasRequiredListExperimentCommand) return ListExperimentCommand;
15248
14958
  hasRequiredListExperimentCommand = 1;
15249
- (function (exports) {
15250
- Object.defineProperty(exports, "__esModule", { value: true });
15251
- exports.ListExperimentCommand = exports.$Command = void 0;
14959
+ (function (exports$1) {
14960
+ Object.defineProperty(exports$1, "__esModule", { value: true });
14961
+ exports$1.ListExperimentCommand = exports$1.$Command = void 0;
15252
14962
  const Aws_restJson1_1 = requireAws_restJson1();
15253
14963
  const middleware_serde_1 = require$$1;
15254
- const smithy_client_1 = require$$84;
15255
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
14964
+ const smithy_client_1 = require$$86;
14965
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
15256
14966
  class ListExperimentCommand extends smithy_client_1.Command.classBuilder()
15257
14967
  .m(function (Command, cs, config, o) {
15258
14968
  return [
@@ -15266,7 +14976,7 @@ function requireListExperimentCommand () {
15266
14976
  .de(Aws_restJson1_1.de_ListExperimentCommand)
15267
14977
  .build() {
15268
14978
  }
15269
- exports.ListExperimentCommand = ListExperimentCommand;
14979
+ exports$1.ListExperimentCommand = ListExperimentCommand;
15270
14980
  } (ListExperimentCommand));
15271
14981
  return ListExperimentCommand;
15272
14982
  }
@@ -15278,13 +14988,13 @@ var hasRequiredListExperimentGroupsCommand;
15278
14988
  function requireListExperimentGroupsCommand () {
15279
14989
  if (hasRequiredListExperimentGroupsCommand) return ListExperimentGroupsCommand;
15280
14990
  hasRequiredListExperimentGroupsCommand = 1;
15281
- (function (exports) {
15282
- Object.defineProperty(exports, "__esModule", { value: true });
15283
- exports.ListExperimentGroupsCommand = exports.$Command = void 0;
14991
+ (function (exports$1) {
14992
+ Object.defineProperty(exports$1, "__esModule", { value: true });
14993
+ exports$1.ListExperimentGroupsCommand = exports$1.$Command = void 0;
15284
14994
  const Aws_restJson1_1 = requireAws_restJson1();
15285
14995
  const middleware_serde_1 = require$$1;
15286
- const smithy_client_1 = require$$84;
15287
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
14996
+ const smithy_client_1 = require$$86;
14997
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
15288
14998
  class ListExperimentGroupsCommand extends smithy_client_1.Command.classBuilder()
15289
14999
  .m(function (Command, cs, config, o) {
15290
15000
  return [
@@ -15298,7 +15008,7 @@ function requireListExperimentGroupsCommand () {
15298
15008
  .de(Aws_restJson1_1.de_ListExperimentGroupsCommand)
15299
15009
  .build() {
15300
15010
  }
15301
- exports.ListExperimentGroupsCommand = ListExperimentGroupsCommand;
15011
+ exports$1.ListExperimentGroupsCommand = ListExperimentGroupsCommand;
15302
15012
  } (ListExperimentGroupsCommand));
15303
15013
  return ListExperimentGroupsCommand;
15304
15014
  }
@@ -15310,13 +15020,13 @@ var hasRequiredListFunctionCommand;
15310
15020
  function requireListFunctionCommand () {
15311
15021
  if (hasRequiredListFunctionCommand) return ListFunctionCommand;
15312
15022
  hasRequiredListFunctionCommand = 1;
15313
- (function (exports) {
15314
- Object.defineProperty(exports, "__esModule", { value: true });
15315
- exports.ListFunctionCommand = exports.$Command = void 0;
15023
+ (function (exports$1) {
15024
+ Object.defineProperty(exports$1, "__esModule", { value: true });
15025
+ exports$1.ListFunctionCommand = exports$1.$Command = void 0;
15316
15026
  const Aws_restJson1_1 = requireAws_restJson1();
15317
15027
  const middleware_serde_1 = require$$1;
15318
- const smithy_client_1 = require$$84;
15319
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
15028
+ const smithy_client_1 = require$$86;
15029
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
15320
15030
  class ListFunctionCommand extends smithy_client_1.Command.classBuilder()
15321
15031
  .m(function (Command, cs, config, o) {
15322
15032
  return [
@@ -15330,7 +15040,7 @@ function requireListFunctionCommand () {
15330
15040
  .de(Aws_restJson1_1.de_ListFunctionCommand)
15331
15041
  .build() {
15332
15042
  }
15333
- exports.ListFunctionCommand = ListFunctionCommand;
15043
+ exports$1.ListFunctionCommand = ListFunctionCommand;
15334
15044
  } (ListFunctionCommand));
15335
15045
  return ListFunctionCommand;
15336
15046
  }
@@ -15342,13 +15052,13 @@ var hasRequiredListOrganisationCommand;
15342
15052
  function requireListOrganisationCommand () {
15343
15053
  if (hasRequiredListOrganisationCommand) return ListOrganisationCommand;
15344
15054
  hasRequiredListOrganisationCommand = 1;
15345
- (function (exports) {
15346
- Object.defineProperty(exports, "__esModule", { value: true });
15347
- exports.ListOrganisationCommand = exports.$Command = void 0;
15055
+ (function (exports$1) {
15056
+ Object.defineProperty(exports$1, "__esModule", { value: true });
15057
+ exports$1.ListOrganisationCommand = exports$1.$Command = void 0;
15348
15058
  const Aws_restJson1_1 = requireAws_restJson1();
15349
15059
  const middleware_serde_1 = require$$1;
15350
- const smithy_client_1 = require$$84;
15351
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
15060
+ const smithy_client_1 = require$$86;
15061
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
15352
15062
  class ListOrganisationCommand extends smithy_client_1.Command.classBuilder()
15353
15063
  .m(function (Command, cs, config, o) {
15354
15064
  return [
@@ -15362,7 +15072,7 @@ function requireListOrganisationCommand () {
15362
15072
  .de(Aws_restJson1_1.de_ListOrganisationCommand)
15363
15073
  .build() {
15364
15074
  }
15365
- exports.ListOrganisationCommand = ListOrganisationCommand;
15075
+ exports$1.ListOrganisationCommand = ListOrganisationCommand;
15366
15076
  } (ListOrganisationCommand));
15367
15077
  return ListOrganisationCommand;
15368
15078
  }
@@ -15374,13 +15084,13 @@ var hasRequiredListSecretsCommand;
15374
15084
  function requireListSecretsCommand () {
15375
15085
  if (hasRequiredListSecretsCommand) return ListSecretsCommand;
15376
15086
  hasRequiredListSecretsCommand = 1;
15377
- (function (exports) {
15378
- Object.defineProperty(exports, "__esModule", { value: true });
15379
- exports.ListSecretsCommand = exports.$Command = void 0;
15087
+ (function (exports$1) {
15088
+ Object.defineProperty(exports$1, "__esModule", { value: true });
15089
+ exports$1.ListSecretsCommand = exports$1.$Command = void 0;
15380
15090
  const Aws_restJson1_1 = requireAws_restJson1();
15381
15091
  const middleware_serde_1 = require$$1;
15382
- const smithy_client_1 = require$$84;
15383
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
15092
+ const smithy_client_1 = require$$86;
15093
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
15384
15094
  class ListSecretsCommand extends smithy_client_1.Command.classBuilder()
15385
15095
  .m(function (Command, cs, config, o) {
15386
15096
  return [
@@ -15394,7 +15104,7 @@ function requireListSecretsCommand () {
15394
15104
  .de(Aws_restJson1_1.de_ListSecretsCommand)
15395
15105
  .build() {
15396
15106
  }
15397
- exports.ListSecretsCommand = ListSecretsCommand;
15107
+ exports$1.ListSecretsCommand = ListSecretsCommand;
15398
15108
  } (ListSecretsCommand));
15399
15109
  return ListSecretsCommand;
15400
15110
  }
@@ -15406,13 +15116,13 @@ var hasRequiredListVariablesCommand;
15406
15116
  function requireListVariablesCommand () {
15407
15117
  if (hasRequiredListVariablesCommand) return ListVariablesCommand;
15408
15118
  hasRequiredListVariablesCommand = 1;
15409
- (function (exports) {
15410
- Object.defineProperty(exports, "__esModule", { value: true });
15411
- exports.ListVariablesCommand = exports.$Command = void 0;
15119
+ (function (exports$1) {
15120
+ Object.defineProperty(exports$1, "__esModule", { value: true });
15121
+ exports$1.ListVariablesCommand = exports$1.$Command = void 0;
15412
15122
  const Aws_restJson1_1 = requireAws_restJson1();
15413
15123
  const middleware_serde_1 = require$$1;
15414
- const smithy_client_1 = require$$84;
15415
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
15124
+ const smithy_client_1 = require$$86;
15125
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
15416
15126
  class ListVariablesCommand extends smithy_client_1.Command.classBuilder()
15417
15127
  .m(function (Command, cs, config, o) {
15418
15128
  return [
@@ -15426,7 +15136,7 @@ function requireListVariablesCommand () {
15426
15136
  .de(Aws_restJson1_1.de_ListVariablesCommand)
15427
15137
  .build() {
15428
15138
  }
15429
- exports.ListVariablesCommand = ListVariablesCommand;
15139
+ exports$1.ListVariablesCommand = ListVariablesCommand;
15430
15140
  } (ListVariablesCommand));
15431
15141
  return ListVariablesCommand;
15432
15142
  }
@@ -15438,13 +15148,13 @@ var hasRequiredListVersionsCommand;
15438
15148
  function requireListVersionsCommand () {
15439
15149
  if (hasRequiredListVersionsCommand) return ListVersionsCommand;
15440
15150
  hasRequiredListVersionsCommand = 1;
15441
- (function (exports) {
15442
- Object.defineProperty(exports, "__esModule", { value: true });
15443
- exports.ListVersionsCommand = exports.$Command = void 0;
15151
+ (function (exports$1) {
15152
+ Object.defineProperty(exports$1, "__esModule", { value: true });
15153
+ exports$1.ListVersionsCommand = exports$1.$Command = void 0;
15444
15154
  const Aws_restJson1_1 = requireAws_restJson1();
15445
15155
  const middleware_serde_1 = require$$1;
15446
- const smithy_client_1 = require$$84;
15447
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
15156
+ const smithy_client_1 = require$$86;
15157
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
15448
15158
  class ListVersionsCommand extends smithy_client_1.Command.classBuilder()
15449
15159
  .m(function (Command, cs, config, o) {
15450
15160
  return [
@@ -15458,7 +15168,7 @@ function requireListVersionsCommand () {
15458
15168
  .de(Aws_restJson1_1.de_ListVersionsCommand)
15459
15169
  .build() {
15460
15170
  }
15461
- exports.ListVersionsCommand = ListVersionsCommand;
15171
+ exports$1.ListVersionsCommand = ListVersionsCommand;
15462
15172
  } (ListVersionsCommand));
15463
15173
  return ListVersionsCommand;
15464
15174
  }
@@ -15470,13 +15180,13 @@ var hasRequiredListWebhookCommand;
15470
15180
  function requireListWebhookCommand () {
15471
15181
  if (hasRequiredListWebhookCommand) return ListWebhookCommand;
15472
15182
  hasRequiredListWebhookCommand = 1;
15473
- (function (exports) {
15474
- Object.defineProperty(exports, "__esModule", { value: true });
15475
- exports.ListWebhookCommand = exports.$Command = void 0;
15183
+ (function (exports$1) {
15184
+ Object.defineProperty(exports$1, "__esModule", { value: true });
15185
+ exports$1.ListWebhookCommand = exports$1.$Command = void 0;
15476
15186
  const Aws_restJson1_1 = requireAws_restJson1();
15477
15187
  const middleware_serde_1 = require$$1;
15478
- const smithy_client_1 = require$$84;
15479
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
15188
+ const smithy_client_1 = require$$86;
15189
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
15480
15190
  class ListWebhookCommand extends smithy_client_1.Command.classBuilder()
15481
15191
  .m(function (Command, cs, config, o) {
15482
15192
  return [
@@ -15490,7 +15200,7 @@ function requireListWebhookCommand () {
15490
15200
  .de(Aws_restJson1_1.de_ListWebhookCommand)
15491
15201
  .build() {
15492
15202
  }
15493
- exports.ListWebhookCommand = ListWebhookCommand;
15203
+ exports$1.ListWebhookCommand = ListWebhookCommand;
15494
15204
  } (ListWebhookCommand));
15495
15205
  return ListWebhookCommand;
15496
15206
  }
@@ -15502,13 +15212,13 @@ var hasRequiredListWorkspaceCommand;
15502
15212
  function requireListWorkspaceCommand () {
15503
15213
  if (hasRequiredListWorkspaceCommand) return ListWorkspaceCommand;
15504
15214
  hasRequiredListWorkspaceCommand = 1;
15505
- (function (exports) {
15506
- Object.defineProperty(exports, "__esModule", { value: true });
15507
- exports.ListWorkspaceCommand = exports.$Command = void 0;
15215
+ (function (exports$1) {
15216
+ Object.defineProperty(exports$1, "__esModule", { value: true });
15217
+ exports$1.ListWorkspaceCommand = exports$1.$Command = void 0;
15508
15218
  const Aws_restJson1_1 = requireAws_restJson1();
15509
15219
  const middleware_serde_1 = require$$1;
15510
- const smithy_client_1 = require$$84;
15511
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
15220
+ const smithy_client_1 = require$$86;
15221
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
15512
15222
  class ListWorkspaceCommand extends smithy_client_1.Command.classBuilder()
15513
15223
  .m(function (Command, cs, config, o) {
15514
15224
  return [
@@ -15522,7 +15232,7 @@ function requireListWorkspaceCommand () {
15522
15232
  .de(Aws_restJson1_1.de_ListWorkspaceCommand)
15523
15233
  .build() {
15524
15234
  }
15525
- exports.ListWorkspaceCommand = ListWorkspaceCommand;
15235
+ exports$1.ListWorkspaceCommand = ListWorkspaceCommand;
15526
15236
  } (ListWorkspaceCommand));
15527
15237
  return ListWorkspaceCommand;
15528
15238
  }
@@ -15534,13 +15244,13 @@ var hasRequiredMigrateWorkspaceSchemaCommand;
15534
15244
  function requireMigrateWorkspaceSchemaCommand () {
15535
15245
  if (hasRequiredMigrateWorkspaceSchemaCommand) return MigrateWorkspaceSchemaCommand;
15536
15246
  hasRequiredMigrateWorkspaceSchemaCommand = 1;
15537
- (function (exports) {
15538
- Object.defineProperty(exports, "__esModule", { value: true });
15539
- exports.MigrateWorkspaceSchemaCommand = exports.$Command = void 0;
15247
+ (function (exports$1) {
15248
+ Object.defineProperty(exports$1, "__esModule", { value: true });
15249
+ exports$1.MigrateWorkspaceSchemaCommand = exports$1.$Command = void 0;
15540
15250
  const Aws_restJson1_1 = requireAws_restJson1();
15541
15251
  const middleware_serde_1 = require$$1;
15542
- const smithy_client_1 = require$$84;
15543
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
15252
+ const smithy_client_1 = require$$86;
15253
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
15544
15254
  class MigrateWorkspaceSchemaCommand extends smithy_client_1.Command.classBuilder()
15545
15255
  .m(function (Command, cs, config, o) {
15546
15256
  return [
@@ -15554,7 +15264,7 @@ function requireMigrateWorkspaceSchemaCommand () {
15554
15264
  .de(Aws_restJson1_1.de_MigrateWorkspaceSchemaCommand)
15555
15265
  .build() {
15556
15266
  }
15557
- exports.MigrateWorkspaceSchemaCommand = MigrateWorkspaceSchemaCommand;
15267
+ exports$1.MigrateWorkspaceSchemaCommand = MigrateWorkspaceSchemaCommand;
15558
15268
  } (MigrateWorkspaceSchemaCommand));
15559
15269
  return MigrateWorkspaceSchemaCommand;
15560
15270
  }
@@ -15566,13 +15276,13 @@ var hasRequiredMoveContextCommand;
15566
15276
  function requireMoveContextCommand () {
15567
15277
  if (hasRequiredMoveContextCommand) return MoveContextCommand;
15568
15278
  hasRequiredMoveContextCommand = 1;
15569
- (function (exports) {
15570
- Object.defineProperty(exports, "__esModule", { value: true });
15571
- exports.MoveContextCommand = exports.$Command = void 0;
15279
+ (function (exports$1) {
15280
+ Object.defineProperty(exports$1, "__esModule", { value: true });
15281
+ exports$1.MoveContextCommand = exports$1.$Command = void 0;
15572
15282
  const Aws_restJson1_1 = requireAws_restJson1();
15573
15283
  const middleware_serde_1 = require$$1;
15574
- const smithy_client_1 = require$$84;
15575
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
15284
+ const smithy_client_1 = require$$86;
15285
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
15576
15286
  class MoveContextCommand extends smithy_client_1.Command.classBuilder()
15577
15287
  .m(function (Command, cs, config, o) {
15578
15288
  return [
@@ -15586,7 +15296,7 @@ function requireMoveContextCommand () {
15586
15296
  .de(Aws_restJson1_1.de_MoveContextCommand)
15587
15297
  .build() {
15588
15298
  }
15589
- exports.MoveContextCommand = MoveContextCommand;
15299
+ exports$1.MoveContextCommand = MoveContextCommand;
15590
15300
  } (MoveContextCommand));
15591
15301
  return MoveContextCommand;
15592
15302
  }
@@ -15598,13 +15308,13 @@ var hasRequiredPauseExperimentCommand;
15598
15308
  function requirePauseExperimentCommand () {
15599
15309
  if (hasRequiredPauseExperimentCommand) return PauseExperimentCommand;
15600
15310
  hasRequiredPauseExperimentCommand = 1;
15601
- (function (exports) {
15602
- Object.defineProperty(exports, "__esModule", { value: true });
15603
- exports.PauseExperimentCommand = exports.$Command = void 0;
15311
+ (function (exports$1) {
15312
+ Object.defineProperty(exports$1, "__esModule", { value: true });
15313
+ exports$1.PauseExperimentCommand = exports$1.$Command = void 0;
15604
15314
  const Aws_restJson1_1 = requireAws_restJson1();
15605
15315
  const middleware_serde_1 = require$$1;
15606
- const smithy_client_1 = require$$84;
15607
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
15316
+ const smithy_client_1 = require$$86;
15317
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
15608
15318
  class PauseExperimentCommand extends smithy_client_1.Command.classBuilder()
15609
15319
  .m(function (Command, cs, config, o) {
15610
15320
  return [
@@ -15618,7 +15328,7 @@ function requirePauseExperimentCommand () {
15618
15328
  .de(Aws_restJson1_1.de_PauseExperimentCommand)
15619
15329
  .build() {
15620
15330
  }
15621
- exports.PauseExperimentCommand = PauseExperimentCommand;
15331
+ exports$1.PauseExperimentCommand = PauseExperimentCommand;
15622
15332
  } (PauseExperimentCommand));
15623
15333
  return PauseExperimentCommand;
15624
15334
  }
@@ -15630,13 +15340,13 @@ var hasRequiredPublishCommand;
15630
15340
  function requirePublishCommand () {
15631
15341
  if (hasRequiredPublishCommand) return PublishCommand;
15632
15342
  hasRequiredPublishCommand = 1;
15633
- (function (exports) {
15634
- Object.defineProperty(exports, "__esModule", { value: true });
15635
- exports.PublishCommand = exports.$Command = void 0;
15343
+ (function (exports$1) {
15344
+ Object.defineProperty(exports$1, "__esModule", { value: true });
15345
+ exports$1.PublishCommand = exports$1.$Command = void 0;
15636
15346
  const Aws_restJson1_1 = requireAws_restJson1();
15637
15347
  const middleware_serde_1 = require$$1;
15638
- const smithy_client_1 = require$$84;
15639
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
15348
+ const smithy_client_1 = require$$86;
15349
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
15640
15350
  class PublishCommand extends smithy_client_1.Command.classBuilder()
15641
15351
  .m(function (Command, cs, config, o) {
15642
15352
  return [
@@ -15650,7 +15360,7 @@ function requirePublishCommand () {
15650
15360
  .de(Aws_restJson1_1.de_PublishCommand)
15651
15361
  .build() {
15652
15362
  }
15653
- exports.PublishCommand = PublishCommand;
15363
+ exports$1.PublishCommand = PublishCommand;
15654
15364
  } (PublishCommand));
15655
15365
  return PublishCommand;
15656
15366
  }
@@ -15662,13 +15372,13 @@ var hasRequiredRampExperimentCommand;
15662
15372
  function requireRampExperimentCommand () {
15663
15373
  if (hasRequiredRampExperimentCommand) return RampExperimentCommand;
15664
15374
  hasRequiredRampExperimentCommand = 1;
15665
- (function (exports) {
15666
- Object.defineProperty(exports, "__esModule", { value: true });
15667
- exports.RampExperimentCommand = exports.$Command = void 0;
15375
+ (function (exports$1) {
15376
+ Object.defineProperty(exports$1, "__esModule", { value: true });
15377
+ exports$1.RampExperimentCommand = exports$1.$Command = void 0;
15668
15378
  const Aws_restJson1_1 = requireAws_restJson1();
15669
15379
  const middleware_serde_1 = require$$1;
15670
- const smithy_client_1 = require$$84;
15671
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
15380
+ const smithy_client_1 = require$$86;
15381
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
15672
15382
  class RampExperimentCommand extends smithy_client_1.Command.classBuilder()
15673
15383
  .m(function (Command, cs, config, o) {
15674
15384
  return [
@@ -15682,7 +15392,7 @@ function requireRampExperimentCommand () {
15682
15392
  .de(Aws_restJson1_1.de_RampExperimentCommand)
15683
15393
  .build() {
15684
15394
  }
15685
- exports.RampExperimentCommand = RampExperimentCommand;
15395
+ exports$1.RampExperimentCommand = RampExperimentCommand;
15686
15396
  } (RampExperimentCommand));
15687
15397
  return RampExperimentCommand;
15688
15398
  }
@@ -15694,13 +15404,13 @@ var hasRequiredRemoveMembersFromGroupCommand;
15694
15404
  function requireRemoveMembersFromGroupCommand () {
15695
15405
  if (hasRequiredRemoveMembersFromGroupCommand) return RemoveMembersFromGroupCommand;
15696
15406
  hasRequiredRemoveMembersFromGroupCommand = 1;
15697
- (function (exports) {
15698
- Object.defineProperty(exports, "__esModule", { value: true });
15699
- exports.RemoveMembersFromGroupCommand = exports.$Command = void 0;
15407
+ (function (exports$1) {
15408
+ Object.defineProperty(exports$1, "__esModule", { value: true });
15409
+ exports$1.RemoveMembersFromGroupCommand = exports$1.$Command = void 0;
15700
15410
  const Aws_restJson1_1 = requireAws_restJson1();
15701
15411
  const middleware_serde_1 = require$$1;
15702
- const smithy_client_1 = require$$84;
15703
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
15412
+ const smithy_client_1 = require$$86;
15413
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
15704
15414
  class RemoveMembersFromGroupCommand extends smithy_client_1.Command.classBuilder()
15705
15415
  .m(function (Command, cs, config, o) {
15706
15416
  return [
@@ -15714,7 +15424,7 @@ function requireRemoveMembersFromGroupCommand () {
15714
15424
  .de(Aws_restJson1_1.de_RemoveMembersFromGroupCommand)
15715
15425
  .build() {
15716
15426
  }
15717
- exports.RemoveMembersFromGroupCommand = RemoveMembersFromGroupCommand;
15427
+ exports$1.RemoveMembersFromGroupCommand = RemoveMembersFromGroupCommand;
15718
15428
  } (RemoveMembersFromGroupCommand));
15719
15429
  return RemoveMembersFromGroupCommand;
15720
15430
  }
@@ -15726,13 +15436,13 @@ var hasRequiredResumeExperimentCommand;
15726
15436
  function requireResumeExperimentCommand () {
15727
15437
  if (hasRequiredResumeExperimentCommand) return ResumeExperimentCommand;
15728
15438
  hasRequiredResumeExperimentCommand = 1;
15729
- (function (exports) {
15730
- Object.defineProperty(exports, "__esModule", { value: true });
15731
- exports.ResumeExperimentCommand = exports.$Command = void 0;
15439
+ (function (exports$1) {
15440
+ Object.defineProperty(exports$1, "__esModule", { value: true });
15441
+ exports$1.ResumeExperimentCommand = exports$1.$Command = void 0;
15732
15442
  const Aws_restJson1_1 = requireAws_restJson1();
15733
15443
  const middleware_serde_1 = require$$1;
15734
- const smithy_client_1 = require$$84;
15735
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
15444
+ const smithy_client_1 = require$$86;
15445
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
15736
15446
  class ResumeExperimentCommand extends smithy_client_1.Command.classBuilder()
15737
15447
  .m(function (Command, cs, config, o) {
15738
15448
  return [
@@ -15746,7 +15456,7 @@ function requireResumeExperimentCommand () {
15746
15456
  .de(Aws_restJson1_1.de_ResumeExperimentCommand)
15747
15457
  .build() {
15748
15458
  }
15749
- exports.ResumeExperimentCommand = ResumeExperimentCommand;
15459
+ exports$1.ResumeExperimentCommand = ResumeExperimentCommand;
15750
15460
  } (ResumeExperimentCommand));
15751
15461
  return ResumeExperimentCommand;
15752
15462
  }
@@ -15758,13 +15468,13 @@ var hasRequiredRotateMasterEncryptionKeyCommand;
15758
15468
  function requireRotateMasterEncryptionKeyCommand () {
15759
15469
  if (hasRequiredRotateMasterEncryptionKeyCommand) return RotateMasterEncryptionKeyCommand;
15760
15470
  hasRequiredRotateMasterEncryptionKeyCommand = 1;
15761
- (function (exports) {
15762
- Object.defineProperty(exports, "__esModule", { value: true });
15763
- exports.RotateMasterEncryptionKeyCommand = exports.$Command = void 0;
15471
+ (function (exports$1) {
15472
+ Object.defineProperty(exports$1, "__esModule", { value: true });
15473
+ exports$1.RotateMasterEncryptionKeyCommand = exports$1.$Command = void 0;
15764
15474
  const Aws_restJson1_1 = requireAws_restJson1();
15765
15475
  const middleware_serde_1 = require$$1;
15766
- const smithy_client_1 = require$$84;
15767
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
15476
+ const smithy_client_1 = require$$86;
15477
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
15768
15478
  class RotateMasterEncryptionKeyCommand extends smithy_client_1.Command.classBuilder()
15769
15479
  .m(function (Command, cs, config, o) {
15770
15480
  return [
@@ -15778,7 +15488,7 @@ function requireRotateMasterEncryptionKeyCommand () {
15778
15488
  .de(Aws_restJson1_1.de_RotateMasterEncryptionKeyCommand)
15779
15489
  .build() {
15780
15490
  }
15781
- exports.RotateMasterEncryptionKeyCommand = RotateMasterEncryptionKeyCommand;
15491
+ exports$1.RotateMasterEncryptionKeyCommand = RotateMasterEncryptionKeyCommand;
15782
15492
  } (RotateMasterEncryptionKeyCommand));
15783
15493
  return RotateMasterEncryptionKeyCommand;
15784
15494
  }
@@ -15790,13 +15500,13 @@ var hasRequiredRotateWorkspaceEncryptionKeyCommand;
15790
15500
  function requireRotateWorkspaceEncryptionKeyCommand () {
15791
15501
  if (hasRequiredRotateWorkspaceEncryptionKeyCommand) return RotateWorkspaceEncryptionKeyCommand;
15792
15502
  hasRequiredRotateWorkspaceEncryptionKeyCommand = 1;
15793
- (function (exports) {
15794
- Object.defineProperty(exports, "__esModule", { value: true });
15795
- exports.RotateWorkspaceEncryptionKeyCommand = exports.$Command = void 0;
15503
+ (function (exports$1) {
15504
+ Object.defineProperty(exports$1, "__esModule", { value: true });
15505
+ exports$1.RotateWorkspaceEncryptionKeyCommand = exports$1.$Command = void 0;
15796
15506
  const Aws_restJson1_1 = requireAws_restJson1();
15797
15507
  const middleware_serde_1 = require$$1;
15798
- const smithy_client_1 = require$$84;
15799
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
15508
+ const smithy_client_1 = require$$86;
15509
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
15800
15510
  class RotateWorkspaceEncryptionKeyCommand extends smithy_client_1.Command.classBuilder()
15801
15511
  .m(function (Command, cs, config, o) {
15802
15512
  return [
@@ -15810,7 +15520,7 @@ function requireRotateWorkspaceEncryptionKeyCommand () {
15810
15520
  .de(Aws_restJson1_1.de_RotateWorkspaceEncryptionKeyCommand)
15811
15521
  .build() {
15812
15522
  }
15813
- exports.RotateWorkspaceEncryptionKeyCommand = RotateWorkspaceEncryptionKeyCommand;
15523
+ exports$1.RotateWorkspaceEncryptionKeyCommand = RotateWorkspaceEncryptionKeyCommand;
15814
15524
  } (RotateWorkspaceEncryptionKeyCommand));
15815
15525
  return RotateWorkspaceEncryptionKeyCommand;
15816
15526
  }
@@ -15822,13 +15532,13 @@ var hasRequiredTestCommand;
15822
15532
  function requireTestCommand () {
15823
15533
  if (hasRequiredTestCommand) return TestCommand;
15824
15534
  hasRequiredTestCommand = 1;
15825
- (function (exports) {
15826
- Object.defineProperty(exports, "__esModule", { value: true });
15827
- exports.TestCommand = exports.$Command = void 0;
15535
+ (function (exports$1) {
15536
+ Object.defineProperty(exports$1, "__esModule", { value: true });
15537
+ exports$1.TestCommand = exports$1.$Command = void 0;
15828
15538
  const Aws_restJson1_1 = requireAws_restJson1();
15829
15539
  const middleware_serde_1 = require$$1;
15830
- const smithy_client_1 = require$$84;
15831
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
15540
+ const smithy_client_1 = require$$86;
15541
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
15832
15542
  class TestCommand extends smithy_client_1.Command.classBuilder()
15833
15543
  .m(function (Command, cs, config, o) {
15834
15544
  return [
@@ -15842,7 +15552,7 @@ function requireTestCommand () {
15842
15552
  .de(Aws_restJson1_1.de_TestCommand)
15843
15553
  .build() {
15844
15554
  }
15845
- exports.TestCommand = TestCommand;
15555
+ exports$1.TestCommand = TestCommand;
15846
15556
  } (TestCommand));
15847
15557
  return TestCommand;
15848
15558
  }
@@ -15854,13 +15564,13 @@ var hasRequiredUpdateDefaultConfigCommand;
15854
15564
  function requireUpdateDefaultConfigCommand () {
15855
15565
  if (hasRequiredUpdateDefaultConfigCommand) return UpdateDefaultConfigCommand;
15856
15566
  hasRequiredUpdateDefaultConfigCommand = 1;
15857
- (function (exports) {
15858
- Object.defineProperty(exports, "__esModule", { value: true });
15859
- exports.UpdateDefaultConfigCommand = exports.$Command = void 0;
15567
+ (function (exports$1) {
15568
+ Object.defineProperty(exports$1, "__esModule", { value: true });
15569
+ exports$1.UpdateDefaultConfigCommand = exports$1.$Command = void 0;
15860
15570
  const Aws_restJson1_1 = requireAws_restJson1();
15861
15571
  const middleware_serde_1 = require$$1;
15862
- const smithy_client_1 = require$$84;
15863
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
15572
+ const smithy_client_1 = require$$86;
15573
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
15864
15574
  class UpdateDefaultConfigCommand extends smithy_client_1.Command.classBuilder()
15865
15575
  .m(function (Command, cs, config, o) {
15866
15576
  return [
@@ -15874,7 +15584,7 @@ function requireUpdateDefaultConfigCommand () {
15874
15584
  .de(Aws_restJson1_1.de_UpdateDefaultConfigCommand)
15875
15585
  .build() {
15876
15586
  }
15877
- exports.UpdateDefaultConfigCommand = UpdateDefaultConfigCommand;
15587
+ exports$1.UpdateDefaultConfigCommand = UpdateDefaultConfigCommand;
15878
15588
  } (UpdateDefaultConfigCommand));
15879
15589
  return UpdateDefaultConfigCommand;
15880
15590
  }
@@ -15886,13 +15596,13 @@ var hasRequiredUpdateDimensionCommand;
15886
15596
  function requireUpdateDimensionCommand () {
15887
15597
  if (hasRequiredUpdateDimensionCommand) return UpdateDimensionCommand;
15888
15598
  hasRequiredUpdateDimensionCommand = 1;
15889
- (function (exports) {
15890
- Object.defineProperty(exports, "__esModule", { value: true });
15891
- exports.UpdateDimensionCommand = exports.$Command = void 0;
15599
+ (function (exports$1) {
15600
+ Object.defineProperty(exports$1, "__esModule", { value: true });
15601
+ exports$1.UpdateDimensionCommand = exports$1.$Command = void 0;
15892
15602
  const Aws_restJson1_1 = requireAws_restJson1();
15893
15603
  const middleware_serde_1 = require$$1;
15894
- const smithy_client_1 = require$$84;
15895
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
15604
+ const smithy_client_1 = require$$86;
15605
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
15896
15606
  class UpdateDimensionCommand extends smithy_client_1.Command.classBuilder()
15897
15607
  .m(function (Command, cs, config, o) {
15898
15608
  return [
@@ -15906,7 +15616,7 @@ function requireUpdateDimensionCommand () {
15906
15616
  .de(Aws_restJson1_1.de_UpdateDimensionCommand)
15907
15617
  .build() {
15908
15618
  }
15909
- exports.UpdateDimensionCommand = UpdateDimensionCommand;
15619
+ exports$1.UpdateDimensionCommand = UpdateDimensionCommand;
15910
15620
  } (UpdateDimensionCommand));
15911
15621
  return UpdateDimensionCommand;
15912
15622
  }
@@ -15918,13 +15628,13 @@ var hasRequiredUpdateExperimentGroupCommand;
15918
15628
  function requireUpdateExperimentGroupCommand () {
15919
15629
  if (hasRequiredUpdateExperimentGroupCommand) return UpdateExperimentGroupCommand;
15920
15630
  hasRequiredUpdateExperimentGroupCommand = 1;
15921
- (function (exports) {
15922
- Object.defineProperty(exports, "__esModule", { value: true });
15923
- exports.UpdateExperimentGroupCommand = exports.$Command = void 0;
15631
+ (function (exports$1) {
15632
+ Object.defineProperty(exports$1, "__esModule", { value: true });
15633
+ exports$1.UpdateExperimentGroupCommand = exports$1.$Command = void 0;
15924
15634
  const Aws_restJson1_1 = requireAws_restJson1();
15925
15635
  const middleware_serde_1 = require$$1;
15926
- const smithy_client_1 = require$$84;
15927
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
15636
+ const smithy_client_1 = require$$86;
15637
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
15928
15638
  class UpdateExperimentGroupCommand extends smithy_client_1.Command.classBuilder()
15929
15639
  .m(function (Command, cs, config, o) {
15930
15640
  return [
@@ -15938,7 +15648,7 @@ function requireUpdateExperimentGroupCommand () {
15938
15648
  .de(Aws_restJson1_1.de_UpdateExperimentGroupCommand)
15939
15649
  .build() {
15940
15650
  }
15941
- exports.UpdateExperimentGroupCommand = UpdateExperimentGroupCommand;
15651
+ exports$1.UpdateExperimentGroupCommand = UpdateExperimentGroupCommand;
15942
15652
  } (UpdateExperimentGroupCommand));
15943
15653
  return UpdateExperimentGroupCommand;
15944
15654
  }
@@ -15950,13 +15660,13 @@ var hasRequiredUpdateFunctionCommand;
15950
15660
  function requireUpdateFunctionCommand () {
15951
15661
  if (hasRequiredUpdateFunctionCommand) return UpdateFunctionCommand;
15952
15662
  hasRequiredUpdateFunctionCommand = 1;
15953
- (function (exports) {
15954
- Object.defineProperty(exports, "__esModule", { value: true });
15955
- exports.UpdateFunctionCommand = exports.$Command = void 0;
15663
+ (function (exports$1) {
15664
+ Object.defineProperty(exports$1, "__esModule", { value: true });
15665
+ exports$1.UpdateFunctionCommand = exports$1.$Command = void 0;
15956
15666
  const Aws_restJson1_1 = requireAws_restJson1();
15957
15667
  const middleware_serde_1 = require$$1;
15958
- const smithy_client_1 = require$$84;
15959
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
15668
+ const smithy_client_1 = require$$86;
15669
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
15960
15670
  class UpdateFunctionCommand extends smithy_client_1.Command.classBuilder()
15961
15671
  .m(function (Command, cs, config, o) {
15962
15672
  return [
@@ -15970,7 +15680,7 @@ function requireUpdateFunctionCommand () {
15970
15680
  .de(Aws_restJson1_1.de_UpdateFunctionCommand)
15971
15681
  .build() {
15972
15682
  }
15973
- exports.UpdateFunctionCommand = UpdateFunctionCommand;
15683
+ exports$1.UpdateFunctionCommand = UpdateFunctionCommand;
15974
15684
  } (UpdateFunctionCommand));
15975
15685
  return UpdateFunctionCommand;
15976
15686
  }
@@ -15982,13 +15692,13 @@ var hasRequiredUpdateOrganisationCommand;
15982
15692
  function requireUpdateOrganisationCommand () {
15983
15693
  if (hasRequiredUpdateOrganisationCommand) return UpdateOrganisationCommand;
15984
15694
  hasRequiredUpdateOrganisationCommand = 1;
15985
- (function (exports) {
15986
- Object.defineProperty(exports, "__esModule", { value: true });
15987
- exports.UpdateOrganisationCommand = exports.$Command = void 0;
15695
+ (function (exports$1) {
15696
+ Object.defineProperty(exports$1, "__esModule", { value: true });
15697
+ exports$1.UpdateOrganisationCommand = exports$1.$Command = void 0;
15988
15698
  const Aws_restJson1_1 = requireAws_restJson1();
15989
15699
  const middleware_serde_1 = require$$1;
15990
- const smithy_client_1 = require$$84;
15991
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
15700
+ const smithy_client_1 = require$$86;
15701
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
15992
15702
  class UpdateOrganisationCommand extends smithy_client_1.Command.classBuilder()
15993
15703
  .m(function (Command, cs, config, o) {
15994
15704
  return [
@@ -16002,7 +15712,7 @@ function requireUpdateOrganisationCommand () {
16002
15712
  .de(Aws_restJson1_1.de_UpdateOrganisationCommand)
16003
15713
  .build() {
16004
15714
  }
16005
- exports.UpdateOrganisationCommand = UpdateOrganisationCommand;
15715
+ exports$1.UpdateOrganisationCommand = UpdateOrganisationCommand;
16006
15716
  } (UpdateOrganisationCommand));
16007
15717
  return UpdateOrganisationCommand;
16008
15718
  }
@@ -16014,13 +15724,13 @@ var hasRequiredUpdateOverrideCommand;
16014
15724
  function requireUpdateOverrideCommand () {
16015
15725
  if (hasRequiredUpdateOverrideCommand) return UpdateOverrideCommand;
16016
15726
  hasRequiredUpdateOverrideCommand = 1;
16017
- (function (exports) {
16018
- Object.defineProperty(exports, "__esModule", { value: true });
16019
- exports.UpdateOverrideCommand = exports.$Command = void 0;
15727
+ (function (exports$1) {
15728
+ Object.defineProperty(exports$1, "__esModule", { value: true });
15729
+ exports$1.UpdateOverrideCommand = exports$1.$Command = void 0;
16020
15730
  const Aws_restJson1_1 = requireAws_restJson1();
16021
15731
  const middleware_serde_1 = require$$1;
16022
- const smithy_client_1 = require$$84;
16023
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
15732
+ const smithy_client_1 = require$$86;
15733
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
16024
15734
  class UpdateOverrideCommand extends smithy_client_1.Command.classBuilder()
16025
15735
  .m(function (Command, cs, config, o) {
16026
15736
  return [
@@ -16034,7 +15744,7 @@ function requireUpdateOverrideCommand () {
16034
15744
  .de(Aws_restJson1_1.de_UpdateOverrideCommand)
16035
15745
  .build() {
16036
15746
  }
16037
- exports.UpdateOverrideCommand = UpdateOverrideCommand;
15747
+ exports$1.UpdateOverrideCommand = UpdateOverrideCommand;
16038
15748
  } (UpdateOverrideCommand));
16039
15749
  return UpdateOverrideCommand;
16040
15750
  }
@@ -16046,13 +15756,13 @@ var hasRequiredUpdateOverridesExperimentCommand;
16046
15756
  function requireUpdateOverridesExperimentCommand () {
16047
15757
  if (hasRequiredUpdateOverridesExperimentCommand) return UpdateOverridesExperimentCommand;
16048
15758
  hasRequiredUpdateOverridesExperimentCommand = 1;
16049
- (function (exports) {
16050
- Object.defineProperty(exports, "__esModule", { value: true });
16051
- exports.UpdateOverridesExperimentCommand = exports.$Command = void 0;
15759
+ (function (exports$1) {
15760
+ Object.defineProperty(exports$1, "__esModule", { value: true });
15761
+ exports$1.UpdateOverridesExperimentCommand = exports$1.$Command = void 0;
16052
15762
  const Aws_restJson1_1 = requireAws_restJson1();
16053
15763
  const middleware_serde_1 = require$$1;
16054
- const smithy_client_1 = require$$84;
16055
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
15764
+ const smithy_client_1 = require$$86;
15765
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
16056
15766
  class UpdateOverridesExperimentCommand extends smithy_client_1.Command.classBuilder()
16057
15767
  .m(function (Command, cs, config, o) {
16058
15768
  return [
@@ -16066,7 +15776,7 @@ function requireUpdateOverridesExperimentCommand () {
16066
15776
  .de(Aws_restJson1_1.de_UpdateOverridesExperimentCommand)
16067
15777
  .build() {
16068
15778
  }
16069
- exports.UpdateOverridesExperimentCommand = UpdateOverridesExperimentCommand;
15779
+ exports$1.UpdateOverridesExperimentCommand = UpdateOverridesExperimentCommand;
16070
15780
  } (UpdateOverridesExperimentCommand));
16071
15781
  return UpdateOverridesExperimentCommand;
16072
15782
  }
@@ -16078,13 +15788,13 @@ var hasRequiredUpdateSecretCommand;
16078
15788
  function requireUpdateSecretCommand () {
16079
15789
  if (hasRequiredUpdateSecretCommand) return UpdateSecretCommand;
16080
15790
  hasRequiredUpdateSecretCommand = 1;
16081
- (function (exports) {
16082
- Object.defineProperty(exports, "__esModule", { value: true });
16083
- exports.UpdateSecretCommand = exports.$Command = void 0;
15791
+ (function (exports$1) {
15792
+ Object.defineProperty(exports$1, "__esModule", { value: true });
15793
+ exports$1.UpdateSecretCommand = exports$1.$Command = void 0;
16084
15794
  const Aws_restJson1_1 = requireAws_restJson1();
16085
15795
  const middleware_serde_1 = require$$1;
16086
- const smithy_client_1 = require$$84;
16087
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
15796
+ const smithy_client_1 = require$$86;
15797
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
16088
15798
  class UpdateSecretCommand extends smithy_client_1.Command.classBuilder()
16089
15799
  .m(function (Command, cs, config, o) {
16090
15800
  return [
@@ -16098,7 +15808,7 @@ function requireUpdateSecretCommand () {
16098
15808
  .de(Aws_restJson1_1.de_UpdateSecretCommand)
16099
15809
  .build() {
16100
15810
  }
16101
- exports.UpdateSecretCommand = UpdateSecretCommand;
15811
+ exports$1.UpdateSecretCommand = UpdateSecretCommand;
16102
15812
  } (UpdateSecretCommand));
16103
15813
  return UpdateSecretCommand;
16104
15814
  }
@@ -16110,13 +15820,13 @@ var hasRequiredUpdateTypeTemplatesCommand;
16110
15820
  function requireUpdateTypeTemplatesCommand () {
16111
15821
  if (hasRequiredUpdateTypeTemplatesCommand) return UpdateTypeTemplatesCommand;
16112
15822
  hasRequiredUpdateTypeTemplatesCommand = 1;
16113
- (function (exports) {
16114
- Object.defineProperty(exports, "__esModule", { value: true });
16115
- exports.UpdateTypeTemplatesCommand = exports.$Command = void 0;
15823
+ (function (exports$1) {
15824
+ Object.defineProperty(exports$1, "__esModule", { value: true });
15825
+ exports$1.UpdateTypeTemplatesCommand = exports$1.$Command = void 0;
16116
15826
  const Aws_restJson1_1 = requireAws_restJson1();
16117
15827
  const middleware_serde_1 = require$$1;
16118
- const smithy_client_1 = require$$84;
16119
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
15828
+ const smithy_client_1 = require$$86;
15829
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
16120
15830
  class UpdateTypeTemplatesCommand extends smithy_client_1.Command.classBuilder()
16121
15831
  .m(function (Command, cs, config, o) {
16122
15832
  return [
@@ -16130,7 +15840,7 @@ function requireUpdateTypeTemplatesCommand () {
16130
15840
  .de(Aws_restJson1_1.de_UpdateTypeTemplatesCommand)
16131
15841
  .build() {
16132
15842
  }
16133
- exports.UpdateTypeTemplatesCommand = UpdateTypeTemplatesCommand;
15843
+ exports$1.UpdateTypeTemplatesCommand = UpdateTypeTemplatesCommand;
16134
15844
  } (UpdateTypeTemplatesCommand));
16135
15845
  return UpdateTypeTemplatesCommand;
16136
15846
  }
@@ -16142,13 +15852,13 @@ var hasRequiredUpdateVariableCommand;
16142
15852
  function requireUpdateVariableCommand () {
16143
15853
  if (hasRequiredUpdateVariableCommand) return UpdateVariableCommand;
16144
15854
  hasRequiredUpdateVariableCommand = 1;
16145
- (function (exports) {
16146
- Object.defineProperty(exports, "__esModule", { value: true });
16147
- exports.UpdateVariableCommand = exports.$Command = void 0;
15855
+ (function (exports$1) {
15856
+ Object.defineProperty(exports$1, "__esModule", { value: true });
15857
+ exports$1.UpdateVariableCommand = exports$1.$Command = void 0;
16148
15858
  const Aws_restJson1_1 = requireAws_restJson1();
16149
15859
  const middleware_serde_1 = require$$1;
16150
- const smithy_client_1 = require$$84;
16151
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
15860
+ const smithy_client_1 = require$$86;
15861
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
16152
15862
  class UpdateVariableCommand extends smithy_client_1.Command.classBuilder()
16153
15863
  .m(function (Command, cs, config, o) {
16154
15864
  return [
@@ -16162,7 +15872,7 @@ function requireUpdateVariableCommand () {
16162
15872
  .de(Aws_restJson1_1.de_UpdateVariableCommand)
16163
15873
  .build() {
16164
15874
  }
16165
- exports.UpdateVariableCommand = UpdateVariableCommand;
15875
+ exports$1.UpdateVariableCommand = UpdateVariableCommand;
16166
15876
  } (UpdateVariableCommand));
16167
15877
  return UpdateVariableCommand;
16168
15878
  }
@@ -16174,13 +15884,13 @@ var hasRequiredUpdateWebhookCommand;
16174
15884
  function requireUpdateWebhookCommand () {
16175
15885
  if (hasRequiredUpdateWebhookCommand) return UpdateWebhookCommand;
16176
15886
  hasRequiredUpdateWebhookCommand = 1;
16177
- (function (exports) {
16178
- Object.defineProperty(exports, "__esModule", { value: true });
16179
- exports.UpdateWebhookCommand = exports.$Command = void 0;
15887
+ (function (exports$1) {
15888
+ Object.defineProperty(exports$1, "__esModule", { value: true });
15889
+ exports$1.UpdateWebhookCommand = exports$1.$Command = void 0;
16180
15890
  const Aws_restJson1_1 = requireAws_restJson1();
16181
15891
  const middleware_serde_1 = require$$1;
16182
- const smithy_client_1 = require$$84;
16183
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
15892
+ const smithy_client_1 = require$$86;
15893
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
16184
15894
  class UpdateWebhookCommand extends smithy_client_1.Command.classBuilder()
16185
15895
  .m(function (Command, cs, config, o) {
16186
15896
  return [
@@ -16194,7 +15904,7 @@ function requireUpdateWebhookCommand () {
16194
15904
  .de(Aws_restJson1_1.de_UpdateWebhookCommand)
16195
15905
  .build() {
16196
15906
  }
16197
- exports.UpdateWebhookCommand = UpdateWebhookCommand;
15907
+ exports$1.UpdateWebhookCommand = UpdateWebhookCommand;
16198
15908
  } (UpdateWebhookCommand));
16199
15909
  return UpdateWebhookCommand;
16200
15910
  }
@@ -16206,13 +15916,13 @@ var hasRequiredUpdateWorkspaceCommand;
16206
15916
  function requireUpdateWorkspaceCommand () {
16207
15917
  if (hasRequiredUpdateWorkspaceCommand) return UpdateWorkspaceCommand;
16208
15918
  hasRequiredUpdateWorkspaceCommand = 1;
16209
- (function (exports) {
16210
- Object.defineProperty(exports, "__esModule", { value: true });
16211
- exports.UpdateWorkspaceCommand = exports.$Command = void 0;
15919
+ (function (exports$1) {
15920
+ Object.defineProperty(exports$1, "__esModule", { value: true });
15921
+ exports$1.UpdateWorkspaceCommand = exports$1.$Command = void 0;
16212
15922
  const Aws_restJson1_1 = requireAws_restJson1();
16213
15923
  const middleware_serde_1 = require$$1;
16214
- const smithy_client_1 = require$$84;
16215
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
15924
+ const smithy_client_1 = require$$86;
15925
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
16216
15926
  class UpdateWorkspaceCommand extends smithy_client_1.Command.classBuilder()
16217
15927
  .m(function (Command, cs, config, o) {
16218
15928
  return [
@@ -16226,7 +15936,7 @@ function requireUpdateWorkspaceCommand () {
16226
15936
  .de(Aws_restJson1_1.de_UpdateWorkspaceCommand)
16227
15937
  .build() {
16228
15938
  }
16229
- exports.UpdateWorkspaceCommand = UpdateWorkspaceCommand;
15939
+ exports$1.UpdateWorkspaceCommand = UpdateWorkspaceCommand;
16230
15940
  } (UpdateWorkspaceCommand));
16231
15941
  return UpdateWorkspaceCommand;
16232
15942
  }
@@ -16238,13 +15948,13 @@ var hasRequiredValidateContextCommand;
16238
15948
  function requireValidateContextCommand () {
16239
15949
  if (hasRequiredValidateContextCommand) return ValidateContextCommand;
16240
15950
  hasRequiredValidateContextCommand = 1;
16241
- (function (exports) {
16242
- Object.defineProperty(exports, "__esModule", { value: true });
16243
- exports.ValidateContextCommand = exports.$Command = void 0;
15951
+ (function (exports$1) {
15952
+ Object.defineProperty(exports$1, "__esModule", { value: true });
15953
+ exports$1.ValidateContextCommand = exports$1.$Command = void 0;
16244
15954
  const Aws_restJson1_1 = requireAws_restJson1();
16245
15955
  const middleware_serde_1 = require$$1;
16246
- const smithy_client_1 = require$$84;
16247
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
15956
+ const smithy_client_1 = require$$86;
15957
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
16248
15958
  class ValidateContextCommand extends smithy_client_1.Command.classBuilder()
16249
15959
  .m(function (Command, cs, config, o) {
16250
15960
  return [
@@ -16258,7 +15968,7 @@ function requireValidateContextCommand () {
16258
15968
  .de(Aws_restJson1_1.de_ValidateContextCommand)
16259
15969
  .build() {
16260
15970
  }
16261
- exports.ValidateContextCommand = ValidateContextCommand;
15971
+ exports$1.ValidateContextCommand = ValidateContextCommand;
16262
15972
  } (ValidateContextCommand));
16263
15973
  return ValidateContextCommand;
16264
15974
  }
@@ -16270,13 +15980,13 @@ var hasRequiredWeightRecomputeCommand;
16270
15980
  function requireWeightRecomputeCommand () {
16271
15981
  if (hasRequiredWeightRecomputeCommand) return WeightRecomputeCommand;
16272
15982
  hasRequiredWeightRecomputeCommand = 1;
16273
- (function (exports) {
16274
- Object.defineProperty(exports, "__esModule", { value: true });
16275
- exports.WeightRecomputeCommand = exports.$Command = void 0;
15983
+ (function (exports$1) {
15984
+ Object.defineProperty(exports$1, "__esModule", { value: true });
15985
+ exports$1.WeightRecomputeCommand = exports$1.$Command = void 0;
16276
15986
  const Aws_restJson1_1 = requireAws_restJson1();
16277
15987
  const middleware_serde_1 = require$$1;
16278
- const smithy_client_1 = require$$84;
16279
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
15988
+ const smithy_client_1 = require$$86;
15989
+ Object.defineProperty(exports$1, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
16280
15990
  class WeightRecomputeCommand extends smithy_client_1.Command.classBuilder()
16281
15991
  .m(function (Command, cs, config, o) {
16282
15992
  return [
@@ -16290,7 +16000,7 @@ function requireWeightRecomputeCommand () {
16290
16000
  .de(Aws_restJson1_1.de_WeightRecomputeCommand)
16291
16001
  .build() {
16292
16002
  }
16293
- exports.WeightRecomputeCommand = WeightRecomputeCommand;
16003
+ exports$1.WeightRecomputeCommand = WeightRecomputeCommand;
16294
16004
  } (WeightRecomputeCommand));
16295
16005
  return WeightRecomputeCommand;
16296
16006
  }
@@ -16331,6 +16041,8 @@ function requireSuperposition () {
16331
16041
  const DiscardExperimentCommand_1 = requireDiscardExperimentCommand();
16332
16042
  const GetConfigCommand_1 = requireGetConfigCommand();
16333
16043
  const GetConfigFastCommand_1 = requireGetConfigFastCommand();
16044
+ const GetConfigJsonCommand_1 = requireGetConfigJsonCommand();
16045
+ const GetConfigTomlCommand_1 = requireGetConfigTomlCommand();
16334
16046
  const GetContextCommand_1 = requireGetContextCommand();
16335
16047
  const GetContextFromConditionCommand_1 = requireGetContextFromConditionCommand();
16336
16048
  const GetDefaultConfigCommand_1 = requireGetDefaultConfigCommand();
@@ -16386,7 +16098,7 @@ function requireSuperposition () {
16386
16098
  const UpdateWorkspaceCommand_1 = requireUpdateWorkspaceCommand();
16387
16099
  const ValidateContextCommand_1 = requireValidateContextCommand();
16388
16100
  const WeightRecomputeCommand_1 = requireWeightRecomputeCommand();
16389
- const smithy_client_1 = require$$84;
16101
+ const smithy_client_1 = require$$86;
16390
16102
  const commands = {
16391
16103
  AddMembersToGroupCommand: AddMembersToGroupCommand_1.AddMembersToGroupCommand,
16392
16104
  ApplicableVariantsCommand: ApplicableVariantsCommand_1.ApplicableVariantsCommand,
@@ -16416,6 +16128,8 @@ function requireSuperposition () {
16416
16128
  DiscardExperimentCommand: DiscardExperimentCommand_1.DiscardExperimentCommand,
16417
16129
  GetConfigCommand: GetConfigCommand_1.GetConfigCommand,
16418
16130
  GetConfigFastCommand: GetConfigFastCommand_1.GetConfigFastCommand,
16131
+ GetConfigJsonCommand: GetConfigJsonCommand_1.GetConfigJsonCommand,
16132
+ GetConfigTomlCommand: GetConfigTomlCommand_1.GetConfigTomlCommand,
16419
16133
  GetContextCommand: GetContextCommand_1.GetContextCommand,
16420
16134
  GetContextFromConditionCommand: GetContextFromConditionCommand_1.GetContextFromConditionCommand,
16421
16135
  GetDefaultConfigCommand: GetDefaultConfigCommand_1.GetDefaultConfigCommand,
@@ -16486,92 +16200,94 @@ var hasRequiredCommands;
16486
16200
  function requireCommands () {
16487
16201
  if (hasRequiredCommands) return commands;
16488
16202
  hasRequiredCommands = 1;
16489
- (function (exports) {
16490
- Object.defineProperty(exports, "__esModule", { value: true });
16203
+ (function (exports$1) {
16204
+ Object.defineProperty(exports$1, "__esModule", { value: true });
16491
16205
  const tslib_1 = require$$0;
16492
- tslib_1.__exportStar(requireAddMembersToGroupCommand(), exports);
16493
- tslib_1.__exportStar(requireApplicableVariantsCommand(), exports);
16494
- tslib_1.__exportStar(requireBulkOperationCommand(), exports);
16495
- tslib_1.__exportStar(requireConcludeExperimentCommand(), exports);
16496
- tslib_1.__exportStar(requireCreateContextCommand(), exports);
16497
- tslib_1.__exportStar(requireCreateDefaultConfigCommand(), exports);
16498
- tslib_1.__exportStar(requireCreateDimensionCommand(), exports);
16499
- tslib_1.__exportStar(requireCreateExperimentCommand(), exports);
16500
- tslib_1.__exportStar(requireCreateExperimentGroupCommand(), exports);
16501
- tslib_1.__exportStar(requireCreateFunctionCommand(), exports);
16502
- tslib_1.__exportStar(requireCreateOrganisationCommand(), exports);
16503
- tslib_1.__exportStar(requireCreateSecretCommand(), exports);
16504
- tslib_1.__exportStar(requireCreateTypeTemplatesCommand(), exports);
16505
- tslib_1.__exportStar(requireCreateVariableCommand(), exports);
16506
- tslib_1.__exportStar(requireCreateWebhookCommand(), exports);
16507
- tslib_1.__exportStar(requireCreateWorkspaceCommand(), exports);
16508
- tslib_1.__exportStar(requireDeleteContextCommand(), exports);
16509
- tslib_1.__exportStar(requireDeleteDefaultConfigCommand(), exports);
16510
- tslib_1.__exportStar(requireDeleteDimensionCommand(), exports);
16511
- tslib_1.__exportStar(requireDeleteExperimentGroupCommand(), exports);
16512
- tslib_1.__exportStar(requireDeleteFunctionCommand(), exports);
16513
- tslib_1.__exportStar(requireDeleteSecretCommand(), exports);
16514
- tslib_1.__exportStar(requireDeleteTypeTemplatesCommand(), exports);
16515
- tslib_1.__exportStar(requireDeleteVariableCommand(), exports);
16516
- tslib_1.__exportStar(requireDeleteWebhookCommand(), exports);
16517
- tslib_1.__exportStar(requireDiscardExperimentCommand(), exports);
16518
- tslib_1.__exportStar(requireGetConfigCommand(), exports);
16519
- tslib_1.__exportStar(requireGetConfigFastCommand(), exports);
16520
- tslib_1.__exportStar(requireGetContextCommand(), exports);
16521
- tslib_1.__exportStar(requireGetContextFromConditionCommand(), exports);
16522
- tslib_1.__exportStar(requireGetDefaultConfigCommand(), exports);
16523
- tslib_1.__exportStar(requireGetDimensionCommand(), exports);
16524
- tslib_1.__exportStar(requireGetExperimentCommand(), exports);
16525
- tslib_1.__exportStar(requireGetExperimentGroupCommand(), exports);
16526
- tslib_1.__exportStar(requireGetFunctionCommand(), exports);
16527
- tslib_1.__exportStar(requireGetOrganisationCommand(), exports);
16528
- tslib_1.__exportStar(requireGetResolvedConfigCommand(), exports);
16529
- tslib_1.__exportStar(requireGetResolvedConfigWithIdentifierCommand(), exports);
16530
- tslib_1.__exportStar(requireGetSecretCommand(), exports);
16531
- tslib_1.__exportStar(requireGetTypeTemplateCommand(), exports);
16532
- tslib_1.__exportStar(requireGetTypeTemplatesListCommand(), exports);
16533
- tslib_1.__exportStar(requireGetVariableCommand(), exports);
16534
- tslib_1.__exportStar(requireGetVersionCommand(), exports);
16535
- tslib_1.__exportStar(requireGetWebhookCommand(), exports);
16536
- tslib_1.__exportStar(requireGetWebhookByEventCommand(), exports);
16537
- tslib_1.__exportStar(requireGetWorkspaceCommand(), exports);
16538
- tslib_1.__exportStar(requireListAuditLogsCommand(), exports);
16539
- tslib_1.__exportStar(requireListContextsCommand(), exports);
16540
- tslib_1.__exportStar(requireListDefaultConfigsCommand(), exports);
16541
- tslib_1.__exportStar(requireListDimensionsCommand(), exports);
16542
- tslib_1.__exportStar(requireListExperimentCommand(), exports);
16543
- tslib_1.__exportStar(requireListExperimentGroupsCommand(), exports);
16544
- tslib_1.__exportStar(requireListFunctionCommand(), exports);
16545
- tslib_1.__exportStar(requireListOrganisationCommand(), exports);
16546
- tslib_1.__exportStar(requireListSecretsCommand(), exports);
16547
- tslib_1.__exportStar(requireListVariablesCommand(), exports);
16548
- tslib_1.__exportStar(requireListVersionsCommand(), exports);
16549
- tslib_1.__exportStar(requireListWebhookCommand(), exports);
16550
- tslib_1.__exportStar(requireListWorkspaceCommand(), exports);
16551
- tslib_1.__exportStar(requireMigrateWorkspaceSchemaCommand(), exports);
16552
- tslib_1.__exportStar(requireMoveContextCommand(), exports);
16553
- tslib_1.__exportStar(requirePauseExperimentCommand(), exports);
16554
- tslib_1.__exportStar(requirePublishCommand(), exports);
16555
- tslib_1.__exportStar(requireRampExperimentCommand(), exports);
16556
- tslib_1.__exportStar(requireRemoveMembersFromGroupCommand(), exports);
16557
- tslib_1.__exportStar(requireResumeExperimentCommand(), exports);
16558
- tslib_1.__exportStar(requireRotateMasterEncryptionKeyCommand(), exports);
16559
- tslib_1.__exportStar(requireRotateWorkspaceEncryptionKeyCommand(), exports);
16560
- tslib_1.__exportStar(requireTestCommand(), exports);
16561
- tslib_1.__exportStar(requireUpdateDefaultConfigCommand(), exports);
16562
- tslib_1.__exportStar(requireUpdateDimensionCommand(), exports);
16563
- tslib_1.__exportStar(requireUpdateExperimentGroupCommand(), exports);
16564
- tslib_1.__exportStar(requireUpdateFunctionCommand(), exports);
16565
- tslib_1.__exportStar(requireUpdateOrganisationCommand(), exports);
16566
- tslib_1.__exportStar(requireUpdateOverrideCommand(), exports);
16567
- tslib_1.__exportStar(requireUpdateOverridesExperimentCommand(), exports);
16568
- tslib_1.__exportStar(requireUpdateSecretCommand(), exports);
16569
- tslib_1.__exportStar(requireUpdateTypeTemplatesCommand(), exports);
16570
- tslib_1.__exportStar(requireUpdateVariableCommand(), exports);
16571
- tslib_1.__exportStar(requireUpdateWebhookCommand(), exports);
16572
- tslib_1.__exportStar(requireUpdateWorkspaceCommand(), exports);
16573
- tslib_1.__exportStar(requireValidateContextCommand(), exports);
16574
- tslib_1.__exportStar(requireWeightRecomputeCommand(), exports);
16206
+ tslib_1.__exportStar(requireAddMembersToGroupCommand(), exports$1);
16207
+ tslib_1.__exportStar(requireApplicableVariantsCommand(), exports$1);
16208
+ tslib_1.__exportStar(requireBulkOperationCommand(), exports$1);
16209
+ tslib_1.__exportStar(requireConcludeExperimentCommand(), exports$1);
16210
+ tslib_1.__exportStar(requireCreateContextCommand(), exports$1);
16211
+ tslib_1.__exportStar(requireCreateDefaultConfigCommand(), exports$1);
16212
+ tslib_1.__exportStar(requireCreateDimensionCommand(), exports$1);
16213
+ tslib_1.__exportStar(requireCreateExperimentCommand(), exports$1);
16214
+ tslib_1.__exportStar(requireCreateExperimentGroupCommand(), exports$1);
16215
+ tslib_1.__exportStar(requireCreateFunctionCommand(), exports$1);
16216
+ tslib_1.__exportStar(requireCreateOrganisationCommand(), exports$1);
16217
+ tslib_1.__exportStar(requireCreateSecretCommand(), exports$1);
16218
+ tslib_1.__exportStar(requireCreateTypeTemplatesCommand(), exports$1);
16219
+ tslib_1.__exportStar(requireCreateVariableCommand(), exports$1);
16220
+ tslib_1.__exportStar(requireCreateWebhookCommand(), exports$1);
16221
+ tslib_1.__exportStar(requireCreateWorkspaceCommand(), exports$1);
16222
+ tslib_1.__exportStar(requireDeleteContextCommand(), exports$1);
16223
+ tslib_1.__exportStar(requireDeleteDefaultConfigCommand(), exports$1);
16224
+ tslib_1.__exportStar(requireDeleteDimensionCommand(), exports$1);
16225
+ tslib_1.__exportStar(requireDeleteExperimentGroupCommand(), exports$1);
16226
+ tslib_1.__exportStar(requireDeleteFunctionCommand(), exports$1);
16227
+ tslib_1.__exportStar(requireDeleteSecretCommand(), exports$1);
16228
+ tslib_1.__exportStar(requireDeleteTypeTemplatesCommand(), exports$1);
16229
+ tslib_1.__exportStar(requireDeleteVariableCommand(), exports$1);
16230
+ tslib_1.__exportStar(requireDeleteWebhookCommand(), exports$1);
16231
+ tslib_1.__exportStar(requireDiscardExperimentCommand(), exports$1);
16232
+ tslib_1.__exportStar(requireGetConfigCommand(), exports$1);
16233
+ tslib_1.__exportStar(requireGetConfigFastCommand(), exports$1);
16234
+ tslib_1.__exportStar(requireGetConfigJsonCommand(), exports$1);
16235
+ tslib_1.__exportStar(requireGetConfigTomlCommand(), exports$1);
16236
+ tslib_1.__exportStar(requireGetContextCommand(), exports$1);
16237
+ tslib_1.__exportStar(requireGetContextFromConditionCommand(), exports$1);
16238
+ tslib_1.__exportStar(requireGetDefaultConfigCommand(), exports$1);
16239
+ tslib_1.__exportStar(requireGetDimensionCommand(), exports$1);
16240
+ tslib_1.__exportStar(requireGetExperimentCommand(), exports$1);
16241
+ tslib_1.__exportStar(requireGetExperimentGroupCommand(), exports$1);
16242
+ tslib_1.__exportStar(requireGetFunctionCommand(), exports$1);
16243
+ tslib_1.__exportStar(requireGetOrganisationCommand(), exports$1);
16244
+ tslib_1.__exportStar(requireGetResolvedConfigCommand(), exports$1);
16245
+ tslib_1.__exportStar(requireGetResolvedConfigWithIdentifierCommand(), exports$1);
16246
+ tslib_1.__exportStar(requireGetSecretCommand(), exports$1);
16247
+ tslib_1.__exportStar(requireGetTypeTemplateCommand(), exports$1);
16248
+ tslib_1.__exportStar(requireGetTypeTemplatesListCommand(), exports$1);
16249
+ tslib_1.__exportStar(requireGetVariableCommand(), exports$1);
16250
+ tslib_1.__exportStar(requireGetVersionCommand(), exports$1);
16251
+ tslib_1.__exportStar(requireGetWebhookCommand(), exports$1);
16252
+ tslib_1.__exportStar(requireGetWebhookByEventCommand(), exports$1);
16253
+ tslib_1.__exportStar(requireGetWorkspaceCommand(), exports$1);
16254
+ tslib_1.__exportStar(requireListAuditLogsCommand(), exports$1);
16255
+ tslib_1.__exportStar(requireListContextsCommand(), exports$1);
16256
+ tslib_1.__exportStar(requireListDefaultConfigsCommand(), exports$1);
16257
+ tslib_1.__exportStar(requireListDimensionsCommand(), exports$1);
16258
+ tslib_1.__exportStar(requireListExperimentCommand(), exports$1);
16259
+ tslib_1.__exportStar(requireListExperimentGroupsCommand(), exports$1);
16260
+ tslib_1.__exportStar(requireListFunctionCommand(), exports$1);
16261
+ tslib_1.__exportStar(requireListOrganisationCommand(), exports$1);
16262
+ tslib_1.__exportStar(requireListSecretsCommand(), exports$1);
16263
+ tslib_1.__exportStar(requireListVariablesCommand(), exports$1);
16264
+ tslib_1.__exportStar(requireListVersionsCommand(), exports$1);
16265
+ tslib_1.__exportStar(requireListWebhookCommand(), exports$1);
16266
+ tslib_1.__exportStar(requireListWorkspaceCommand(), exports$1);
16267
+ tslib_1.__exportStar(requireMigrateWorkspaceSchemaCommand(), exports$1);
16268
+ tslib_1.__exportStar(requireMoveContextCommand(), exports$1);
16269
+ tslib_1.__exportStar(requirePauseExperimentCommand(), exports$1);
16270
+ tslib_1.__exportStar(requirePublishCommand(), exports$1);
16271
+ tslib_1.__exportStar(requireRampExperimentCommand(), exports$1);
16272
+ tslib_1.__exportStar(requireRemoveMembersFromGroupCommand(), exports$1);
16273
+ tslib_1.__exportStar(requireResumeExperimentCommand(), exports$1);
16274
+ tslib_1.__exportStar(requireRotateMasterEncryptionKeyCommand(), exports$1);
16275
+ tslib_1.__exportStar(requireRotateWorkspaceEncryptionKeyCommand(), exports$1);
16276
+ tslib_1.__exportStar(requireTestCommand(), exports$1);
16277
+ tslib_1.__exportStar(requireUpdateDefaultConfigCommand(), exports$1);
16278
+ tslib_1.__exportStar(requireUpdateDimensionCommand(), exports$1);
16279
+ tslib_1.__exportStar(requireUpdateExperimentGroupCommand(), exports$1);
16280
+ tslib_1.__exportStar(requireUpdateFunctionCommand(), exports$1);
16281
+ tslib_1.__exportStar(requireUpdateOrganisationCommand(), exports$1);
16282
+ tslib_1.__exportStar(requireUpdateOverrideCommand(), exports$1);
16283
+ tslib_1.__exportStar(requireUpdateOverridesExperimentCommand(), exports$1);
16284
+ tslib_1.__exportStar(requireUpdateSecretCommand(), exports$1);
16285
+ tslib_1.__exportStar(requireUpdateTypeTemplatesCommand(), exports$1);
16286
+ tslib_1.__exportStar(requireUpdateVariableCommand(), exports$1);
16287
+ tslib_1.__exportStar(requireUpdateWebhookCommand(), exports$1);
16288
+ tslib_1.__exportStar(requireUpdateWorkspaceCommand(), exports$1);
16289
+ tslib_1.__exportStar(requireValidateContextCommand(), exports$1);
16290
+ tslib_1.__exportStar(requireWeightRecomputeCommand(), exports$1);
16575
16291
  } (commands));
16576
16292
  return commands;
16577
16293
  }
@@ -16583,24 +16299,24 @@ var hasRequiredModels;
16583
16299
  function requireModels () {
16584
16300
  if (hasRequiredModels) return models;
16585
16301
  hasRequiredModels = 1;
16586
- (function (exports) {
16587
- Object.defineProperty(exports, "__esModule", { value: true });
16302
+ (function (exports$1) {
16303
+ Object.defineProperty(exports$1, "__esModule", { value: true });
16588
16304
  const tslib_1 = require$$0;
16589
- tslib_1.__exportStar(requireModels_0(), exports);
16305
+ tslib_1.__exportStar(requireModels_0(), exports$1);
16590
16306
  } (models));
16591
16307
  return models;
16592
16308
  }
16593
16309
 
16594
- (function (exports) {
16595
- Object.defineProperty(exports, "__esModule", { value: true });
16596
- exports.SuperpositionServiceException = void 0;
16310
+ (function (exports$1) {
16311
+ Object.defineProperty(exports$1, "__esModule", { value: true });
16312
+ exports$1.SuperpositionServiceException = void 0;
16597
16313
  const tslib_1 = require$$0;
16598
- tslib_1.__exportStar(requireSuperpositionClient(), exports);
16599
- tslib_1.__exportStar(requireSuperposition(), exports);
16600
- tslib_1.__exportStar(requireCommands(), exports);
16601
- tslib_1.__exportStar(requireModels(), exports);
16314
+ tslib_1.__exportStar(requireSuperpositionClient(), exports$1);
16315
+ tslib_1.__exportStar(requireSuperposition(), exports$1);
16316
+ tslib_1.__exportStar(requireCommands(), exports$1);
16317
+ tslib_1.__exportStar(requireModels(), exports$1);
16602
16318
  var SuperpositionServiceException_1 = requireSuperpositionServiceException();
16603
- Object.defineProperty(exports, "SuperpositionServiceException", { enumerable: true, get: function () { return SuperpositionServiceException_1.SuperpositionServiceException; } });
16319
+ Object.defineProperty(exports$1, "SuperpositionServiceException", { enumerable: true, get: function () { return SuperpositionServiceException_1.SuperpositionServiceException; } });
16604
16320
  } (superpositionSdk));
16605
16321
 
16606
16322
  class ExperimentationClient {
@@ -17071,6 +16787,7 @@ class NativeResolver {
17071
16787
  this.lib.core_get_applicable_variants = this.lib.func("char* core_get_applicable_variants(const char*, const char*, const char*, const char*, const char*)");
17072
16788
  this.lib.core_test_connection = this.lib.func("int core_test_connection()");
17073
16789
  this.lib.core_parse_toml_config = this.lib.func("char* core_parse_toml_config(const char*, char*)");
16790
+ this.lib.core_parse_json_config = this.lib.func("char* core_parse_json_config(const char*, char*)");
17074
16791
  this.isAvailable = true;
17075
16792
  }
17076
16793
  catch (error) {
@@ -17288,6 +17005,50 @@ class NativeResolver {
17288
17005
  throw new Error(`Failed to parse TOML result: ${parseError}`);
17289
17006
  }
17290
17007
  }
17008
+ /**
17009
+ * Parse JSON configuration into structured format matching the Config type
17010
+ *
17011
+ * @param jsonContent - JSON configuration string
17012
+ * @returns Parsed Config object with contexts, overrides, default_configs, dimensions
17013
+ * @throws Error if parsing fails
17014
+ */
17015
+ parseJsonConfig(jsonContent) {
17016
+ if (!this.isAvailable) {
17017
+ throw new Error("Native resolver is not available. Please ensure the native library is built and accessible.");
17018
+ }
17019
+ if (typeof jsonContent !== 'string') {
17020
+ throw new TypeError('jsonContent must be a string');
17021
+ }
17022
+ // Allocate error buffer (matching the Rust implementation)
17023
+ const errorBuffer = buffer.Buffer.alloc(ERROR_BUFFER_SIZE);
17024
+ // Call the C function
17025
+ const resultJson = this.lib.core_parse_json_config(jsonContent, errorBuffer);
17026
+ // Check for errors
17027
+ if (!resultJson) {
17028
+ // Read error message from buffer
17029
+ const nullTermIndex = errorBuffer.indexOf(0);
17030
+ const errorMsg = errorBuffer.toString('utf8', 0, nullTermIndex > 0 ? nullTermIndex : errorBuffer.length);
17031
+ throw new Error(`JSON parsing failed: ${errorMsg}`);
17032
+ }
17033
+ // Decode the result to a JS string if it's not already a string
17034
+ const configStr = typeof resultJson === "string"
17035
+ ? resultJson
17036
+ : this.lib.decode(resultJson, "string");
17037
+ // Free the native string if it wasn't already a string
17038
+ if (typeof resultJson !== "string") {
17039
+ this.lib.core_free_string(resultJson);
17040
+ }
17041
+ // Parse the JSON result
17042
+ try {
17043
+ const result = JSON.parse(configStr);
17044
+ return result;
17045
+ }
17046
+ catch (parseError) {
17047
+ console.error("Failed to parse JSON result:", parseError);
17048
+ console.error("Raw result string:", configStr);
17049
+ throw new Error(`Failed to parse JSON result: ${parseError}`);
17050
+ }
17051
+ }
17291
17052
  /**
17292
17053
  * Get the path to the native library.
17293
17054
  * Uses the same approach as Java and Python - looks for GitHub artifacts first,
@@ -17571,6 +17332,113 @@ function httpRequest(options) {
17571
17332
  });
17572
17333
  }
17573
17334
 
17335
+ const isImdsCredentials = (arg) => Boolean(arg) &&
17336
+ typeof arg === "object" &&
17337
+ typeof arg.AccessKeyId === "string" &&
17338
+ typeof arg.SecretAccessKey === "string" &&
17339
+ typeof arg.Token === "string" &&
17340
+ typeof arg.Expiration === "string";
17341
+ const fromImdsCredentials = (creds) => ({
17342
+ accessKeyId: creds.AccessKeyId,
17343
+ secretAccessKey: creds.SecretAccessKey,
17344
+ sessionToken: creds.Token,
17345
+ expiration: new Date(creds.Expiration),
17346
+ ...(creds.AccountId && { accountId: creds.AccountId }),
17347
+ });
17348
+
17349
+ const DEFAULT_TIMEOUT = 1000;
17350
+ const DEFAULT_MAX_RETRIES = 0;
17351
+ const providerConfigFromInit = ({ maxRetries = DEFAULT_MAX_RETRIES, timeout = DEFAULT_TIMEOUT, }) => ({ maxRetries, timeout });
17352
+
17353
+ const retry = (toRetry, maxRetries) => {
17354
+ let promise = toRetry();
17355
+ for (let i = 0; i < maxRetries; i++) {
17356
+ promise = promise.catch(toRetry);
17357
+ }
17358
+ return promise;
17359
+ };
17360
+
17361
+ const ENV_CMDS_FULL_URI = "AWS_CONTAINER_CREDENTIALS_FULL_URI";
17362
+ const ENV_CMDS_RELATIVE_URI = "AWS_CONTAINER_CREDENTIALS_RELATIVE_URI";
17363
+ const ENV_CMDS_AUTH_TOKEN = "AWS_CONTAINER_AUTHORIZATION_TOKEN";
17364
+ const fromContainerMetadata = (init = {}) => {
17365
+ const { timeout, maxRetries } = providerConfigFromInit(init);
17366
+ return () => retry(async () => {
17367
+ const requestOptions = await getCmdsUri({ logger: init.logger });
17368
+ const credsResponse = JSON.parse(await requestFromEcsImds(timeout, requestOptions));
17369
+ if (!isImdsCredentials(credsResponse)) {
17370
+ throw new CredentialsProviderError("Invalid response received from instance metadata service.", {
17371
+ logger: init.logger,
17372
+ });
17373
+ }
17374
+ return fromImdsCredentials(credsResponse);
17375
+ }, maxRetries);
17376
+ };
17377
+ const requestFromEcsImds = async (timeout, options) => {
17378
+ if (process.env[ENV_CMDS_AUTH_TOKEN]) {
17379
+ options.headers = {
17380
+ ...options.headers,
17381
+ Authorization: process.env[ENV_CMDS_AUTH_TOKEN],
17382
+ };
17383
+ }
17384
+ const buffer = await httpRequest({
17385
+ ...options,
17386
+ timeout,
17387
+ });
17388
+ return buffer.toString();
17389
+ };
17390
+ const CMDS_IP = "169.254.170.2";
17391
+ const GREENGRASS_HOSTS = {
17392
+ localhost: true,
17393
+ "127.0.0.1": true,
17394
+ };
17395
+ const GREENGRASS_PROTOCOLS = {
17396
+ "http:": true,
17397
+ "https:": true,
17398
+ };
17399
+ const getCmdsUri = async ({ logger }) => {
17400
+ if (process.env[ENV_CMDS_RELATIVE_URI]) {
17401
+ return {
17402
+ hostname: CMDS_IP,
17403
+ path: process.env[ENV_CMDS_RELATIVE_URI],
17404
+ };
17405
+ }
17406
+ if (process.env[ENV_CMDS_FULL_URI]) {
17407
+ const parsed = url.parse(process.env[ENV_CMDS_FULL_URI]);
17408
+ if (!parsed.hostname || !(parsed.hostname in GREENGRASS_HOSTS)) {
17409
+ throw new CredentialsProviderError(`${parsed.hostname} is not a valid container metadata service hostname`, {
17410
+ tryNextLink: false,
17411
+ logger,
17412
+ });
17413
+ }
17414
+ if (!parsed.protocol || !(parsed.protocol in GREENGRASS_PROTOCOLS)) {
17415
+ throw new CredentialsProviderError(`${parsed.protocol} is not a valid container metadata service protocol`, {
17416
+ tryNextLink: false,
17417
+ logger,
17418
+ });
17419
+ }
17420
+ return {
17421
+ ...parsed,
17422
+ port: parsed.port ? parseInt(parsed.port, 10) : undefined,
17423
+ };
17424
+ }
17425
+ throw new CredentialsProviderError("The container metadata credential provider cannot be used unless" +
17426
+ ` the ${ENV_CMDS_RELATIVE_URI} or ${ENV_CMDS_FULL_URI} environment` +
17427
+ " variable is set", {
17428
+ tryNextLink: false,
17429
+ logger,
17430
+ });
17431
+ };
17432
+
17433
+ class InstanceMetadataV1FallbackError extends CredentialsProviderError {
17434
+ constructor(message, tryNextLink = true) {
17435
+ super(message, tryNextLink);
17436
+ this.tryNextLink = tryNextLink;
17437
+ this.name = "InstanceMetadataV1FallbackError";
17438
+ Object.setPrototypeOf(this, InstanceMetadataV1FallbackError.prototype);
17439
+ }
17440
+ }
17441
+
17574
17442
  var Endpoint;
17575
17443
  (function (Endpoint) {
17576
17444
  Endpoint["IPv4"] = "http://169.254.169.254";
@@ -17613,11 +17481,188 @@ const getFromEndpointModeConfig = async () => {
17613
17481
  }
17614
17482
  };
17615
17483
 
17484
+ const STATIC_STABILITY_REFRESH_INTERVAL_SECONDS = 5 * 60;
17485
+ const STATIC_STABILITY_REFRESH_INTERVAL_JITTER_WINDOW_SECONDS = 5 * 60;
17486
+ const STATIC_STABILITY_DOC_URL = "https://docs.aws.amazon.com/sdkref/latest/guide/feature-static-credentials.html";
17487
+ const getExtendedInstanceMetadataCredentials = (credentials, logger) => {
17488
+ const refreshInterval = STATIC_STABILITY_REFRESH_INTERVAL_SECONDS +
17489
+ Math.floor(Math.random() * STATIC_STABILITY_REFRESH_INTERVAL_JITTER_WINDOW_SECONDS);
17490
+ const newExpiration = new Date(Date.now() + refreshInterval * 1000);
17491
+ logger.warn("Attempting credential expiration extension due to a credential service availability issue. A refresh of these " +
17492
+ `credentials will be attempted after ${new Date(newExpiration)}.\nFor more information, please visit: ` +
17493
+ STATIC_STABILITY_DOC_URL);
17494
+ const originalExpiration = credentials.originalExpiration ?? credentials.expiration;
17495
+ return {
17496
+ ...credentials,
17497
+ ...(originalExpiration ? { originalExpiration } : {}),
17498
+ expiration: newExpiration,
17499
+ };
17500
+ };
17501
+
17502
+ const staticStabilityProvider = (provider, options = {}) => {
17503
+ const logger = options?.logger || console;
17504
+ let pastCredentials;
17505
+ return async () => {
17506
+ let credentials;
17507
+ try {
17508
+ credentials = await provider();
17509
+ if (credentials.expiration && credentials.expiration.getTime() < Date.now()) {
17510
+ credentials = getExtendedInstanceMetadataCredentials(credentials, logger);
17511
+ }
17512
+ }
17513
+ catch (e) {
17514
+ if (pastCredentials) {
17515
+ logger.warn("Credential renew failed: ", e);
17516
+ credentials = getExtendedInstanceMetadataCredentials(pastCredentials, logger);
17517
+ }
17518
+ else {
17519
+ throw e;
17520
+ }
17521
+ }
17522
+ pastCredentials = credentials;
17523
+ return credentials;
17524
+ };
17525
+ };
17526
+
17527
+ const IMDS_PATH = "/latest/meta-data/iam/security-credentials/";
17528
+ const IMDS_TOKEN_PATH = "/latest/api/token";
17529
+ const AWS_EC2_METADATA_V1_DISABLED = "AWS_EC2_METADATA_V1_DISABLED";
17530
+ const PROFILE_AWS_EC2_METADATA_V1_DISABLED = "ec2_metadata_v1_disabled";
17531
+ const X_AWS_EC2_METADATA_TOKEN = "x-aws-ec2-metadata-token";
17532
+ const fromInstanceMetadata = (init = {}) => staticStabilityProvider(getInstanceMetadataProvider(init), { logger: init.logger });
17533
+ const getInstanceMetadataProvider = (init = {}) => {
17534
+ let disableFetchToken = false;
17535
+ const { logger, profile } = init;
17536
+ const { timeout, maxRetries } = providerConfigFromInit(init);
17537
+ const getCredentials = async (maxRetries, options) => {
17538
+ const isImdsV1Fallback = disableFetchToken || options.headers?.[X_AWS_EC2_METADATA_TOKEN] == null;
17539
+ if (isImdsV1Fallback) {
17540
+ let fallbackBlockedFromProfile = false;
17541
+ let fallbackBlockedFromProcessEnv = false;
17542
+ const configValue = await loadConfig({
17543
+ environmentVariableSelector: (env) => {
17544
+ const envValue = env[AWS_EC2_METADATA_V1_DISABLED];
17545
+ fallbackBlockedFromProcessEnv = !!envValue && envValue !== "false";
17546
+ if (envValue === undefined) {
17547
+ throw new CredentialsProviderError(`${AWS_EC2_METADATA_V1_DISABLED} not set in env, checking config file next.`, { logger: init.logger });
17548
+ }
17549
+ return fallbackBlockedFromProcessEnv;
17550
+ },
17551
+ configFileSelector: (profile) => {
17552
+ const profileValue = profile[PROFILE_AWS_EC2_METADATA_V1_DISABLED];
17553
+ fallbackBlockedFromProfile = !!profileValue && profileValue !== "false";
17554
+ return fallbackBlockedFromProfile;
17555
+ },
17556
+ default: false,
17557
+ }, {
17558
+ profile,
17559
+ })();
17560
+ if (init.ec2MetadataV1Disabled || configValue) {
17561
+ const causes = [];
17562
+ if (init.ec2MetadataV1Disabled)
17563
+ causes.push("credential provider initialization (runtime option ec2MetadataV1Disabled)");
17564
+ if (fallbackBlockedFromProfile)
17565
+ causes.push(`config file profile (${PROFILE_AWS_EC2_METADATA_V1_DISABLED})`);
17566
+ if (fallbackBlockedFromProcessEnv)
17567
+ causes.push(`process environment variable (${AWS_EC2_METADATA_V1_DISABLED})`);
17568
+ throw new InstanceMetadataV1FallbackError(`AWS EC2 Metadata v1 fallback has been blocked by AWS SDK configuration in the following: [${causes.join(", ")}].`);
17569
+ }
17570
+ }
17571
+ const imdsProfile = (await retry(async () => {
17572
+ let profile;
17573
+ try {
17574
+ profile = await getProfile(options);
17575
+ }
17576
+ catch (err) {
17577
+ if (err.statusCode === 401) {
17578
+ disableFetchToken = false;
17579
+ }
17580
+ throw err;
17581
+ }
17582
+ return profile;
17583
+ }, maxRetries)).trim();
17584
+ return retry(async () => {
17585
+ let creds;
17586
+ try {
17587
+ creds = await getCredentialsFromProfile(imdsProfile, options, init);
17588
+ }
17589
+ catch (err) {
17590
+ if (err.statusCode === 401) {
17591
+ disableFetchToken = false;
17592
+ }
17593
+ throw err;
17594
+ }
17595
+ return creds;
17596
+ }, maxRetries);
17597
+ };
17598
+ return async () => {
17599
+ const endpoint = await getInstanceMetadataEndpoint();
17600
+ if (disableFetchToken) {
17601
+ logger?.debug("AWS SDK Instance Metadata", "using v1 fallback (no token fetch)");
17602
+ return getCredentials(maxRetries, { ...endpoint, timeout });
17603
+ }
17604
+ else {
17605
+ let token;
17606
+ try {
17607
+ token = (await getMetadataToken({ ...endpoint, timeout })).toString();
17608
+ }
17609
+ catch (error) {
17610
+ if (error?.statusCode === 400) {
17611
+ throw Object.assign(error, {
17612
+ message: "EC2 Metadata token request returned error",
17613
+ });
17614
+ }
17615
+ else if (error.message === "TimeoutError" || [403, 404, 405].includes(error.statusCode)) {
17616
+ disableFetchToken = true;
17617
+ }
17618
+ logger?.debug("AWS SDK Instance Metadata", "using v1 fallback (initial)");
17619
+ return getCredentials(maxRetries, { ...endpoint, timeout });
17620
+ }
17621
+ return getCredentials(maxRetries, {
17622
+ ...endpoint,
17623
+ headers: {
17624
+ [X_AWS_EC2_METADATA_TOKEN]: token,
17625
+ },
17626
+ timeout,
17627
+ });
17628
+ }
17629
+ };
17630
+ };
17631
+ const getMetadataToken = async (options) => httpRequest({
17632
+ ...options,
17633
+ path: IMDS_TOKEN_PATH,
17634
+ method: "PUT",
17635
+ headers: {
17636
+ "x-aws-ec2-metadata-token-ttl-seconds": "21600",
17637
+ },
17638
+ });
17639
+ const getProfile = async (options) => (await httpRequest({ ...options, path: IMDS_PATH })).toString();
17640
+ const getCredentialsFromProfile = async (profile, options, init) => {
17641
+ const credentialsResponse = JSON.parse((await httpRequest({
17642
+ ...options,
17643
+ path: IMDS_PATH + profile,
17644
+ })).toString());
17645
+ if (!isImdsCredentials(credentialsResponse)) {
17646
+ throw new CredentialsProviderError("Invalid response received from instance metadata service.", {
17647
+ logger: init.logger,
17648
+ });
17649
+ }
17650
+ return fromImdsCredentials(credentialsResponse);
17651
+ };
17652
+
17616
17653
  var index = /*#__PURE__*/Object.freeze({
17617
17654
  __proto__: null,
17655
+ DEFAULT_MAX_RETRIES: DEFAULT_MAX_RETRIES,
17656
+ DEFAULT_TIMEOUT: DEFAULT_TIMEOUT,
17657
+ ENV_CMDS_AUTH_TOKEN: ENV_CMDS_AUTH_TOKEN,
17658
+ ENV_CMDS_FULL_URI: ENV_CMDS_FULL_URI,
17659
+ ENV_CMDS_RELATIVE_URI: ENV_CMDS_RELATIVE_URI,
17618
17660
  get Endpoint () { return Endpoint; },
17661
+ fromContainerMetadata: fromContainerMetadata,
17662
+ fromInstanceMetadata: fromInstanceMetadata,
17619
17663
  getInstanceMetadataEndpoint: getInstanceMetadataEndpoint,
17620
- httpRequest: httpRequest
17664
+ httpRequest: httpRequest,
17665
+ providerConfigFromInit: providerConfigFromInit
17621
17666
  });
17622
17667
 
17623
17668
  exports.ConfigurationClient = ConfigurationClient;