otomato-sdk 2.0.134 → 2.0.136
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.
|
@@ -5483,6 +5483,68 @@ export const ACTIONS = {
|
|
|
5483
5483
|
"blockId": 100004,
|
|
5484
5484
|
"image": "https://otomato-sdk-images.s3.eu-west-1.amazonaws.com/whatsapp.webp"
|
|
5485
5485
|
}
|
|
5486
|
+
},
|
|
5487
|
+
"WEB3MAIL": {
|
|
5488
|
+
"description": "Sends a Web3 mail using iExec RLC",
|
|
5489
|
+
"image": "https://otomato-sdk-images.s3.eu-west-1.amazonaws.com/iexec.webp",
|
|
5490
|
+
"SEND_WEB3MAIL": {
|
|
5491
|
+
"name": "Send Web3 mail",
|
|
5492
|
+
"type": 6,
|
|
5493
|
+
"description": "Sends a decentralized email using iExec RLC Web3Mail service",
|
|
5494
|
+
"output": {
|
|
5495
|
+
"message": "string",
|
|
5496
|
+
"taskId": "string"
|
|
5497
|
+
},
|
|
5498
|
+
"parameters": [
|
|
5499
|
+
{
|
|
5500
|
+
"key": "protectedData",
|
|
5501
|
+
"type": "string",
|
|
5502
|
+
"description": "The recipient's protected data address containing their email",
|
|
5503
|
+
"private": true,
|
|
5504
|
+
"category": 0
|
|
5505
|
+
},
|
|
5506
|
+
{
|
|
5507
|
+
"key": "subject",
|
|
5508
|
+
"type": "string",
|
|
5509
|
+
"description": "The subject of the Web3 mail",
|
|
5510
|
+
"mandatory": true,
|
|
5511
|
+
"category": 0
|
|
5512
|
+
},
|
|
5513
|
+
{
|
|
5514
|
+
"key": "content",
|
|
5515
|
+
"type": "paragraph",
|
|
5516
|
+
"description": "The content of the Web3 mail",
|
|
5517
|
+
"mandatory": true,
|
|
5518
|
+
"category": 0
|
|
5519
|
+
},
|
|
5520
|
+
],
|
|
5521
|
+
"examples": [
|
|
5522
|
+
{
|
|
5523
|
+
"name": "Basic Web3 mail",
|
|
5524
|
+
"description": "Send a Web3 mail using iExec RLC",
|
|
5525
|
+
"parameters": [
|
|
5526
|
+
{
|
|
5527
|
+
"key": "protectedData",
|
|
5528
|
+
"value": ""
|
|
5529
|
+
},
|
|
5530
|
+
{
|
|
5531
|
+
"key": "subject",
|
|
5532
|
+
"value": "Web3 Mail Test"
|
|
5533
|
+
},
|
|
5534
|
+
{
|
|
5535
|
+
"key": "content",
|
|
5536
|
+
"value": "This is a test Web3 mail sent through iExec RLC's Web3Mail service"
|
|
5537
|
+
},
|
|
5538
|
+
{
|
|
5539
|
+
"key": "sender",
|
|
5540
|
+
"value": "Otomato"
|
|
5541
|
+
}
|
|
5542
|
+
]
|
|
5543
|
+
}
|
|
5544
|
+
],
|
|
5545
|
+
"blockId": 100017,
|
|
5546
|
+
"image": "https://otomato-sdk-images.s3.eu-west-1.amazonaws.com/iexec.webp"
|
|
5547
|
+
}
|
|
5486
5548
|
}
|
|
5487
5549
|
},
|
|
5488
5550
|
"LENDING": {
|
|
@@ -2253,6 +2253,30 @@ export declare const ACTIONS: {
|
|
|
2253
2253
|
image: string;
|
|
2254
2254
|
};
|
|
2255
2255
|
};
|
|
2256
|
+
WEB3MAIL: {
|
|
2257
|
+
description: string;
|
|
2258
|
+
image: string;
|
|
2259
|
+
SEND_WEB3MAIL: {
|
|
2260
|
+
name: string;
|
|
2261
|
+
type: number;
|
|
2262
|
+
description: string;
|
|
2263
|
+
output: {
|
|
2264
|
+
message: string;
|
|
2265
|
+
taskId: string;
|
|
2266
|
+
};
|
|
2267
|
+
parameters: Parameter[];
|
|
2268
|
+
examples: {
|
|
2269
|
+
name: string;
|
|
2270
|
+
description: string;
|
|
2271
|
+
parameters: {
|
|
2272
|
+
key: string;
|
|
2273
|
+
value: string;
|
|
2274
|
+
}[];
|
|
2275
|
+
}[];
|
|
2276
|
+
blockId: number;
|
|
2277
|
+
image: string;
|
|
2278
|
+
};
|
|
2279
|
+
};
|
|
2256
2280
|
};
|
|
2257
2281
|
LENDING: {
|
|
2258
2282
|
IONIC: {
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "2.0.
|
|
1
|
+
export declare const SDK_VERSION = "2.0.136";
|
|
2
2
|
export declare function compareVersions(v1: string, v2: string): number;
|