Skip to content

Commit 1b666ca

Browse files
authored
Merge pull request #756 from inplayer-org/improvement/iot-url-change-stage-prod
AWS IoT urls for staging and production
2 parents dc74153 + 8af3c12 commit 1b666ca

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

CHANGELOG.md

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

33
All notable changes to this project will be documented in this file.
4+
# [3.12.7] - 04-05-2022
5+
6+
### Changes
7+
8+
- Updated AWS_IOT_URL for staging and production environments
49
# [3.12.6] - 08-03-2022
510

611
### 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.6",
3+
"version": "3.12.7",
44
"author": "InPlayer",
55
"license": "MIT",
66
"description": "A Javascript SDK for Inplayer's RESTful API",

src/config.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@ export const dailyConfig = {
2929
* INPLAYER_ACCESS_CODE_NAME = (assetId: number) => `access_code_${assetId}`;
3030
* IOT_NOTIF_URL = 'a3gkl64duktvc4-ats.iot.eu-west-1.amazonaws.com';
3131
* BASE_URL = 'https://staging-v2.inplayer.com';
32-
* AWS_IOT_URL = 'https://o3871l8vj7.execute-api.eu-west-1.amazonaws.com/staging/iot/keys';
32+
* AWS_IOT_URL = 'https://staging-notifications.inplayer.com/';
3333
* ```
3434
*/
3535
export const devConfig = {
3636
...commonConfig,
3737
BASE_URL: 'https://staging-v2.inplayer.com',
38-
AWS_IOT_URL: 'https://o3871l8vj7.execute-api.eu-west-1.amazonaws.com/staging/iot/keys',
38+
AWS_IOT_URL: 'https://staging-notifications.inplayer.com/',
3939
};
4040

4141
/**
@@ -45,13 +45,13 @@ export const devConfig = {
4545
* INPLAYER_ACCESS_CODE_NAME = (assetId: number) => `access_code_${assetId}`;
4646
* IOT_NOTIF_URL = 'a3gkl64duktvc4-ats.iot.eu-west-1.amazonaws.com';
4747
* BASE_URL = 'https://services.inplayer.com';
48-
* AWS_IOT_URL = 'https://eynmuj2g26.execute-api.eu-west-1.amazonaws.com/prod/iot/keys';
48+
* AWS_IOT_URL = 'https://notifications.inplayer.com/';
4949
* ```
5050
*/
5151
export const prodConfig = {
5252
...commonConfig,
5353
BASE_URL: 'https://services.inplayer.com',
54-
AWS_IOT_URL: 'https://eynmuj2g26.execute-api.eu-west-1.amazonaws.com/prod/iot/keys',
54+
AWS_IOT_URL: 'https://notifications.inplayer.com/',
5555
};
5656

5757
/** @internal */

0 commit comments

Comments
 (0)