File tree 3 files changed +12
-5
lines changed
3 files changed +12
-5
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
3
3
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
+
4
11
# [ 3.12.7] - 04-05-2022
5
12
6
13
### Changes
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @inplayer-org/inplayer.js" ,
3
- "version" : " 3.12.7 " ,
3
+ "version" : " 3.12.8 " ,
4
4
"author" : " InPlayer" ,
5
5
"license" : " MIT" ,
6
6
"description" : " A Javascript SDK for Inplayer's RESTful API" ,
Original file line number Diff line number Diff line change @@ -29,13 +29,13 @@ export const dailyConfig = {
29
29
* INPLAYER_ACCESS_CODE_NAME = (assetId: number) => `access_code_${assetId}`;
30
30
* IOT_NOTIF_URL = 'a3gkl64duktvc4-ats.iot.eu-west-1.amazonaws.com';
31
31
* BASE_URL = 'https://staging-v2.inplayer.com';
32
- * AWS_IOT_URL = 'https://staging-notifications.inplayer.com/';
32
+ * AWS_IOT_URL = 'https://staging-notifications.inplayer.com/iot/keys ';
33
33
* ```
34
34
*/
35
35
export const devConfig = {
36
36
...commonConfig ,
37
37
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 ' ,
39
39
} ;
40
40
41
41
/**
@@ -45,13 +45,13 @@ export const devConfig = {
45
45
* INPLAYER_ACCESS_CODE_NAME = (assetId: number) => `access_code_${assetId}`;
46
46
* IOT_NOTIF_URL = 'a3gkl64duktvc4-ats.iot.eu-west-1.amazonaws.com';
47
47
* BASE_URL = 'https://services.inplayer.com';
48
- * AWS_IOT_URL = 'https://notifications.inplayer.com/';
48
+ * AWS_IOT_URL = 'https://notifications.inplayer.com/iot/keys ';
49
49
* ```
50
50
*/
51
51
export const prodConfig = {
52
52
...commonConfig ,
53
53
BASE_URL : 'https://services.inplayer.com' ,
54
- AWS_IOT_URL : 'https://notifications.inplayer.com/' ,
54
+ AWS_IOT_URL : 'https://notifications.inplayer.com/iot/keys ' ,
55
55
} ;
56
56
57
57
/** @internal */
You can’t perform that action at this time.
0 commit comments