@moxi.gmbh/moxi-typescriptmodels 0.0.901 → 0.0.911
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/common.d.ts +7 -1
- package/package.json +1 -1
package/common.d.ts
CHANGED
|
@@ -29,6 +29,7 @@ export interface AccountCommand {
|
|
|
29
29
|
|
|
30
30
|
export interface AccountInfo {
|
|
31
31
|
address?: AddressInfo;
|
|
32
|
+
defaultLanguage?: string;
|
|
32
33
|
notificationEmails?: string[];
|
|
33
34
|
}
|
|
34
35
|
|
|
@@ -252,7 +253,11 @@ export interface EmailMessage {
|
|
|
252
253
|
export interface EmailModel extends MustacheModel {
|
|
253
254
|
attachments?: Attachment[];
|
|
254
255
|
subjectTemplate?: Template;
|
|
255
|
-
|
|
256
|
+
tos?: string[];
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
export interface EmailStylingModel extends MustacheModel {
|
|
260
|
+
htmlContent?: string;
|
|
256
261
|
}
|
|
257
262
|
|
|
258
263
|
export interface EncryptValue {
|
|
@@ -395,6 +400,7 @@ export interface GetRide {
|
|
|
395
400
|
}
|
|
396
401
|
|
|
397
402
|
export interface GetRideLog {
|
|
403
|
+
rideId?: string;
|
|
398
404
|
}
|
|
399
405
|
|
|
400
406
|
export interface GetTeam {
|
package/package.json
CHANGED