-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
UISACQCOMP-238 Support 'CLAIMS' export type in the 'useIntegrationCon…
…figs' hook (#842) * UISACQCOMP-238 Support 'CLAIMS' export type in the 'useIntegrationConfigs' hook * update test
- Loading branch information
1 parent
76fa627
commit a2bf4fe
Showing
8 changed files
with
49 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
export const ALL_RECORDS_CQL = 'cql.allRecords=1'; | ||
export const CQL_OR_OPERATOR = 'or'; | ||
export const CQL_AND_OPERATOR = 'and'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
export const FOLIO_EXPORT_TYPE = { | ||
CIRCULATION_LOG: 'CIRCULATION_LOG', | ||
BURSAR_FEES_FINES: 'BURSAR_FEES_FINES', | ||
BATCH_VOUCHER_EXPORT: 'BATCH_VOUCHER_EXPORT', | ||
EDIFACT_ORDERS_EXPORT: 'EDIFACT_ORDERS_EXPORT', | ||
CLAIMS: 'CLAIMS', | ||
ORDERS_EXPORT: 'ORDERS_EXPORT', | ||
INVOICE_EXPORT: 'INVOICE_EXPORT', | ||
BULK_EDIT_IDENTIFIERS: 'BULK_EDIT_IDENTIFIERS', | ||
BULK_EDIT_QUERY: 'BULK_EDIT_QUERY', | ||
BULK_EDIT_UPDATE: 'BULK_EDIT_UPDATE', | ||
E_HOLDINGS: 'E_HOLDINGS', | ||
AUTH_HEADINGS_UPDATES: 'AUTH_HEADINGS_UPDATES', | ||
FAILED_LINKED_BIB_UPDATES: 'FAILED_LINKED_BIB_UPDATES', | ||
}; | ||
|
||
export const ORGANIZATION_INTEGRATION_EXPORT_TYPES = [ | ||
FOLIO_EXPORT_TYPE.CLAIMS, | ||
FOLIO_EXPORT_TYPE.EDIFACT_ORDERS_EXPORT, | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters