Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue 408: Mass update variables, ensuring camel case styling. #409

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
568 changes: 284 additions & 284 deletions README.md

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions books-call-number/nodes/connectToLdp.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"inputVariables": [],
"outputVariable": {},
"designation": "ldp",
"url": "{{{ldp-url}}}",
"username": "{{{ldp-user}}}",
"password": "{{{ldp-password}}}",
"url": "{{{ldpUrl}}}",
"username": "{{{ldpUser}}}",
"password": "{{{ldpPassword}}}",
"asyncBefore": true
}
6 changes: 3 additions & 3 deletions circ-fines/nodes/connect.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"inputVariables": [],
"outputVariable": {},
"designation": "ldp",
"url": "{{{ldp-url}}}",
"username": "{{{ldp-user}}}",
"password": "{{{ldp-password}}}",
"url": "{{{ldpUrl}}}",
"username": "{{{ldpUser}}}",
"password": "{{{ldpPassword}}}",
"asyncBefore": true
}
6 changes: 3 additions & 3 deletions coral-extract/nodes/connectToLdp.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"inputVariables": [],
"outputVariable": {},
"designation": "ldp",
"url": "{{{ldp-url}}}",
"username": "{{{ldp-user}}}",
"password": "{{{ldp-password}}}",
"url": "{{{ldpUrl}}}",
"username": "{{{ldpUser}}}",
"password": "{{{ldpPassword}}}",
"asyncBefore": true
}
2 changes: 1 addition & 1 deletion coral-extract/nodes/okapiLogin.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Okapi Login",
"deserializeAs": "RequestTask",
"request": {
"url": "{{{okapi-internal}}}/authn/login",
"url": "{{{okapiInternal}}}/authn/login",
"method": "POST",
"contentType": "application/json",
"accept": "application/json",
Expand Down
2 changes: 1 addition & 1 deletion coral-extract/nodes/requestCoralExtract.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Retrieve the Loan Types.",
"deserializeAs": "RequestTask",
"request": {
"url": "{{{coral-url}}}/folio_utilities/coral_extract.php",
"url": "{{{coralUrl}}}/folio_utilities/coral_extract.php",
"method": "GET",
"accept": "text/plain"
},
Expand Down
2 changes: 1 addition & 1 deletion coral-extract/nodes/saveHoldings.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "",
"deserializeAs": "RequestTask",
"request": {
"url": "{{{okapi-internal}}}/holdings-storage/holdings",
"url": "{{{okapiInternal}}}/holdings-storage/holdings",
"method": "POST",
"accept": "application/json",
"bodyTemplate": "${holdings}"
Expand Down
2 changes: 1 addition & 1 deletion coral-extract/nodes/saveInstance.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "",
"deserializeAs": "RequestTask",
"request": {
"url": "{{{okapi-internal}}}/instance-storage/instances",
"url": "{{{okapiInternal}}}/instance-storage/instances",
"method": "POST",
"accept": "application/json",
"bodyTemplate": "${instance}"
Expand Down
6 changes: 3 additions & 3 deletions create-notes/nodes/connectToLDP.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"inputVariables": [],
"outputVariable": {},
"designation": "ldp",
"url": "{{{ldp-url}}}",
"username": "{{{ldp-user}}}",
"password": "{{{ldp-password}}}",
"url": "{{{ldpUrl}}}",
"username": "{{{ldpUser}}}",
"password": "{{{ldpPassword}}}",
"asyncBefore": true
}
2 changes: 1 addition & 1 deletion create-notes/nodes/okapiLogin.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Login to Okapi.",
"deserializeAs": "RequestTask",
"request": {
"url": "{{{okapi-internal}}}/authn/login",
"url": "{{{okapiInternal}}}/authn/login",
"method": "POST",
"contentType": "application/json",
"accept": "application/json",
Expand Down
2 changes: 1 addition & 1 deletion create-notes/nodes/requestItem.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Request the Item by its given Item ID.",
"deserializeAs": "RequestTask",
"request": {
"url": "{{{okapi-internal}}}/inventory/items/${item.id}",
"url": "{{{okapiInternal}}}/inventory/items/${item.id}",
"method": "GET",
"accept": "application/json"
},
Expand Down
2 changes: 1 addition & 1 deletion create-notes/nodes/updateItem.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Update the Item using the appropriate REST request.",
"deserializeAs": "RequestTask",
"request": {
"url": "{{{okapi-internal}}}/inventory/items/${itemId}",
"url": "{{{okapiInternal}}}/inventory/items/${itemId}",
"method": "PUT",
"contentType": "application/json",
"accept": "text/plain",
Expand Down
2 changes: 1 addition & 1 deletion create-tags/nodes/createTag.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "create tag",
"deserializeAs": "RequestTask",
"request": {
"url": "{{{okapi-internal}}}/tags",
"url": "{{{okapiInternal}}}/tags",
"method": "POST",
"contentType": "application/json",
"accept": "application/json",
Expand Down
6 changes: 3 additions & 3 deletions duplicate-instance-report/nodes/callNumberEmail.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@
}
],
"outputVariable": {},
"mailFrom": "{{{duplicate-instance-report-from}}}",
"mailTo": "{{{duplicate-instance-report-to}}}",
"mailFrom": "{{{duplicateInstanceReportFrom}}}",
"mailTo": "{{{duplicateInstanceReportTo}}}",
"mailText": "The instances with matching Call Number report has completed, see the results attached.\n${callNumberCount} instance matches found.",
"mailMarkup": "<p>The instances with matching Call Number report has completed, see the results attached.</p><br/>${callNumberCount} instance matches found.",
"mailSubject": "Matching Call Number Instances Report - LDP {{{ldp-url}}}",
"mailSubject": "Matching Call Number Instances Report - LDP {{{ldpUrl}}}",
"attachmentPath": "/mnt/workflows/${tenantId}/duplicate-instance-report/call-number-${timestamp}.csv",
"includeAttachment": "${callNumberCount}",
"asyncBefore": true
Expand Down
6 changes: 3 additions & 3 deletions duplicate-instance-report/nodes/connectToLdp.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"inputVariables": [],
"outputVariable": {},
"designation": "ldp",
"url": "{{{ldp-url}}}",
"username": "{{{ldp-user}}}",
"password": "{{{ldp-password}}}",
"url": "{{{ldpUrl}}}",
"username": "{{{ldpUser}}}",
"password": "{{{ldpPassword}}}",
"asyncBefore": true
}
6 changes: 3 additions & 3 deletions duplicate-instance-report/nodes/isbnEmail.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@
}
],
"outputVariable": {},
"mailFrom": "{{{duplicate-instance-report-from}}}",
"mailTo": "{{{duplicate-instance-report-to}}}",
"mailFrom": "{{{duplicateInstanceReportFrom}}}",
"mailTo": "{{{duplicateInstanceReportTo}}}",
"mailText": "The instances with matching ISBN report has completed, see the results attached.\n${isbnCount} instance matches found.",
"mailMarkup": "<p>The instances with matching ISBN report has completed, see the results attached.</p><br/>${isbnCount} instance matches found.",
"mailSubject": "Matching ISBN Instances Report - LDP {{{ldp-url}}}",
"mailSubject": "Matching ISBN Instances Report - LDP {{{ldpUrl}}}",
"attachmentPath": "/mnt/workflows/${tenantId}/duplicate-instance-report/isbn-${timestamp}.csv",
"includeAttachment": "${isbnCount}",
"asyncBefore": true
Expand Down
6 changes: 3 additions & 3 deletions duplicate-instance-report/nodes/issnEmail.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@
}
],
"outputVariable": {},
"mailFrom": "{{{duplicate-instance-report-from}}}",
"mailTo": "{{{duplicate-instance-report-to}}}",
"mailFrom": "{{{duplicateInstanceReportFrom}}}",
"mailTo": "{{{duplicateInstanceReportTo}}}",
"mailText": "The instances with matching ISSN report has completed, see the results attached.\n${issnCount} instance matches found.",
"mailMarkup": "<p>The instances with matching ISSN report has completed, see the results attached.</p><br/>${issnCount} instance matches found.",
"mailSubject": "Matching ISSN Instances Report - LDP {{{ldp-url}}}",
"mailSubject": "Matching ISSN Instances Report - LDP {{{ldpUrl}}}",
"attachmentPath": "/mnt/workflows/${tenantId}/duplicate-instance-report/issn-${timestamp}.csv",
"includeAttachment": "${issnCount}",
"asyncBefore": true
Expand Down
6 changes: 3 additions & 3 deletions duplicate-instance-report/nodes/lccnEmail.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@
}
],
"outputVariable": {},
"mailFrom": "{{{duplicate-instance-report-from}}}",
"mailTo": "{{{duplicate-instance-report-to}}}",
"mailFrom": "{{{duplicateInstanceReportFrom}}}",
"mailTo": "{{{duplicateInstanceReportTo}}}",
"mailText": "The instances with matching LCCN report has completed, see the results attached.\n${lccnCount} instance matches found.",
"mailMarkup": "<p>The instances with matching LCCN report has completed, see the results attached.</p><br/>${lccnCount} instance matches found.",
"mailSubject": "Matching LCCN Instances Report - LDP {{{ldp-url}}}",
"mailSubject": "Matching LCCN Instances Report - LDP {{{ldpUrl}}}",
"attachmentPath": "/mnt/workflows/${tenantId}/duplicate-instance-report/lccn-${timestamp}.csv",
"includeAttachment": "${lccnCount}",
"asyncBefore": true
Expand Down
6 changes: 3 additions & 3 deletions duplicate-instance-report/nodes/oclcEmail.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@
}
],
"outputVariable": {},
"mailFrom": "{{{duplicate-instance-report-from}}}",
"mailTo": "{{{duplicate-instance-report-to}}}",
"mailFrom": "{{{duplicateInstanceReportFrom}}}",
"mailTo": "{{{duplicateInstanceReportTo}}}",
"mailText": "The instances with matching OCLC report has completed, see the results attached.\n${oclcCount} instance matches found.",
"mailMarkup": "<p>The instances with matching OCLC report has completed, see the results attached.</p><br/>${oclcCount} instance matches found.",
"mailSubject": "Matching OCLC Instances Report - LDP {{{ldp-url}}}",
"mailSubject": "Matching OCLC Instances Report - LDP {{{ldpUrl}}}",
"attachmentPath": "/mnt/workflows/${tenantId}/duplicate-instance-report/oclc-${timestamp}.csv",
"includeAttachment": "${oclcCount}",
"asyncBefore": true
Expand Down
6 changes: 3 additions & 3 deletions duplicate-instance-report/nodes/reportEmail.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@
}
],
"outputVariable": {},
"mailFrom": "{{{duplicate-instance-report-from}}}",
"mailTo": "{{{duplicate-instance-report-to}}}",
"mailFrom": "{{{duplicateInstanceReportFrom}}}",
"mailTo": "{{{duplicateInstanceReportTo}}}",
"mailText": "The Instance Duplication Report has completed, see the results attached.\n${count} instance matches found.",
"mailMarkup": "<p>The Instance Duplication Report has completed, see the results attached.</p><br/>${count} instance matches found.",
"mailSubject": "Instance Duplication Report - LDP {{{ldp-url}}}",
"mailSubject": "Instance Duplication Report - LDP {{{ldpUrl}}}",
"attachmentPath": "/mnt/workflows/${tenantId}/duplicate-instance-report/instance-duplication-report-${timestamp}.zip",
"includeAttachment": "${count}",
"asyncBefore": true
Expand Down
6 changes: 3 additions & 3 deletions e-resource/nodes/connect.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"inputVariables": [],
"outputVariable": {},
"designation": "e-resource",
"url": "{{{divit-url}}}",
"username": "{{{divit-user}}}",
"password": "{{{divit-password}}}",
"url": "{{{divitUrl}}}",
"username": "{{{divitUser}}}",
"password": "{{{divitPassword}}}",
"asyncBefore": true
}
2 changes: 1 addition & 1 deletion e-resource/nodes/updateView.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
"inputVariables": [],
"outputVariable": { },
"designation": "e-resource",
"query": "CREATE OR ALTER VIEW {{{e-resource-view}}} AS SELECT DISTINCT uin, tamu_netid FROM itsql.cis.patron.employees_retirees emp WHERE upper(emp.adloc_system_member_name) IN ('TEXAS A&M AGRILIFE EXTENSION SERVICE', 'TEXAS A&M AGRILIFE RESEARCH', 'TEXAS A&M ENGINEERING EXPERIMENT STATION', 'TEXAS A&M ENGINEERING EXTENSION SERVICE', 'TEXAS A&M FOREST SERVICE', 'TEXAS A&M HEALTH', 'TEXAS A&M SYSTEM OFFICES', 'TEXAS A&M SYSTEM SHARED SERVICE CENTER', 'TEXAS A&M SYSTEM SPONSORED RESEARCH SERVICES', 'TEXAS A&M SYSTEM TECHNOLOGY COMMERCIALIZATION', 'TEXAS A&M TRANSPORTATION INSTITUTE', 'TEXAS A&M UNIVERSITY', 'TEXAS A&M UNIVERSITY AT GALVESTON', 'TEXAS A&M VETERINARY MEDICAL DIAGNOSTIC LABORATORY') AND employment_status_name IN ('Active', 'Working Retiree', 'Leave of Absence', 'Graduate Fellow', 'Future') UNION SELECT DISTINCT uin, tamu_netid FROM itsql.cis.patron.employees_retirees emp WHERE upper(emp.adloc_system_member_name) IN ('TEXAS A&M AGRILIFE EXTENSION SERVICE', 'TEXAS A&M AGRILIFE RESEARCH', 'TEXAS A&M ENGINEERING EXPERIMENT STATION', 'TEXAS A&M ENGINEERING EXTENSION SERVICE', 'TEXAS A&M FOREST SERVICE', 'TEXAS A&M HEALTH', 'TEXAS A&M SYSTEM OFFICES', 'TEXAS A&M SYSTEM SHARED SERVICE CENTER', 'TEXAS A&M SYSTEM SPONSORED RESEARCH SERVICES', 'TEXAS A&M SYSTEM TECHNOLOGY COMMERCIALIZATION', 'TEXAS A&M TRANSPORTATION INSTITUTE', 'TEXAS A&M UNIVERSITY', 'TEXAS A&M UNIVERSITY AT GALVESTON', 'TEXAS A&M VETERINARY MEDICAL DIAGNOSTIC LABORATORY') AND employment_status_name = 'Retired' AND employee_type_name = 'Faculty' UNION SELECT DISTINCT uin, tamu_netid FROM itsql.cis.patron.employees_retirees emp WHERE ((upper(emp.[TITLE]) LIKE '%ASSISTANT LIBRARIAN%') OR (upper(emp.[TITLE]) LIKE '%ASSOCIATE LIBRARIAN%') OR (upper(emp.[TITLE]) LIKE '%FULL LIBRARIAN%') OR (upper(emp.[TITLE]) LIKE '%SENIOR LIBRARIAN%') OR (upper(emp.[TITLE]) LIKE '%ASSISTANT UNIVERSITY LIBRARIAN%') OR (upper(emp.[TITLE]) LIKE '%ASSOCIATE UNIVERSITY LIBRARIAN%') OR (upper(emp.[TITLE]) LIKE '%EXECUTIVE ASSOCIATE UNIVERSITY LIBRARIAN%') OR (upper(emp.[TITLE]) LIKE '%LIBRARIAN DIRECTOR%') OR (upper(emp.[TITLE]) LIKE '%UNIVERSITY LIBRARIAN%')) AND (employment_status_name = 'Retired') AND (employee_type_name = 'Staff') AND upper(emp.adloc_system_member_name) IN ('TEXAS A&M UNIVERSITY', 'TEXAS A&M UNIVERSITY AT GALVESTON') UNION SELECT DISTINCT op.uin, pi.tamu_netid FROM itsql.cis.patron.other_people op LEFT OUTER JOIN itsql.cis.patron.person_identifiers pi ON op.uin = pi.uin WHERE op.data_provider IN ('HSCAFFILIATES', 'QATAR') AND op.affiliate_role IS NULL UNION SELECT DISTINCT op.uin, pi.tamu_netid FROM itsql.cis.patron.other_people op LEFT OUTER JOIN itsql.cis.patron.person_identifiers pi ON op.uin = pi.uin, itsql.cis.patron.employees_retirees emp WHERE op.system_member = emp.adloc_system_member AND affiliate_role IN ( 'affiliate:remotecollaborator', 'affiliate:continuingeducationstudent', 'affiliate:clinicaltrainee', 'affiliate:faculty:future', 'affiliate:graduateassistant:future', 'affiliate:hsc', 'affiliate:librarian', 'affiliate:medicalresident', 'affiliate:regent', 'affiliate:staff:future', 'affiliate:usda', 'affiliate:veteransprogram', 'affiliate:visitingscholar', 'employee:faculty:retired', 'faculty:adjunct' ) AND upper(emp.adloc_system_member_name) IN ( 'TEXAS A&M AGRILIFE EXTENSION SERVICE', 'TEXAS A&M AGRILIFE RESEARCH', 'TEXAS A&M ENGINEERING EXPERIMENT STATION', 'TEXAS A&M ENGINEERING EXTENSION SERVICE', 'TEXAS A&M FOREST SERVICE', 'TEXAS A&M HEALTH', 'TEXAS A&M SYSTEM OFFICES', 'TEXAS A&M SYSTEM SHARED SERVICE CENTER', 'TEXAS A&M SYSTEM SPONSORED RESEARCH SERVICES', 'TEXAS A&M SYSTEM TECHNOLOGY COMMERCIALIZATION', 'TEXAS A&M TRANSPORTATION INSTITUTE', 'TEXAS A&M UNIVERSITY', 'TEXAS A&M UNIVERSITY AT GALVESTON', 'TEXAS A&M VETERINARY MEDICAL DIAGNOSTIC LABORATORY' ) UNION SELECT DISTINCT stu.uin, tamu_netid FROM itsql.cis.patron.students stu WHERE enroll_status_name IN ('Enrolled', 'Not Enrolled') UNION SELECT DISTINCT oth.uin as uin, oth.tamu_netid as tamu_netid FROM itsql.cis.patron.library_other_people_exceptions oth UNION SELECT DISTINCT lib.uin AS uin, lib.tamu_netid AS tamu_netid FROM itsql.cis.patron.library_retirees lib;",
"query": "CREATE OR ALTER VIEW {{{e-resourceView}}} AS SELECT DISTINCT uin, tamu_netid FROM itsql.cis.patron.employees_retirees emp WHERE upper(emp.adloc_system_member_name) IN ('TEXAS A&M AGRILIFE EXTENSION SERVICE', 'TEXAS A&M AGRILIFE RESEARCH', 'TEXAS A&M ENGINEERING EXPERIMENT STATION', 'TEXAS A&M ENGINEERING EXTENSION SERVICE', 'TEXAS A&M FOREST SERVICE', 'TEXAS A&M HEALTH', 'TEXAS A&M SYSTEM OFFICES', 'TEXAS A&M SYSTEM SHARED SERVICE CENTER', 'TEXAS A&M SYSTEM SPONSORED RESEARCH SERVICES', 'TEXAS A&M SYSTEM TECHNOLOGY COMMERCIALIZATION', 'TEXAS A&M TRANSPORTATION INSTITUTE', 'TEXAS A&M UNIVERSITY', 'TEXAS A&M UNIVERSITY AT GALVESTON', 'TEXAS A&M VETERINARY MEDICAL DIAGNOSTIC LABORATORY') AND employment_status_name IN ('Active', 'Working Retiree', 'Leave of Absence', 'Graduate Fellow', 'Future') UNION SELECT DISTINCT uin, tamu_netid FROM itsql.cis.patron.employees_retirees emp WHERE upper(emp.adloc_system_member_name) IN ('TEXAS A&M AGRILIFE EXTENSION SERVICE', 'TEXAS A&M AGRILIFE RESEARCH', 'TEXAS A&M ENGINEERING EXPERIMENT STATION', 'TEXAS A&M ENGINEERING EXTENSION SERVICE', 'TEXAS A&M FOREST SERVICE', 'TEXAS A&M HEALTH', 'TEXAS A&M SYSTEM OFFICES', 'TEXAS A&M SYSTEM SHARED SERVICE CENTER', 'TEXAS A&M SYSTEM SPONSORED RESEARCH SERVICES', 'TEXAS A&M SYSTEM TECHNOLOGY COMMERCIALIZATION', 'TEXAS A&M TRANSPORTATION INSTITUTE', 'TEXAS A&M UNIVERSITY', 'TEXAS A&M UNIVERSITY AT GALVESTON', 'TEXAS A&M VETERINARY MEDICAL DIAGNOSTIC LABORATORY') AND employment_status_name = 'Retired' AND employee_type_name = 'Faculty' UNION SELECT DISTINCT uin, tamu_netid FROM itsql.cis.patron.employees_retirees emp WHERE ((upper(emp.[TITLE]) LIKE '%ASSISTANT LIBRARIAN%') OR (upper(emp.[TITLE]) LIKE '%ASSOCIATE LIBRARIAN%') OR (upper(emp.[TITLE]) LIKE '%FULL LIBRARIAN%') OR (upper(emp.[TITLE]) LIKE '%SENIOR LIBRARIAN%') OR (upper(emp.[TITLE]) LIKE '%ASSISTANT UNIVERSITY LIBRARIAN%') OR (upper(emp.[TITLE]) LIKE '%ASSOCIATE UNIVERSITY LIBRARIAN%') OR (upper(emp.[TITLE]) LIKE '%EXECUTIVE ASSOCIATE UNIVERSITY LIBRARIAN%') OR (upper(emp.[TITLE]) LIKE '%LIBRARIAN DIRECTOR%') OR (upper(emp.[TITLE]) LIKE '%UNIVERSITY LIBRARIAN%')) AND (employment_status_name = 'Retired') AND (employee_type_name = 'Staff') AND upper(emp.adloc_system_member_name) IN ('TEXAS A&M UNIVERSITY', 'TEXAS A&M UNIVERSITY AT GALVESTON') UNION SELECT DISTINCT op.uin, pi.tamu_netid FROM itsql.cis.patron.other_people op LEFT OUTER JOIN itsql.cis.patron.person_identifiers pi ON op.uin = pi.uin WHERE op.data_provider IN ('HSCAFFILIATES', 'QATAR') AND op.affiliate_role IS NULL UNION SELECT DISTINCT op.uin, pi.tamu_netid FROM itsql.cis.patron.other_people op LEFT OUTER JOIN itsql.cis.patron.person_identifiers pi ON op.uin = pi.uin, itsql.cis.patron.employees_retirees emp WHERE op.system_member = emp.adloc_system_member AND affiliate_role IN ( 'affiliate:remotecollaborator', 'affiliate:continuingeducationstudent', 'affiliate:clinicaltrainee', 'affiliate:faculty:future', 'affiliate:graduateassistant:future', 'affiliate:hsc', 'affiliate:librarian', 'affiliate:medicalresident', 'affiliate:regent', 'affiliate:staff:future', 'affiliate:usda', 'affiliate:veteransprogram', 'affiliate:visitingscholar', 'employee:faculty:retired', 'faculty:adjunct' ) AND upper(emp.adloc_system_member_name) IN ( 'TEXAS A&M AGRILIFE EXTENSION SERVICE', 'TEXAS A&M AGRILIFE RESEARCH', 'TEXAS A&M ENGINEERING EXPERIMENT STATION', 'TEXAS A&M ENGINEERING EXTENSION SERVICE', 'TEXAS A&M FOREST SERVICE', 'TEXAS A&M HEALTH', 'TEXAS A&M SYSTEM OFFICES', 'TEXAS A&M SYSTEM SHARED SERVICE CENTER', 'TEXAS A&M SYSTEM SPONSORED RESEARCH SERVICES', 'TEXAS A&M SYSTEM TECHNOLOGY COMMERCIALIZATION', 'TEXAS A&M TRANSPORTATION INSTITUTE', 'TEXAS A&M UNIVERSITY', 'TEXAS A&M UNIVERSITY AT GALVESTON', 'TEXAS A&M VETERINARY MEDICAL DIAGNOSTIC LABORATORY' ) UNION SELECT DISTINCT stu.uin, tamu_netid FROM itsql.cis.patron.students stu WHERE enroll_status_name IN ('Enrolled', 'Not Enrolled') UNION SELECT DISTINCT oth.uin as uin, oth.tamu_netid as tamu_netid FROM itsql.cis.patron.library_other_people_exceptions oth UNION SELECT DISTINCT lib.uin AS uin, lib.tamu_netid AS tamu_netid FROM itsql.cis.patron.library_retirees lib;",
"asyncBefore": true
}
6 changes: 3 additions & 3 deletions evans-pres-repr/nodes/connect.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"inputVariables": [],
"outputVariable": {},
"designation": "ldp",
"url": "{{{ldp-url}}}",
"username": "{{{ldp-user}}}",
"password": "{{{ldp-password}}}",
"url": "{{{ldpUrl}}}",
"username": "{{{ldpUser}}}",
"password": "{{{ldpPassword}}}",
"asyncBefore": true
}
6 changes: 3 additions & 3 deletions gobi/nodes/connect.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"inputVariables": [],
"outputVariable": {},
"designation": "ldp",
"url": "{{{ldp-url}}}",
"username": "{{{ldp-user}}}",
"password": "{{{ldp-password}}}",
"url": "{{{ldpUrl}}}",
"username": "{{{ldpUser}}}",
"password": "{{{ldpPassword}}}",
"asyncBefore": true
}
4 changes: 2 additions & 2 deletions gobi/nodes/email.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
}
],
"outputVariable": {},
"mailTo": "{{{gobi-mail-to}}}",
"mailFrom": "{{{gobi-mail-from}}}",
"mailTo": "{{{gobiMailTo}}}",
"mailFrom": "{{{gobiMailFrom}}}",
"mailSubject": "TAMU ISBN Report",
"mailText": "ISBN Gzip TSV file attached",
"attachmentPath": "/mnt/workflows/${tenantId}/gobi/isbn-report-${timestamp}.tsv.gz",
Expand Down
6 changes: 3 additions & 3 deletions hathitrust/nodes/connect.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"inputVariables": [],
"outputVariable": {},
"designation": "ldp",
"url": "{{{ldp-url}}}",
"username": "{{{ldp-user}}}",
"password": "{{{ldp-password}}}",
"url": "{{{ldpUrl}}}",
"username": "{{{ldpUser}}}",
"password": "{{{ldpPassword}}}",
"asyncBefore": true
}
6 changes: 3 additions & 3 deletions item-history-update/nodes/connect.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"inputVariables": [],
"outputVariable": {},
"designation": "ldp",
"url": "{{{ldp-url}}}",
"username": "{{{ldp-user}}}",
"password": "{{{ldp-password}}}",
"url": "{{{ldpUrl}}}",
"username": "{{{ldpUser}}}",
"password": "{{{ldpPassword}}}",
"asyncBefore": true
}
6 changes: 3 additions & 3 deletions medsci-gps-zone/nodes/connect.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"inputVariables": [],
"outputVariable": {},
"designation": "divit",
"url": "{{{divit-url}}}",
"username": "{{{divit-user}}}",
"password": "{{{divit-password}}}",
"url": "{{{divitUrl}}}",
"username": "{{{divitUser}}}",
"password": "{{{divitPassword}}}",
"asyncBefore": true
}
4 changes: 2 additions & 2 deletions medsci-gps-zone/nodes/email.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
}
],
"outputVariable": {},
"mailTo": "{{{medsci-gps-zone-to}}}",
"mailFrom": "{{{medsci-gps-zone-from}}}",
"mailTo": "{{{medsciGpsZoneTo}}}",
"mailFrom": "{{{medsciGpsZoneFrom}}}",
"mailSubject": "Grad access list",
"mailText": "Grad access list is attached.",
"attachmentPath": "/mnt/workflows/${tenantId}/medsci-gps-zone/grad_access_${timestamp}.txt",
Expand Down
Loading