@go-to-k/cdkd 0.91.0 → 0.91.2

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.
Binary file
package/dist/index.js CHANGED
@@ -3866,6 +3866,28 @@ var TemplateParser = class {
3866
3866
  }
3867
3867
  return;
3868
3868
  }
3869
+ if ("Fn::Join" in obj) {
3870
+ const joinValue = obj["Fn::Join"];
3871
+ if (Array.isArray(joinValue) && joinValue.length >= 2) {
3872
+ this.extractRefsFromValue(joinValue[1], dependencies);
3873
+ }
3874
+ return;
3875
+ }
3876
+ if ("Fn::Select" in obj) {
3877
+ const selectValue = obj["Fn::Select"];
3878
+ if (Array.isArray(selectValue) && selectValue.length >= 2) {
3879
+ this.extractRefsFromValue(selectValue[0], dependencies);
3880
+ this.extractRefsFromValue(selectValue[1], dependencies);
3881
+ }
3882
+ return;
3883
+ }
3884
+ if ("Fn::Split" in obj) {
3885
+ const splitValue = obj["Fn::Split"];
3886
+ if (Array.isArray(splitValue) && splitValue.length >= 2) {
3887
+ this.extractRefsFromValue(splitValue[1], dependencies);
3888
+ }
3889
+ return;
3890
+ }
3869
3891
  Object.values(obj).forEach((v) => this.extractRefsFromValue(v, dependencies));
3870
3892
  }
3871
3893
  /**