@strong-together/shared 1.0.5 → 1.1.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.
- package/README.md +1 -1
- package/dist/index.d.mts +4 -3
- package/dist/index.d.ts +4 -3
- package/dist/index.js +666 -666
- package/dist/index.mjs +559 -559
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/index.d.mts
CHANGED
|
@@ -507,6 +507,7 @@ interface UserEntity {
|
|
|
507
507
|
token_version: number;
|
|
508
508
|
is_verified: boolean;
|
|
509
509
|
auth_provider: string;
|
|
510
|
+
last_login: string;
|
|
510
511
|
}
|
|
511
512
|
|
|
512
513
|
interface AccessTokenPayload {
|
|
@@ -2250,19 +2251,19 @@ declare const oAuthLoginResponseSchema: z$1.ZodObject<{
|
|
|
2250
2251
|
message: z$1.ZodString;
|
|
2251
2252
|
user: z$1.ZodString;
|
|
2252
2253
|
accessToken: z$1.ZodString;
|
|
2253
|
-
refreshToken: z$1.
|
|
2254
|
+
refreshToken: z$1.ZodString;
|
|
2254
2255
|
missingFields: z$1.ZodNullable<z$1.ZodArray<z$1.ZodString, "many">>;
|
|
2255
2256
|
}, "strip", z$1.ZodTypeAny, {
|
|
2256
2257
|
message: string;
|
|
2257
2258
|
user: string;
|
|
2258
2259
|
accessToken: string;
|
|
2259
|
-
refreshToken: string
|
|
2260
|
+
refreshToken: string;
|
|
2260
2261
|
missingFields: string[] | null;
|
|
2261
2262
|
}, {
|
|
2262
2263
|
message: string;
|
|
2263
2264
|
user: string;
|
|
2264
2265
|
accessToken: string;
|
|
2265
|
-
refreshToken: string
|
|
2266
|
+
refreshToken: string;
|
|
2266
2267
|
missingFields: string[] | null;
|
|
2267
2268
|
}>;
|
|
2268
2269
|
declare const proceedLoginResponseSchema: z$1.ZodObject<{
|
package/dist/index.d.ts
CHANGED
|
@@ -507,6 +507,7 @@ interface UserEntity {
|
|
|
507
507
|
token_version: number;
|
|
508
508
|
is_verified: boolean;
|
|
509
509
|
auth_provider: string;
|
|
510
|
+
last_login: string;
|
|
510
511
|
}
|
|
511
512
|
|
|
512
513
|
interface AccessTokenPayload {
|
|
@@ -2250,19 +2251,19 @@ declare const oAuthLoginResponseSchema: z$1.ZodObject<{
|
|
|
2250
2251
|
message: z$1.ZodString;
|
|
2251
2252
|
user: z$1.ZodString;
|
|
2252
2253
|
accessToken: z$1.ZodString;
|
|
2253
|
-
refreshToken: z$1.
|
|
2254
|
+
refreshToken: z$1.ZodString;
|
|
2254
2255
|
missingFields: z$1.ZodNullable<z$1.ZodArray<z$1.ZodString, "many">>;
|
|
2255
2256
|
}, "strip", z$1.ZodTypeAny, {
|
|
2256
2257
|
message: string;
|
|
2257
2258
|
user: string;
|
|
2258
2259
|
accessToken: string;
|
|
2259
|
-
refreshToken: string
|
|
2260
|
+
refreshToken: string;
|
|
2260
2261
|
missingFields: string[] | null;
|
|
2261
2262
|
}, {
|
|
2262
2263
|
message: string;
|
|
2263
2264
|
user: string;
|
|
2264
2265
|
accessToken: string;
|
|
2265
|
-
refreshToken: string
|
|
2266
|
+
refreshToken: string;
|
|
2266
2267
|
missingFields: string[] | null;
|
|
2267
2268
|
}>;
|
|
2268
2269
|
declare const proceedLoginResponseSchema: z$1.ZodObject<{
|