@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.mjs
CHANGED
|
@@ -2304,7 +2304,7 @@ var _ApprovalService = class _ApprovalService {
|
|
|
2304
2304
|
const fields = schema?.fields ?? {};
|
|
2305
2305
|
const out = [];
|
|
2306
2306
|
for (const [key, f] of Object.entries(fields)) {
|
|
2307
|
-
if ((f?.type === "lookup" || f?.type === "master_detail") && f?.reference) {
|
|
2307
|
+
if ((f?.type === "lookup" || f?.type === "master_detail" || f?.type === "user") && f?.reference) {
|
|
2308
2308
|
out.push({ key, reference: String(f.reference) });
|
|
2309
2309
|
}
|
|
2310
2310
|
}
|