procbay-schema 1.0.49 → 1.0.50

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.
@@ -1760,7 +1760,9 @@ exports.FieldType = exports.$Enums.FieldType = {
1760
1760
  DATETIME: 'DATETIME',
1761
1761
  PERCENTAGE: 'PERCENTAGE',
1762
1762
  MEDIA: 'MEDIA',
1763
- CURRENCY: 'CURRENCY'
1763
+ CURRENCY: 'CURRENCY',
1764
+ CURRENCY_FORMULA: 'CURRENCY_FORMULA',
1765
+ VALUE_FORMULA: 'VALUE_FORMULA'
1764
1766
  };
1765
1767
 
1766
1768
  exports.FieldRole = exports.$Enums.FieldRole = {
@@ -567,7 +567,9 @@ export const FieldType: {
567
567
  DATETIME: 'DATETIME',
568
568
  PERCENTAGE: 'PERCENTAGE',
569
569
  MEDIA: 'MEDIA',
570
- CURRENCY: 'CURRENCY'
570
+ CURRENCY: 'CURRENCY',
571
+ CURRENCY_FORMULA: 'CURRENCY_FORMULA',
572
+ VALUE_FORMULA: 'VALUE_FORMULA'
571
573
  };
572
574
 
573
575
  export type FieldType = (typeof FieldType)[keyof typeof FieldType]