@redneckz/wildless-cms-uni-blocks 0.14.692 → 0.14.693

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.
@@ -91,7 +91,9 @@ export declare type Participant = {
91
91
  key: string;
92
92
  value: string;
93
93
  };
94
- currencyCode?: string;
94
+ currencyCode?: {
95
+ key: string;
96
+ };
95
97
  paymentSystemTypeCd?: string;
96
98
  classCard?: Option;
97
99
  codeWord?: string;
@@ -6546,7 +6546,7 @@
6546
6546
  const getCardData = (formData) => {
6547
6547
  const { currency, paymentSystem, cardCategory, codeWord } = formData;
6548
6548
  return {
6549
- currencyCode: currency,
6549
+ currencyCode: currency ? { key: currency } : undefined,
6550
6550
  paymentSystemTypeCd: paymentSystem,
6551
6551
  classCard: cardCategory,
6552
6552
  codeWord: codeWord,
@@ -10380,7 +10380,7 @@
10380
10380
  slots: () => [HEADER_SLOT, FOOTER_SLOT, STICKY_FOOTER_SLOT],
10381
10381
  });
10382
10382
 
10383
- const packageVersion = "0.14.691";
10383
+ const packageVersion = "0.14.692";
10384
10384
 
10385
10385
  exports.Blocks = Blocks;
10386
10386
  exports.ContentPage = ContentPage;