datastake-daf 0.6.550 → 0.6.552

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Binary file
Binary file
Binary file
@@ -0,0 +1,25 @@
1
+ {
2
+ "short_name": "React App",
3
+ "name": "Create React App Sample",
4
+ "icons": [
5
+ {
6
+ "src": "favicon.ico",
7
+ "sizes": "64x64 32x32 24x24 16x16",
8
+ "type": "image/x-icon"
9
+ },
10
+ {
11
+ "src": "logo192.png",
12
+ "type": "image/png",
13
+ "sizes": "192x192"
14
+ },
15
+ {
16
+ "src": "logo512.png",
17
+ "type": "image/png",
18
+ "sizes": "512x512"
19
+ }
20
+ ],
21
+ "start_url": ".",
22
+ "display": "standalone",
23
+ "theme_color": "#000000",
24
+ "background_color": "#ffffff"
25
+ }
@@ -0,0 +1,3 @@
1
+ # https://www.robotstxt.org/robotstxt.html
2
+ User-agent: *
3
+ Disallow:
@@ -41063,7 +41063,7 @@ const createErrorHandler = (config = {}) => {
41063
41063
  };
41064
41064
  };
41065
41065
 
41066
- let globalConfig = {
41066
+ window.globalConfig = {
41067
41067
  application: null,
41068
41068
  mainApiUrl: null,
41069
41069
  storeUrl: null,
@@ -41075,9 +41075,9 @@ let globalConfig = {
41075
41075
  };
41076
41076
  const getConfig$1 = () => {
41077
41077
  console.log({
41078
- getConfig: globalConfig
41078
+ getConfig: window.globalConfig
41079
41079
  });
41080
- return globalConfig;
41080
+ return window.globalConfig;
41081
41081
  };
41082
41082
 
41083
41083
  class ErrorService {
@@ -841,7 +841,7 @@ const createErrorHandler = (config = {}) => {
841
841
  };
842
842
  };
843
843
 
844
- let globalConfig = {
844
+ window.globalConfig = {
845
845
  application: null,
846
846
  mainApiUrl: null,
847
847
  storeUrl: null,
@@ -853,9 +853,9 @@ let globalConfig = {
853
853
  };
854
854
  const getConfig = () => {
855
855
  console.log({
856
- getConfig: globalConfig
856
+ getConfig: window.globalConfig
857
857
  });
858
- return globalConfig;
858
+ return window.globalConfig;
859
859
  };
860
860
 
861
861
  class ErrorService {