@appsemble/types 0.19.10 → 0.19.11
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/dist/index.d.ts +10 -0
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -504,6 +504,12 @@ export interface EmailActionDefinition extends BaseActionDefinition<'email'> {
|
|
|
504
504
|
* The recipient of the email.
|
|
505
505
|
*/
|
|
506
506
|
to?: Remapper;
|
|
507
|
+
/**
|
|
508
|
+
* The name of the sender.
|
|
509
|
+
*
|
|
510
|
+
* The default value depends on the email server.
|
|
511
|
+
*/
|
|
512
|
+
from?: Remapper;
|
|
507
513
|
/**
|
|
508
514
|
* The recipients to CC the email to.
|
|
509
515
|
*/
|
|
@@ -995,6 +1001,10 @@ export interface App {
|
|
|
995
1001
|
*/
|
|
996
1002
|
id?: number;
|
|
997
1003
|
domain?: string;
|
|
1004
|
+
/**
|
|
1005
|
+
* The name used for emails
|
|
1006
|
+
*/
|
|
1007
|
+
emailName?: string;
|
|
998
1008
|
/**
|
|
999
1009
|
* The id of the organization this app belongs to.
|
|
1000
1010
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@appsemble/types",
|
|
3
|
-
"version": "0.19.
|
|
3
|
+
"version": "0.19.11",
|
|
4
4
|
"description": "TypeScript definitions reused within Appsemble internally",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"app",
|
|
@@ -30,10 +30,10 @@
|
|
|
30
30
|
"test": "jest"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@appsemble/sdk": "0.19.
|
|
33
|
+
"@appsemble/sdk": "0.19.11",
|
|
34
34
|
"@fortawesome/fontawesome-common-types": "^0.2.0",
|
|
35
35
|
"jsonschema": "^1.0.0",
|
|
36
|
-
"openapi-types": "^
|
|
36
|
+
"openapi-types": "^10.0.0",
|
|
37
37
|
"type-fest": "^2.0.0"
|
|
38
38
|
}
|
|
39
39
|
}
|