@olympeio/runtime-node 9.7.3 → 9.8.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@olympeio/runtime-node",
3
- "version": "9.7.3",
3
+ "version": "9.8.0",
4
4
  "description": "Olympe Node Runtime Environment",
5
5
  "types": "types/index.d.ts",
6
6
  "dependencies": {
package/types/cloud.d.ts CHANGED
@@ -561,7 +561,10 @@ export class Transaction {
561
561
 
562
562
  /**
563
563
  * Execute atomically a transaction at the data source and returns the transaction result if succeeds.
564
- * The `large` mode sends the transaction over HTTP
564
+ * The `large` mode sends the transaction over HTTP, this has the following incidence:
565
+ * - Quicker processing of transaction
566
+ * - Allows transactions with no limit of size
567
+ * - Cannot be used when logged as Guest
565
568
  *
566
569
  * @return promise resolving with the corresponding TransactionResult if the transaction succeeds,
567
570
  * rejecting if the transaction fails.