procbay-schema 1.0.78 → 1.0.83
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/json/content-data/dynamic-form.json +18 -15
- package/prisma/json/core-data/permissions/contract-clause.json +34 -0
- package/prisma/json/core-data/permissions/contract-template.json +34 -0
- package/prisma/json/core-data/permissions/contract.json +34 -0
- package/prisma/json/core-data/permissions/strategy.json +58 -0
- package/prisma/json/core-data/user-event-configuration.json +4 -0
- package/prisma/migrations/20251210115800_added_slug_in_strategy_table/migration.sql +11 -0
- package/prisma/migrations/20251211055141_added_description_in_user_event_config_and_dynamic_form_tables/migration.sql +5 -0
- package/prisma/schema.prisma +3 -0
- package/prisma/seeders/dynamic-form.seed.js +2 -0
- package/prisma/seeders/user-event-configuration.seed.js +2 -1
- package/src/prisma/edge.js +6 -3
- package/src/prisma/index-browser.js +3 -0
- package/src/prisma/index.d.ts +108 -4
- package/src/prisma/index.js +6 -3
- package/src/prisma/package.json +1 -1
- package/src/prisma/schema.prisma +20 -17
- package/src/prisma/wasm.js +3 -0
|
@@ -836,6 +836,7 @@ exports.Prisma.StrategiesScalarFieldEnum = {
|
|
|
836
836
|
id: 'id',
|
|
837
837
|
uuid: 'uuid',
|
|
838
838
|
name: 'name',
|
|
839
|
+
slug: 'slug',
|
|
839
840
|
description: 'description',
|
|
840
841
|
is_active: 'is_active',
|
|
841
842
|
created_at: 'created_at',
|
|
@@ -1106,6 +1107,7 @@ exports.Prisma.DynamicFormScalarFieldEnum = {
|
|
|
1106
1107
|
module_id: 'module_id',
|
|
1107
1108
|
form_name: 'form_name',
|
|
1108
1109
|
form_slug: 'form_slug',
|
|
1110
|
+
description: 'description',
|
|
1109
1111
|
fields: 'fields',
|
|
1110
1112
|
form_order: 'form_order',
|
|
1111
1113
|
is_active: 'is_active',
|
|
@@ -1421,6 +1423,7 @@ exports.Prisma.UserEventConfigurationScalarFieldEnum = {
|
|
|
1421
1423
|
uuid: 'uuid',
|
|
1422
1424
|
name: 'name',
|
|
1423
1425
|
slug: 'slug',
|
|
1426
|
+
description: 'description',
|
|
1424
1427
|
is_active: 'is_active',
|
|
1425
1428
|
is_editable: 'is_editable',
|
|
1426
1429
|
created_at: 'created_at',
|