@objectstack/plugin-approvals 10.3.0 → 11.1.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 +10 -10
- package/CHANGELOG.md +101 -0
- package/LICENSE +202 -93
- package/dist/index.d.mts +47 -100
- package/dist/index.d.ts +47 -100
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +7 -7
- package/src/approval-service.ts +1 -1
package/dist/index.js
CHANGED
|
@@ -2326,7 +2326,7 @@ var _ApprovalService = class _ApprovalService {
|
|
|
2326
2326
|
const fields = schema?.fields ?? {};
|
|
2327
2327
|
const out = [];
|
|
2328
2328
|
for (const [key, f] of Object.entries(fields)) {
|
|
2329
|
-
if ((f?.type === "lookup" || f?.type === "master_detail") && f?.reference) {
|
|
2329
|
+
if ((f?.type === "lookup" || f?.type === "master_detail" || f?.type === "user") && f?.reference) {
|
|
2330
2330
|
out.push({ key, reference: String(f.reference) });
|
|
2331
2331
|
}
|
|
2332
2332
|
}
|