spelling fix
This commit is contained in:
parent
a6d740e9e9
commit
f92e8dfacb
1 changed files with 5 additions and 3 deletions
|
|
@ -41,7 +41,7 @@ export type APIType = {
|
||||||
/**
|
/**
|
||||||
* Mobile Header
|
* Mobile Header
|
||||||
*/
|
*/
|
||||||
cruncyhAuthHeaderMob: Record<string, string>,
|
crunchyAuthHeaderMob: Record<string, string>,
|
||||||
/**
|
/**
|
||||||
* Switch Header
|
* Switch Header
|
||||||
*/
|
*/
|
||||||
|
|
@ -85,7 +85,7 @@ const api: APIType = {
|
||||||
beta_cms: `${domain.api_beta}/cms/v2`,
|
beta_cms: `${domain.api_beta}/cms/v2`,
|
||||||
drm: `${domain.api_beta}/drm/v1/auth`,
|
drm: `${domain.api_beta}/drm/v1/auth`,
|
||||||
crunchyAuthHeader: {},
|
crunchyAuthHeader: {},
|
||||||
cruncyhAuthHeaderMob: {},
|
crunchyAuthHeaderMob: {},
|
||||||
crunchyAuthHeaderSwitch: {},
|
crunchyAuthHeaderSwitch: {},
|
||||||
//hidive API
|
//hidive API
|
||||||
hd_apikey: '508efd7b42d546e19cc24f4d0b414e57e351ca73',
|
hd_apikey: '508efd7b42d546e19cc24f4d0b414e57e351ca73',
|
||||||
|
|
@ -104,9 +104,11 @@ const api: APIType = {
|
||||||
api.crunchyAuthHeader = {
|
api.crunchyAuthHeader = {
|
||||||
Authorization: api.authBasic,
|
Authorization: api.authBasic,
|
||||||
};
|
};
|
||||||
api.cruncyhAuthHeaderMob = {
|
|
||||||
|
api.crunchyAuthHeaderMob = {
|
||||||
Authorization: api.authBasicMob,
|
Authorization: api.authBasicMob,
|
||||||
};
|
};
|
||||||
|
|
||||||
api.crunchyAuthHeaderSwitch = {
|
api.crunchyAuthHeaderSwitch = {
|
||||||
Authorization: api.authBasicSwitch,
|
Authorization: api.authBasicSwitch,
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue