Skip to content

Commit

Permalink
Release 21-01-2025 (#1642)
Browse files Browse the repository at this point in the history
<!--
Follow semantic-release guidelines for the PR title, which is used in
the changelog.

Title should follow the format `<type>(<scope>): <subject>`, where
- Type is one of:
build|chore|ci|docs|feat|fix|perf|refactor|revert|style|test|BREAKING
CHANGE
- Scope (optional) describes the place of the change (eg a particular
milestone) and is usually omitted
- subject should be a non-capitalized one-line description in present
imperative tense and not ending with a period

See
https://github.com/angular/angular.js/blob/master/DEVELOPERS.md#-git-commit-guidelines
for more details.
-->

## Description
<!-- Short description of the pull request -->

## Motivation
<!-- Background on use case, changes needed -->

## Fixes
<!-- Please provide a list of the issues fixed by this PR -->

* Bug fixed (#X)

## Changes:
<!-- Please provide a list of the changes implemented by this PR -->

* changes made

## Tests included

- [ ] Included for each change/fix?
- [ ] Passing? <!-- Merge will not be approved unless tests pass -->

## Documentation
- [ ] swagger documentation updated (required for API changes)
- [ ] official documentation updated

### official documentation info
<!-- If you have updated the official documentation, please provide PR #
and URL of the updated pages -->
  • Loading branch information
martin-trajanovski authored Jan 21, 2025
2 parents 6f1030d + 2296933 commit cfd9ee1
Show file tree
Hide file tree
Showing 11 changed files with 257 additions and 207 deletions.
5 changes: 4 additions & 1 deletion .github/openapi/typescript-angular-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,8 @@
"generatorName": "typescript-angular",
"npmName": "@scicatproject/scicat-sdk-ts-angular",
"ngVersion": "16.2.12",
"withInterfaces": true
"withInterfaces": true,
"paramNaming": "original",
"modelPropertyNaming": "original",
"enumPropertyNaming": "original"
}
5 changes: 4 additions & 1 deletion .github/openapi/typescript-fetch-config.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
{
"generatorName": "typescript-fetch",
"npmName": "@scicatproject/scicat-sdk-ts-fetch",
"supportsES6": true
"supportsES6": true,
"paramNaming": "original",
"modelPropertyNaming": "original",
"enumPropertyNaming": "original"
}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ functionalAccounts.json
datasetTypes.json
proposalTypes.json
loggers.json
metricsConfig.json

# Configs
.env
Expand Down
31 changes: 31 additions & 0 deletions metricsConfig.example.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"include": [
{
"path": "*",
"method": 0,
"version": "3"
},
{
"path": "datasets/fullquery",
"method": 0,
"version": "3"
},
{
"path": "datasets/:id",
"method": 0,
"version": "3"
}
],
"exclude": [
{
"path": "datasets/fullfacet",
"method": 0,
"version": "3"
},
{
"path": "datasets/metadataKeys",
"method": 0,
"version": "3"
}
]
}
Loading

0 comments on commit cfd9ee1

Please sign in to comment.