coh-content-db 2.0.0-rc.13 → 2.0.0-rc.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
- ## [2.0.0-rc.13] - 2025-04-21
8
+ ## [2.0.0-rc.14] - 2025-04-22
9
9
 
10
10
  ### Added
11
11
 
@@ -650,7 +650,7 @@ interface BadgeSearchOptions {
650
650
  filter?: {
651
651
  type?: BadgeType;
652
652
  zoneKey?: string;
653
- morality?: MoralityExtended;
653
+ morality?: Morality;
654
654
  };
655
655
  /**
656
656
  * Sort results.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "coh-content-db",
3
- "version": "2.0.0-rc.13",
3
+ "version": "2.0.0-rc.14",
4
4
  "description": "City of Heroes Content Database",
5
5
  "homepage": "https://github.com/n15g/coh-content-db#readme",
6
6
  "bugs": {
@@ -1,5 +1,5 @@
1
1
  import { BadgeType } from '../api/badge-type'
2
- import { MoralityExtended } from '../api/morality'
2
+ import { Morality } from '../api/morality'
3
3
 
4
4
  export type BadgeQueryableField = 'name' | 'badge-text' | 'acquisition' | 'notes' | 'effect' | 'set-title-id'
5
5
  export type BadgeSortableField = 'canonical' | 'badge-name' | 'zone-key' | 'release-date'
@@ -22,7 +22,7 @@ export interface BadgeSearchOptions {
22
22
  filter?: {
23
23
  type?: BadgeType
24
24
  zoneKey?: string
25
- morality?: MoralityExtended
25
+ morality?: Morality
26
26
  }
27
27
 
28
28
  /**