Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: rename CmcdParam file to match exported const #31

Merged
merged 3 commits into from
Oct 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading