Skip to content

Commit

Permalink
fix: rename CmcdParam file to match exported const (#31)
Browse files Browse the repository at this point in the history
* fix: rename CmcdParam file to match exported const

Signed-off-by: Casey Occhialini <[email protected]>
  • Loading branch information
littlespex authored Oct 12, 2023
1 parent bfcb6f3 commit 5431337
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [0.4.5] - 2023-10-12

### Fixed
- `CMCD_PARAM` constant does not match file name [#27](https://github.com/streaming-video-technology-alliance/common-media-library/issues/27)


## [0.4.4] - 2023-10-11

Expand Down
2 changes: 1 addition & 1 deletion lib/src/cmcd.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
*
* @packageDocumentation
*/
export { CMCD_PARAM } from './cmcd/CMCD_PARAM.js';
export type { Cmcd } from './cmcd/Cmcd.js';
export type { CmcdCustomKey } from './cmcd/CmcdCustomKey.js';
export type { CmcdEncodeOptions } from './cmcd/CmcdEncodeOptions.js';
Expand All @@ -12,7 +13,6 @@ export { CmcdHeaderField } from './cmcd/CmcdHeaderField.js';
export type { CmcdHeadersMap } from './cmcd/CmcdHeadersMap.js';
export type { CmcdKey } from './cmcd/CmcdKey.js';
export { CmcdObjectType } from './cmcd/CmcdObjectType.js';
export { CMCD_PARAM } from './cmcd/CmcdParam.js';
export { CmcdStreamType } from './cmcd/CmcdStreamType.js';
export { CmcdStreamingFormat } from './cmcd/CmcdStreamingFormat.js';
export type { CmcdValue } from './cmcd/CmcdValue.js';
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion lib/src/cmcd/fromCmcdQuery.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Cmcd } from './Cmcd.js';
import { CMCD_PARAM } from './CmcdParam.js';
import { CMCD_PARAM } from './CMCD_PARAM.js';
import { decodeCmcd } from './decodeCmcd.js';

/**
Expand Down
2 changes: 1 addition & 1 deletion lib/src/cmcd/toCmcdQuery.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { CMCD_PARAM } from './CMCD_PARAM.js';
import { Cmcd } from './Cmcd.js';
import { CmcdEncodeOptions } from './CmcdEncodeOptions.js';
import { CMCD_PARAM } from './CmcdParam.js';
import { encodeCmcd } from './encodeCmcd.js';

/**
Expand Down

0 comments on commit 5431337

Please sign in to comment.