Skip to content

Commit dc74153

Browse files
authored
Merge pull request #755 from inplayer-org/improvement/iot-url-change
Changed aws iot url for daily
2 parents a69dd87 + f275af7 commit dc74153

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
# Change Log
22

33
All notable changes to this project will be documented in this file.
4+
# [3.12.6] - 08-03-2022
5+
6+
### Changes
7+
8+
- Updated AWS_IOT_URL for daily environment
9+
410
# [3.12.5] - 03-17-2022
511

612
### Changes

package.json

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

src/config.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ export const commonConfig = {
1313
* INPLAYER_ACCESS_CODE_NAME = (assetId: number) => `access_code_${assetId}`;
1414
* IOT_NOTIF_URL = 'a3gkl64duktvc4-ats.iot.eu-west-1.amazonaws.com';
1515
* BASE_URL = 'https://services-daily.inplayer.com';
16-
* AWS_IOT_URL = 'https://o3871l8vj7.execute-api.eu-west-1.amazonaws.com/staging/iot/keys';
16+
* AWS_IOT_URL = 'https://daily-notifications.inplayer.com/iot/keys';
1717
* ```
1818
*/
1919
export const dailyConfig = {
2020
...commonConfig,
2121
BASE_URL: 'https://services-daily.inplayer.com',
22-
AWS_IOT_URL: 'https://o3871l8vj7.execute-api.eu-west-1.amazonaws.com/staging/iot/keys',
22+
AWS_IOT_URL: 'https://daily-notifications.inplayer.com/iot/keys',
2323
};
2424

2525
/**

0 commit comments

Comments
 (0)