@strong-together/shared 1.0.5 → 1.0.6

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 CHANGED
@@ -1,4 +1,4 @@
1
- # @strong-together/shared (v1.0.3)
1
+ # @strong-together/shared (v1.0.6)
2
2
 
3
3
  Shared TypeScript library for the Strong Together ecosystem.
4
4
 
package/dist/index.d.mts CHANGED
@@ -2250,19 +2250,19 @@ declare const oAuthLoginResponseSchema: z$1.ZodObject<{
2250
2250
  message: z$1.ZodString;
2251
2251
  user: z$1.ZodString;
2252
2252
  accessToken: z$1.ZodString;
2253
- refreshToken: z$1.ZodNullable<z$1.ZodString>;
2253
+ refreshToken: z$1.ZodString;
2254
2254
  missingFields: z$1.ZodNullable<z$1.ZodArray<z$1.ZodString, "many">>;
2255
2255
  }, "strip", z$1.ZodTypeAny, {
2256
2256
  message: string;
2257
2257
  user: string;
2258
2258
  accessToken: string;
2259
- refreshToken: string | null;
2259
+ refreshToken: string;
2260
2260
  missingFields: string[] | null;
2261
2261
  }, {
2262
2262
  message: string;
2263
2263
  user: string;
2264
2264
  accessToken: string;
2265
- refreshToken: string | null;
2265
+ refreshToken: string;
2266
2266
  missingFields: string[] | null;
2267
2267
  }>;
2268
2268
  declare const proceedLoginResponseSchema: z$1.ZodObject<{
package/dist/index.d.ts CHANGED
@@ -2250,19 +2250,19 @@ declare const oAuthLoginResponseSchema: z$1.ZodObject<{
2250
2250
  message: z$1.ZodString;
2251
2251
  user: z$1.ZodString;
2252
2252
  accessToken: z$1.ZodString;
2253
- refreshToken: z$1.ZodNullable<z$1.ZodString>;
2253
+ refreshToken: z$1.ZodString;
2254
2254
  missingFields: z$1.ZodNullable<z$1.ZodArray<z$1.ZodString, "many">>;
2255
2255
  }, "strip", z$1.ZodTypeAny, {
2256
2256
  message: string;
2257
2257
  user: string;
2258
2258
  accessToken: string;
2259
- refreshToken: string | null;
2259
+ refreshToken: string;
2260
2260
  missingFields: string[] | null;
2261
2261
  }, {
2262
2262
  message: string;
2263
2263
  user: string;
2264
2264
  accessToken: string;
2265
- refreshToken: string | null;
2265
+ refreshToken: string;
2266
2266
  missingFields: string[] | null;
2267
2267
  }>;
2268
2268
  declare const proceedLoginResponseSchema: z$1.ZodObject<{
package/dist/index.js CHANGED
@@ -516,7 +516,7 @@ var oAuthLoginResponseSchema = import_zod14.z.object({
516
516
  message: import_zod14.z.string(),
517
517
  user: import_zod14.z.string(),
518
518
  accessToken: import_zod14.z.string(),
519
- refreshToken: import_zod14.z.string().nullable(),
519
+ refreshToken: import_zod14.z.string(),
520
520
  missingFields: import_zod14.z.array(import_zod14.z.string()).nullable()
521
521
  });
522
522
  var proceedLoginResponseSchema = loginResponseSchema;
package/dist/index.mjs CHANGED
@@ -410,7 +410,7 @@ var oAuthLoginResponseSchema = z14.object({
410
410
  message: z14.string(),
411
411
  user: z14.string(),
412
412
  accessToken: z14.string(),
413
- refreshToken: z14.string().nullable(),
413
+ refreshToken: z14.string(),
414
414
  missingFields: z14.array(z14.string()).nullable()
415
415
  });
416
416
  var proceedLoginResponseSchema = loginResponseSchema;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@strong-together/shared",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "main": "./dist/index.js",
5
5
  "module": "./dist/index.mjs",
6
6
  "types": "./dist/index.d.ts",