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.
- package/package.json +1 -1
- package/prisma/migrations/20251024110358_alter_template_field_add_field_type/migration.sql +13 -0
- package/prisma/schema.prisma +2 -0
- package/src/prisma/edge.js +6 -4
- package/src/prisma/index-browser.js +3 -1
- package/src/prisma/index.d.ts +3 -1
- package/src/prisma/index.js +6 -4
- package/src/prisma/package.json +1 -1
- package/src/prisma/schema.prisma +2 -0
- package/src/prisma/wasm.js +3 -1
|
@@ -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 = {
|
package/src/prisma/index.d.ts
CHANGED
|
@@ -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]
|