engage-wasm 1.235.90750006 → 1.235.90750008

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/engagewasm.api.js CHANGED
@@ -27,6 +27,10 @@ export default class Engage extends EventTarget {
27
27
  return this._wasmWrapper;
28
28
  }
29
29
 
30
+ engageTick() {
31
+ this.wasmWrapper.engageTick();
32
+ }
33
+
30
34
  engageSetLogLevel(level) {
31
35
  return this.wasmWrapper.engageSetLogLevel(level);
32
36
  }
@@ -113,6 +117,26 @@ export default class Engage extends EventTarget {
113
117
  engageUnmuteGroupRx(id) {
114
118
  return this.wasmWrapper.engageUnmuteGroupRx(id);
115
119
  }
120
+
121
+ engageGetActiveLicenseDescriptor() {
122
+ return this.wasmWrapper.engageGetActiveLicenseDescriptor();
123
+ }
124
+
125
+ engageGetLicenseDescriptor(entitlement, key, activationCode, manufacturerId) {
126
+ return this.wasmWrapper.engageGetLicenseDescriptor(entitlement, key, activationCode, manufacturerId);
127
+ }
128
+
129
+ engageUpdateLicense(entitlement, key, activationCode, manufacturerId) {
130
+ return this.wasmWrapper.engageUpdateLicense(entitlement, key, activationCode, manufacturerId);
131
+ }
132
+
133
+ engageGetDeviceId() {
134
+ return this.wasmWrapper.engageGetDeviceId();
135
+ }
136
+
137
+ engageQueryGroupTimeline(id, jsonParams) {
138
+ return this.wasmWrapper.engageQueryGroupTimeline(id, jsonParams);
139
+ }
116
140
  }
117
141
 
118
142
  /*