Lines 8-12
export const useERMStore = defineStore("erm", {
Link Here
|
8 |
ERMProviders: [], |
8 |
ERMProviders: [], |
9 |
}, |
9 |
}, |
10 |
}, |
10 |
}, |
|
|
11 |
authorisedValues: { |
12 |
av_agreement_statuses: "ERM_AGREEMENT_STATUS", |
13 |
av_agreement_closure_reasons: "ERM_AGREEMENT_CLOSURE_REASON", |
14 |
av_agreement_renewal_priorities: "ERM_AGREEMENT_RENEWAL_PRIORITY", |
15 |
av_user_roles: "ERM_USER_ROLES", |
16 |
av_license_types: "ERM_LICENSE_TYPE", |
17 |
av_license_statuses: "ERM_LICENSE_STATUS", |
18 |
av_agreement_license_statuses: "ERM_AGREEMENT_LICENSE_STATUS", |
19 |
av_agreement_license_location: "ERM_AGREEMENT_LICENSE_LOCATION", |
20 |
av_package_types: "ERM_PACKAGE_TYPE", |
21 |
av_package_content_types: "ERM_PACKAGE_CONTENT_TYPE", |
22 |
av_title_publication_types: "ERM_TITLE_PUBLICATION_TYPE", |
23 |
av_report_types: "ERM_REPORT_TYPES", |
24 |
av_platform_reports_metrics: "ERM_PLATFORM_REPORTS_METRICS", |
25 |
av_database_reports_metrics: "ERM_DATABASE_REPORTS_METRICS", |
26 |
av_title_reports_metrics: "ERM_TITLE_REPORTS_METRICS", |
27 |
av_item_reports_metrics: "ERM_ITEM_REPORTS_METRICS", |
28 |
av_agreement_relationships: [ |
29 |
{ value: "supersedes", description: __("supersedes") }, |
30 |
{ |
31 |
value: "is-superseded-by", |
32 |
description: __("is superseded by"), |
33 |
}, |
34 |
{ |
35 |
value: "provides_post-cancellation_access_for", |
36 |
description: __("provides post-cancellation access for"), |
37 |
}, |
38 |
{ |
39 |
value: "has-post-cancellation-access-in", |
40 |
description: __("has post-cancellation access in"), |
41 |
}, |
42 |
{ |
43 |
value: "tracks_demand-driven_acquisitions_for", |
44 |
description: __("tracks demand-driven acquisitions for"), |
45 |
}, |
46 |
{ |
47 |
value: "has-demand-driven-acquisitions-in", |
48 |
description: __("has demand-driven acquisitions in"), |
49 |
}, |
50 |
{ |
51 |
value: "has_backfile_in", |
52 |
description: __("has backfile in"), |
53 |
}, |
54 |
{ |
55 |
value: "has_frontfile_in", |
56 |
description: __("has frontfile in"), |
57 |
}, |
58 |
{ value: "related_to", description: __("related to") }, |
59 |
], |
60 |
}, |
11 |
}), |
61 |
}), |
12 |
}); |
62 |
}); |