@objectstack/plugin-approvals 11.9.0 → 12.0.0
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/.turbo/turbo-build.log +9 -9
- package/CHANGELOG.md +41 -0
- package/dist/index.d.mts +335 -428
- package/dist/index.d.ts +335 -428
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +7 -7
- package/src/sys-approval-action.object.ts +1 -1
- package/src/sys-approval-approver.object.ts +1 -1
- package/src/sys-approval-request.object.ts +1 -1
package/dist/index.js
CHANGED
|
@@ -689,7 +689,7 @@ var SysApprovalRequest = import_data.ObjectSchema.create({
|
|
|
689
689
|
nameField: "id",
|
|
690
690
|
// [ADR-0079] canonical primary-title pointer (mirrors deprecated displayNameField)
|
|
691
691
|
titleFormat: "{process_name} \xB7 {record_id}",
|
|
692
|
-
|
|
692
|
+
highlightFields: ["process_name", "object_name", "record_id", "status", "current_step", "submitter_id", "updated_at"],
|
|
693
693
|
// Curated built-in list views — render as segmented tabs in the console.
|
|
694
694
|
// Filters use {current_user_id} substitution wired by the console.
|
|
695
695
|
listViews: {
|
|
@@ -881,7 +881,7 @@ var SysApprovalAction = import_data2.ObjectSchema.create({
|
|
|
881
881
|
nameField: "id",
|
|
882
882
|
// [ADR-0079] canonical primary-title pointer (mirrors deprecated displayNameField)
|
|
883
883
|
titleFormat: "{action} \xB7 {step_name}",
|
|
884
|
-
|
|
884
|
+
highlightFields: ["request_id", "step_name", "action", "actor_id", "created_at"],
|
|
885
885
|
listViews: {
|
|
886
886
|
recent: {
|
|
887
887
|
type: "grid",
|
|
@@ -984,7 +984,7 @@ var SysApprovalApprover = import_data3.ObjectSchema.create({
|
|
|
984
984
|
nameField: "id",
|
|
985
985
|
// [ADR-0079] canonical primary-title pointer (mirrors deprecated displayNameField)
|
|
986
986
|
titleFormat: "{approver} \xB7 {request_id}",
|
|
987
|
-
|
|
987
|
+
highlightFields: ["request_id", "approver", "created_at"],
|
|
988
988
|
fields: {
|
|
989
989
|
id: import_data3.Field.text({ label: "Row ID", required: true, readonly: true, group: "System" }),
|
|
990
990
|
organization_id: import_data3.Field.lookup("sys_organization", {
|