@moxi.gmbh/moxi-typescriptmodels 0.0.891 → 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.
Files changed (2) hide show
  1. package/common.d.ts +7 -1
  2. 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
- to?: string;
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
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@moxi.gmbh/moxi-typescriptmodels",
3
- "version": "0.0.891",
3
+ "version": "0.0.911",
4
4
  "types": "common.d.ts"
5
5
  }