feature/IO-3701-Harness-Replacement - Implement

This commit is contained in:
Dave
2026-05-20 14:41:24 -04:00
parent 84ec68f142
commit deb2fc28ce
100 changed files with 4813 additions and 773 deletions

View File

@@ -2968,6 +2968,30 @@ exports.GET_BODYSHOP_BY_ID = `
}
`;
exports.CHECK_BODYSHOP_ACCESS = `
query CHECK_BODYSHOP_ACCESS($id: uuid!) {
bodyshops_by_pk(id: $id) {
id
}
}
`;
exports.GET_BODYSHOP_FEATURE_FLAGS = `
query GET_BODYSHOP_FEATURE_FLAGS($bodyshopid: uuid!) {
feature_flags(where: { active: { _eq: true } }, order_by: { name: asc }) {
name
default_treatment
}
bodyshop_feature_flags(where: { bodyshopid: { _eq: $bodyshopid } }, order_by: { name: asc }) {
name
treatment
config
activeDate
deactiveDate
}
}
`;
exports.GET_BODYSHOP_WATCHERS_BY_ID = `
query GET_BODYSHOP_BY_ID($id: uuid!) {
bodyshops_by_pk(id: $id) {
@@ -3356,4 +3380,4 @@ exports.GET_DOCUMENSO_KEY_BY_JOBID = `query GET_DOCUMENSO_KEY_BY_JOBID($jobid: u
}
}
}
`
`