@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@objectstack/plugin-approvals",
3
- "version": "11.7.0",
3
+ "version": "11.10.0",
4
4
  "license": "Apache-2.0",
5
5
  "description": "Multi-step approval engine for ObjectStack — sys_approval_process + sys_approval_request + sys_approval_action + IApprovalService.",
6
6
  "main": "dist/index.js",
@@ -13,17 +13,17 @@
13
13
  }
14
14
  },
15
15
  "dependencies": {
16
- "@objectstack/core": "11.7.0",
17
- "@objectstack/formula": "11.7.0",
18
- "@objectstack/metadata-core": "11.7.0",
19
- "@objectstack/platform-objects": "11.7.0",
20
- "@objectstack/spec": "11.7.0"
16
+ "@objectstack/core": "11.10.0",
17
+ "@objectstack/formula": "11.10.0",
18
+ "@objectstack/metadata-core": "11.10.0",
19
+ "@objectstack/platform-objects": "11.10.0",
20
+ "@objectstack/spec": "11.10.0"
21
21
  },
22
22
  "devDependencies": {
23
23
  "@types/node": "^26.0.1",
24
24
  "typescript": "^6.0.3",
25
25
  "vitest": "^4.1.9",
26
- "@objectstack/service-automation": "11.7.0"
26
+ "@objectstack/service-automation": "11.10.0"
27
27
  },
28
28
  "keywords": [
29
29
  "objectstack",
@@ -24,7 +24,7 @@ export const SysApprovalAction = ObjectSchema.create({
24
24
  displayNameField: 'id',
25
25
  nameField: 'id', // [ADR-0079] canonical primary-title pointer (mirrors deprecated displayNameField)
26
26
  titleFormat: '{action} · {step_name}',
27
- compactLayout: ['request_id', 'step_name', 'action', 'actor_id', 'created_at'],
27
+ highlightFields: ['request_id', 'step_name', 'action', 'actor_id', 'created_at'],
28
28
 
29
29
  listViews: {
30
30
  recent: {
@@ -35,7 +35,7 @@ export const SysApprovalApprover = ObjectSchema.create({
35
35
  displayNameField: 'id',
36
36
  nameField: 'id', // [ADR-0079] canonical primary-title pointer (mirrors deprecated displayNameField)
37
37
  titleFormat: '{approver} · {request_id}',
38
- compactLayout: ['request_id', 'approver', 'created_at'],
38
+ highlightFields: ['request_id', 'approver', 'created_at'],
39
39
 
40
40
  fields: {
41
41
  id: Field.text({ label: 'Row ID', required: true, readonly: true, group: 'System' }),
@@ -33,7 +33,7 @@ export const SysApprovalRequest = ObjectSchema.create({
33
33
  displayNameField: 'id',
34
34
  nameField: 'id', // [ADR-0079] canonical primary-title pointer (mirrors deprecated displayNameField)
35
35
  titleFormat: '{process_name} · {record_id}',
36
- compactLayout: ['process_name', 'object_name', 'record_id', 'status', 'current_step', 'submitter_id', 'updated_at'],
36
+ highlightFields: ['process_name', 'object_name', 'record_id', 'status', 'current_step', 'submitter_id', 'updated_at'],
37
37
 
38
38
  // Curated built-in list views — render as segmented tabs in the console.
39
39
  // Filters use {current_user_id} substitution wired by the console.