@inter-digital/wasm-client-sdk 3.8.4-patch.4 → 3.8.4-patch.5
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/lib/index.es.js +1 -1
- package/lib/index.js +1 -1
- package/lib/index.umd.js +1 -1
- package/package.json +1 -1
package/lib/index.es.js
CHANGED
|
@@ -1334,7 +1334,7 @@ class SDK extends Emitter {
|
|
|
1334
1334
|
});
|
|
1335
1335
|
};
|
|
1336
1336
|
this.createQuoteMessage = (params, operationID = v4()) => {
|
|
1337
|
-
return this._invoker('createQuoteMessage', window.createQuoteMessage, [operationID, params.text, params.message], data => {
|
|
1337
|
+
return this._invoker('createQuoteMessage', window.createQuoteMessage, [operationID, params.text, JSON.stringify(params.message)], data => {
|
|
1338
1338
|
// compitable with old version sdk
|
|
1339
1339
|
return data[0];
|
|
1340
1340
|
});
|
package/lib/index.js
CHANGED
|
@@ -1338,7 +1338,7 @@ class SDK extends Emitter {
|
|
|
1338
1338
|
});
|
|
1339
1339
|
};
|
|
1340
1340
|
this.createQuoteMessage = (params, operationID = v4()) => {
|
|
1341
|
-
return this._invoker('createQuoteMessage', window.createQuoteMessage, [operationID, params.text, params.message], data => {
|
|
1341
|
+
return this._invoker('createQuoteMessage', window.createQuoteMessage, [operationID, params.text, JSON.stringify(params.message)], data => {
|
|
1342
1342
|
// compitable with old version sdk
|
|
1343
1343
|
return data[0];
|
|
1344
1344
|
});
|
package/lib/index.umd.js
CHANGED
|
@@ -1340,7 +1340,7 @@
|
|
|
1340
1340
|
});
|
|
1341
1341
|
};
|
|
1342
1342
|
this.createQuoteMessage = (params, operationID = v4()) => {
|
|
1343
|
-
return this._invoker('createQuoteMessage', window.createQuoteMessage, [operationID, params.text, params.message], data => {
|
|
1343
|
+
return this._invoker('createQuoteMessage', window.createQuoteMessage, [operationID, params.text, JSON.stringify(params.message)], data => {
|
|
1344
1344
|
// compitable with old version sdk
|
|
1345
1345
|
return data[0];
|
|
1346
1346
|
});
|