@objectstack/plugin-approvals 11.7.0 → 11.10.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 +45 -0
- package/dist/index.d.mts +3 -6
- package/dist/index.d.ts +3 -6
- 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.mjs
CHANGED
|
@@ -665,7 +665,7 @@ var SysApprovalRequest = ObjectSchema.create({
|
|
|
665
665
|
nameField: "id",
|
|
666
666
|
// [ADR-0079] canonical primary-title pointer (mirrors deprecated displayNameField)
|
|
667
667
|
titleFormat: "{process_name} \xB7 {record_id}",
|
|
668
|
-
|
|
668
|
+
highlightFields: ["process_name", "object_name", "record_id", "status", "current_step", "submitter_id", "updated_at"],
|
|
669
669
|
// Curated built-in list views — render as segmented tabs in the console.
|
|
670
670
|
// Filters use {current_user_id} substitution wired by the console.
|
|
671
671
|
listViews: {
|
|
@@ -857,7 +857,7 @@ var SysApprovalAction = ObjectSchema2.create({
|
|
|
857
857
|
nameField: "id",
|
|
858
858
|
// [ADR-0079] canonical primary-title pointer (mirrors deprecated displayNameField)
|
|
859
859
|
titleFormat: "{action} \xB7 {step_name}",
|
|
860
|
-
|
|
860
|
+
highlightFields: ["request_id", "step_name", "action", "actor_id", "created_at"],
|
|
861
861
|
listViews: {
|
|
862
862
|
recent: {
|
|
863
863
|
type: "grid",
|
|
@@ -960,7 +960,7 @@ var SysApprovalApprover = ObjectSchema3.create({
|
|
|
960
960
|
nameField: "id",
|
|
961
961
|
// [ADR-0079] canonical primary-title pointer (mirrors deprecated displayNameField)
|
|
962
962
|
titleFormat: "{approver} \xB7 {request_id}",
|
|
963
|
-
|
|
963
|
+
highlightFields: ["request_id", "approver", "created_at"],
|
|
964
964
|
fields: {
|
|
965
965
|
id: Field3.text({ label: "Row ID", required: true, readonly: true, group: "System" }),
|
|
966
966
|
organization_id: Field3.lookup("sys_organization", {
|