engage-wasm 1.235.90750007 → 1.236.90760009
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 +20 -0
- package/engagewasm.js +1 -1
- package/engagewasm.wasm +0 -0
- package/package.json +1 -1
package/engagewasm.api.js
CHANGED
|
@@ -117,6 +117,26 @@ export default class Engage extends EventTarget {
|
|
|
117
117
|
engageUnmuteGroupRx(id) {
|
|
118
118
|
return this.wasmWrapper.engageUnmuteGroupRx(id);
|
|
119
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
|
+
}
|
|
120
140
|
}
|
|
121
141
|
|
|
122
142
|
/*
|