chayns-api 2.4.8 → 2.4.9

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.
@@ -233,6 +233,7 @@ let RuntimeEnviroment = exports.RuntimeEnviroment = function (RuntimeEnviroment)
233
233
  RuntimeEnviroment[RuntimeEnviroment["IntercomPlugin"] = 4] = "IntercomPlugin";
234
234
  RuntimeEnviroment[RuntimeEnviroment["PagemakerPlugin"] = 5] = "PagemakerPlugin";
235
235
  RuntimeEnviroment[RuntimeEnviroment["Dialog"] = 6] = "Dialog";
236
+ RuntimeEnviroment[RuntimeEnviroment["App"] = 7] = "App";
236
237
  return RuntimeEnviroment;
237
238
  }({});
238
239
  let DeviceOs = exports.DeviceOs = function (DeviceOs) {
@@ -84,7 +84,7 @@ class AppWrapper {
84
84
  }),
85
85
  environment: {
86
86
  buildEnvironment: _IChaynsReact.Environment.Production,
87
- runtimeEnvironment: _IChaynsReact.RuntimeEnviroment.Unknown
87
+ runtimeEnvironment: _IChaynsReact.RuntimeEnviroment.App
88
88
  },
89
89
  language: {
90
90
  site: language,
@@ -227,6 +227,7 @@ export let RuntimeEnviroment = function (RuntimeEnviroment) {
227
227
  RuntimeEnviroment[RuntimeEnviroment["IntercomPlugin"] = 4] = "IntercomPlugin";
228
228
  RuntimeEnviroment[RuntimeEnviroment["PagemakerPlugin"] = 5] = "PagemakerPlugin";
229
229
  RuntimeEnviroment[RuntimeEnviroment["Dialog"] = 6] = "Dialog";
230
+ RuntimeEnviroment[RuntimeEnviroment["App"] = 7] = "App";
230
231
  return RuntimeEnviroment;
231
232
  }({});
232
233
  export let DeviceOs = function (DeviceOs) {
@@ -73,7 +73,7 @@ export class AppWrapper {
73
73
  }),
74
74
  environment: {
75
75
  buildEnvironment: Environment.Production,
76
- runtimeEnvironment: RuntimeEnviroment.Unknown
76
+ runtimeEnvironment: RuntimeEnviroment.App
77
77
  },
78
78
  language: {
79
79
  site: language,
@@ -877,7 +877,8 @@ export declare enum RuntimeEnviroment {
877
877
  ChaynsRuntime = 3,
878
878
  IntercomPlugin = 4,
879
879
  PagemakerPlugin = 5,
880
- Dialog = 6
880
+ Dialog = 6,
881
+ App = 7
881
882
  }
882
883
  export declare enum DeviceOs {
883
884
  Unknown = "unknown",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chayns-api",
3
- "version": "2.4.8",
3
+ "version": "2.4.9",
4
4
  "description": "new chayns api",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",