Skip to content

Commit 19d9710

Browse files
committed
Fixed the url for prod and staging for AWS_IOT
1 parent 1b666ca commit 19d9710

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
# Change Log
22

33
All notable changes to this project will be documented in this file.
4+
5+
# [3.12.8] - 05-05-2022
6+
7+
### Changes
8+
9+
- Fixed AWS_IOT_URL for staging and production environments
10+
411
# [3.12.7] - 04-05-2022
512

613
### Changes

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@inplayer-org/inplayer.js",
3-
"version": "3.12.7",
3+
"version": "3.12.8",
44
"author": "InPlayer",
55
"license": "MIT",
66
"description": "A Javascript SDK for Inplayer's RESTful API",

src/config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export const dailyConfig = {
3535
export const devConfig = {
3636
...commonConfig,
3737
BASE_URL: 'https://staging-v2.inplayer.com',
38-
AWS_IOT_URL: 'https://staging-notifications.inplayer.com/',
38+
AWS_IOT_URL: 'https://staging-notifications.inplayer.com/iot/keys',
3939
};
4040

4141
/**
@@ -51,7 +51,7 @@ export const devConfig = {
5151
export const prodConfig = {
5252
...commonConfig,
5353
BASE_URL: 'https://services.inplayer.com',
54-
AWS_IOT_URL: 'https://notifications.inplayer.com/',
54+
AWS_IOT_URL: 'https://notifications.inplayer.com/iot/keys',
5555
};
5656

5757
/** @internal */

0 commit comments

Comments
 (0)