@jealous-robot-dev/shared-types-responses 1.18.12 → 1.18.16

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.
@@ -30,6 +30,7 @@ export declare enum CommonErrorReponses {
30
30
  export declare enum Cookies {
31
31
  CSFR_TOKEN = "_csrf",
32
32
  DEVICE_ID = "_uaid",
33
+ SESSION_PASS = "_usp",
33
34
  REMEMBERED_USER = "_uc",
34
35
  LOCALE_ID = "locale_id",
35
36
  CURRENCY = "currency",
@@ -27,6 +27,7 @@ var Cookies;
27
27
  (function (Cookies) {
28
28
  Cookies["CSFR_TOKEN"] = "_csrf";
29
29
  Cookies["DEVICE_ID"] = "_uaid";
30
+ Cookies["SESSION_PASS"] = "_usp";
30
31
  Cookies["REMEMBERED_USER"] = "_uc";
31
32
  Cookies["LOCALE_ID"] = "locale_id";
32
33
  Cookies["CURRENCY"] = "currency";
@@ -96,6 +96,7 @@ export interface WelcomeBackPhrases {
96
96
  };
97
97
  }
98
98
  export interface ShortAuthFormData {
99
+ UID: string;
99
100
  email: string;
100
101
  ppu?: string;
101
102
  firstname: string;
@@ -123,5 +124,6 @@ export declare enum PositiveAuthResponse {
123
124
  NEW_USER = "NEW_USER",
124
125
  WELCOME_BACK = "WELCOME_BACK",
125
126
  VERIFY_DEVICE = "VERIFY_DEVICE",
127
+ VERIFY_EMAIL = "VERIFY_EMAIL",
126
128
  PASS = "PASS"
127
129
  }
@@ -41,5 +41,6 @@ var PositiveAuthResponse;
41
41
  PositiveAuthResponse["NEW_USER"] = "NEW_USER";
42
42
  PositiveAuthResponse["WELCOME_BACK"] = "WELCOME_BACK";
43
43
  PositiveAuthResponse["VERIFY_DEVICE"] = "VERIFY_DEVICE";
44
+ PositiveAuthResponse["VERIFY_EMAIL"] = "VERIFY_EMAIL";
44
45
  PositiveAuthResponse["PASS"] = "PASS";
45
46
  })(PositiveAuthResponse = exports.PositiveAuthResponse || (exports.PositiveAuthResponse = {}));
@@ -86,6 +86,7 @@ export declare enum Paths {
86
86
  export interface CommonData {
87
87
  currentUser: MainUserData | null;
88
88
  no_consent?: boolean;
89
+ device_id: string | null;
89
90
  page: Pages;
90
91
  direction: TextDirection;
91
92
  preferences: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jealous-robot-dev/shared-types-responses",
3
- "version": "1.18.12",
3
+ "version": "1.18.16",
4
4
  "description": "",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",