qumra-cli 2.4.3 → 2.4.4
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.
- package/dist/cli.js +6 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -304366,8 +304366,13 @@ class SectionBuilder {
|
|
|
304366
304366
|
}
|
|
304367
304367
|
}
|
|
304368
304368
|
|
|
304369
|
+
var version$2 = "2.4.4";
|
|
304370
|
+
var pkg = {
|
|
304371
|
+
version: version$2};
|
|
304372
|
+
|
|
304373
|
+
// @ts-ignore - imported via rollup json plugin
|
|
304369
304374
|
const APP_NAME = 'qumra';
|
|
304370
|
-
const APP_VERSION =
|
|
304375
|
+
const APP_VERSION = pkg.version;
|
|
304371
304376
|
const CLI_VERSION = APP_VERSION;
|
|
304372
304377
|
const API_ENDPOINT = 'https://api.qumra.cloud/graphql';
|
|
304373
304378
|
const REALTIME_ENDPOINT = 'wss://realtime.qumra.cloud';
|