connectfy-shared 0.0.85 → 0.0.86
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/dist/index.cjs +12 -2
- package/dist/index.d.cts +12 -2
- package/dist/index.d.ts +12 -2
- package/dist/index.mjs +12 -2
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -9571,8 +9571,18 @@ var EXPIRE_DATES = {
|
|
|
9571
9571
|
}
|
|
9572
9572
|
};
|
|
9573
9573
|
var CACHE_KEYS = {
|
|
9574
|
-
|
|
9575
|
-
|
|
9574
|
+
AUTH: {
|
|
9575
|
+
USER: (id) => `user:${id}`,
|
|
9576
|
+
ACCESS_TOKEN: (token) => `access_token:${token}`
|
|
9577
|
+
},
|
|
9578
|
+
ACCOUNT: {
|
|
9579
|
+
PROFILE: (userId) => `profile:${userId}`,
|
|
9580
|
+
SETTINGS: {
|
|
9581
|
+
GENERAL_SETTINGS: (userId) => `general_settings:${userId}`,
|
|
9582
|
+
NOTIFICATION_SETTINGS: (userId) => `notification_settings:${userId}`,
|
|
9583
|
+
PRIVACY_SETTINGS: (userId) => `privacy_settings:${userId}`
|
|
9584
|
+
}
|
|
9585
|
+
}
|
|
9576
9586
|
};
|
|
9577
9587
|
var COUNTRIES = [
|
|
9578
9588
|
{
|
package/dist/index.d.cts
CHANGED
|
@@ -93,8 +93,18 @@ declare const EXPIRE_DATES: {
|
|
|
93
93
|
};
|
|
94
94
|
};
|
|
95
95
|
declare const CACHE_KEYS: {
|
|
96
|
-
|
|
97
|
-
|
|
96
|
+
AUTH: {
|
|
97
|
+
USER: (id: string) => string;
|
|
98
|
+
ACCESS_TOKEN: (token: string) => string;
|
|
99
|
+
};
|
|
100
|
+
ACCOUNT: {
|
|
101
|
+
PROFILE: (userId: string) => string;
|
|
102
|
+
SETTINGS: {
|
|
103
|
+
GENERAL_SETTINGS: (userId: string) => string;
|
|
104
|
+
NOTIFICATION_SETTINGS: (userId: string) => string;
|
|
105
|
+
PRIVACY_SETTINGS: (userId: string) => string;
|
|
106
|
+
};
|
|
107
|
+
};
|
|
98
108
|
};
|
|
99
109
|
declare const COUNTRIES: ICountry[];
|
|
100
110
|
|
package/dist/index.d.ts
CHANGED
|
@@ -93,8 +93,18 @@ declare const EXPIRE_DATES: {
|
|
|
93
93
|
};
|
|
94
94
|
};
|
|
95
95
|
declare const CACHE_KEYS: {
|
|
96
|
-
|
|
97
|
-
|
|
96
|
+
AUTH: {
|
|
97
|
+
USER: (id: string) => string;
|
|
98
|
+
ACCESS_TOKEN: (token: string) => string;
|
|
99
|
+
};
|
|
100
|
+
ACCOUNT: {
|
|
101
|
+
PROFILE: (userId: string) => string;
|
|
102
|
+
SETTINGS: {
|
|
103
|
+
GENERAL_SETTINGS: (userId: string) => string;
|
|
104
|
+
NOTIFICATION_SETTINGS: (userId: string) => string;
|
|
105
|
+
PRIVACY_SETTINGS: (userId: string) => string;
|
|
106
|
+
};
|
|
107
|
+
};
|
|
98
108
|
};
|
|
99
109
|
declare const COUNTRIES: ICountry[];
|
|
100
110
|
|
package/dist/index.mjs
CHANGED
|
@@ -9486,8 +9486,18 @@ var EXPIRE_DATES = {
|
|
|
9486
9486
|
}
|
|
9487
9487
|
};
|
|
9488
9488
|
var CACHE_KEYS = {
|
|
9489
|
-
|
|
9490
|
-
|
|
9489
|
+
AUTH: {
|
|
9490
|
+
USER: (id) => `user:${id}`,
|
|
9491
|
+
ACCESS_TOKEN: (token) => `access_token:${token}`
|
|
9492
|
+
},
|
|
9493
|
+
ACCOUNT: {
|
|
9494
|
+
PROFILE: (userId) => `profile:${userId}`,
|
|
9495
|
+
SETTINGS: {
|
|
9496
|
+
GENERAL_SETTINGS: (userId) => `general_settings:${userId}`,
|
|
9497
|
+
NOTIFICATION_SETTINGS: (userId) => `notification_settings:${userId}`,
|
|
9498
|
+
PRIVACY_SETTINGS: (userId) => `privacy_settings:${userId}`
|
|
9499
|
+
}
|
|
9500
|
+
}
|
|
9491
9501
|
};
|
|
9492
9502
|
var COUNTRIES = [
|
|
9493
9503
|
{
|