@moxi.gmbh/moxi-typescriptmodels 0.0.861 → 0.0.871
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 +6 -1
- package/package.json +1 -1
package/common.d.ts
CHANGED
|
@@ -541,6 +541,11 @@ export interface RemoveTeamPermission extends AccountPermissionCommand {
|
|
|
541
541
|
teamId?: string;
|
|
542
542
|
}
|
|
543
543
|
|
|
544
|
+
export interface ReportIssue {
|
|
545
|
+
data?: { [index: string]: string };
|
|
546
|
+
issue?: string;
|
|
547
|
+
}
|
|
548
|
+
|
|
544
549
|
export interface RequestDrivePermission extends AccountUpdate {
|
|
545
550
|
drivePermissionId?: string;
|
|
546
551
|
info?: DrivePermissionInfo;
|
|
@@ -829,7 +834,7 @@ export type RightUnion = RoleRight;
|
|
|
829
834
|
|
|
830
835
|
export type Service = "rideplanning" | "driveplanning";
|
|
831
836
|
|
|
832
|
-
export type SlackChannel = "admin_monitoring" | "admin_respond_immediately" | "admin_respond_within_hour";
|
|
837
|
+
export type SlackChannel = "admin_monitoring" | "admin_respond_immediately" | "admin_respond_within_hour" | "admin_reported_issues";
|
|
833
838
|
|
|
834
839
|
export type TeamRole = "driveplanner" | "rideplanner";
|
|
835
840
|
|
package/package.json
CHANGED