engage-engine 1.255.90950031 → 1.255.90950032

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.
@@ -12,7 +12,7 @@
12
12
  *
13
13
  * This file contains all the configuration objects
14
14
  *
15
- * Copyright (c) 2018 Rally Tactical Systems, Inc.
15
+ * Copyright (c) 2019 Rally Tactical Systems, Inc.
16
16
  * All rights reserved.
17
17
  *
18
18
  */
@@ -5695,6 +5695,9 @@ namespace AppConfigurationObjects
5695
5695
  /** @brief [Read only] Manufacturer ID. */
5696
5696
  std::string manufacturerId;
5697
5697
 
5698
+ /** @brief The HMAC to be used for activation purposes. */
5699
+ std::string activationHmac;
5700
+
5698
5701
  LicenseDescriptor()
5699
5702
  {
5700
5703
  clear();
@@ -5714,6 +5717,7 @@ namespace AppConfigurationObjects
5714
5717
  deviceId.clear();
5715
5718
  status = ERR_NOT_INITIALIZED;
5716
5719
  manufacturerId.clear();
5720
+ activationHmac.clear();
5717
5721
  }
5718
5722
  };
5719
5723
 
@@ -5733,7 +5737,8 @@ namespace AppConfigurationObjects
5733
5737
  //TOJSON_IMPL(manufacturerId),
5734
5738
  {"manufacturerId", "*manufacturerId*"},
5735
5739
  TOJSON_IMPL(cargo),
5736
- TOJSON_IMPL(cargoFlags)
5740
+ TOJSON_IMPL(cargoFlags),
5741
+ TOJSON_IMPL(activationHmac)
5737
5742
  };
5738
5743
  }
5739
5744
 
@@ -5752,6 +5757,7 @@ namespace AppConfigurationObjects
5752
5757
  FROMJSON_IMPL(manufacturerId, std::string, EMPTY_STRING);
5753
5758
  FROMJSON_IMPL(cargo, std::string, EMPTY_STRING);
5754
5759
  FROMJSON_IMPL(cargoFlags, uint8_t, 0);
5760
+ FROMJSON_IMPL(activationHmac, std::string, EMPTY_STRING);
5755
5761
  }
5756
5762
 
5757
5763
 
Binary file
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "engage-engine",
3
- "version": "1.255.90950031",
3
+ "version": "1.255.90950032",
4
4
  "description": "Use Engage to communicate with everyone, everywhere, from any device",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1"