@jealous-robot-dev/shared-types-responses 1.39.7 → 1.40.0
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.
@@ -1,4 +1,4 @@
|
|
1
|
-
import { AuthenticationProviders } from '@jealous-robot-dev/drophr-common';
|
1
|
+
import { AuthenticationProviders, DropHRUserAgents, UserDevice } from '@jealous-robot-dev/drophr-common';
|
2
2
|
export interface ShortAuthFormData {
|
3
3
|
UID: string;
|
4
4
|
email: string;
|
@@ -19,7 +19,8 @@ export interface AuthenticationDevice {
|
|
19
19
|
version: string;
|
20
20
|
};
|
21
21
|
userAgent: string;
|
22
|
-
|
22
|
+
agentType: UserDevice;
|
23
|
+
DropHRUserAgent: DropHRUserAgents;
|
23
24
|
}
|
24
25
|
export declare enum PositiveAuthResponse {
|
25
26
|
NEW_USER = "NEW_USER",
|
@@ -1,5 +1,4 @@
|
|
1
|
-
import { UITHEME, TextDirection, DropHRUserAgents, AuthenticationProviders, Currency, Locale } from '@jealous-robot-dev/drophr-common';
|
2
|
-
import { DropWebEnv, Pages } from '@jealous-robot-dev/shared-ui-lib';
|
1
|
+
import { UITHEME, TextDirection, DropHRUserAgents, AuthenticationProviders, Currency, Locale, DropWebEnv, Pages } from '@jealous-robot-dev/drophr-common';
|
3
2
|
import { MainPhrases } from '@jealous-robot-dev/shared-phrases';
|
4
3
|
import { QueryResponse } from './common';
|
5
4
|
import { UrgentEvent } from '..';
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { Channels,
|
1
|
+
import { Channels, UserNotificationTopicID, UserNotificationCategories } from '@jealous-robot-dev/drophr-common';
|
2
2
|
import { UserNotificationPhrases } from '@jealous-robot-dev/shared-phrases';
|
3
3
|
import { QueryResponse } from '../common';
|
4
4
|
export interface UserNotificationsDataPreferences {
|
@@ -7,7 +7,8 @@ export interface UserNotificationsDataPreferences {
|
|
7
7
|
canDisable: boolean;
|
8
8
|
}
|
9
9
|
export interface UserNotificationDataSetting {
|
10
|
-
id:
|
10
|
+
id: UserNotificationTopicID;
|
11
|
+
category: UserNotificationCategories;
|
11
12
|
preferences: UserNotificationsDataPreferences[];
|
12
13
|
}
|
13
14
|
export interface UserNotificationData {
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@jealous-robot-dev/shared-types-responses",
|
3
|
-
"version": "1.
|
3
|
+
"version": "1.40.0",
|
4
4
|
"description": "",
|
5
5
|
"main": "build/index.js",
|
6
6
|
"types": "build/index.d.ts",
|
@@ -24,8 +24,7 @@
|
|
24
24
|
"typescript": "^3.8.3"
|
25
25
|
},
|
26
26
|
"dependencies": {
|
27
|
-
"@jealous-robot-dev/drophr-common": "^1.
|
28
|
-
"@jealous-robot-dev/shared-phrases": "^1.
|
29
|
-
"@jealous-robot-dev/shared-ui-lib": "^1.11.1"
|
27
|
+
"@jealous-robot-dev/drophr-common": "^1.8.0",
|
28
|
+
"@jealous-robot-dev/shared-phrases": "^1.6.0"
|
30
29
|
}
|
31
|
-
}
|
30
|
+
}
|