rategame-shared 1.1.252 → 1.1.254

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.
@@ -899,6 +899,29 @@ export declare const playerVoteSchema: z.ZodObject<{
899
899
  banned: z.ZodOptional<z.ZodBoolean>;
900
900
  lowercaseUsername: z.ZodOptional<z.ZodString>;
901
901
  headerColor: z.ZodOptional<z.ZodString>;
902
+ profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
903
+ profileCompletionStatus: z.ZodOptional<z.ZodObject<{
904
+ profilePicture: z.ZodBoolean;
905
+ bio: z.ZodBoolean;
906
+ favoriteTeam: z.ZodBoolean;
907
+ pinnedRatings: z.ZodBoolean;
908
+ favoriteGames: z.ZodBoolean;
909
+ gradientColor: z.ZodBoolean;
910
+ }, "strip", z.ZodTypeAny, {
911
+ bio: boolean;
912
+ profilePicture: boolean;
913
+ favoriteTeam: boolean;
914
+ pinnedRatings: boolean;
915
+ favoriteGames: boolean;
916
+ gradientColor: boolean;
917
+ }, {
918
+ bio: boolean;
919
+ profilePicture: boolean;
920
+ favoriteTeam: boolean;
921
+ pinnedRatings: boolean;
922
+ favoriteGames: boolean;
923
+ gradientColor: boolean;
924
+ }>>;
902
925
  }, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
903
926
  id: string;
904
927
  email: string;
@@ -1931,6 +1954,29 @@ export declare const voteSubmissionDtoSchema: z.ZodObject<{
1931
1954
  banned: z.ZodOptional<z.ZodBoolean>;
1932
1955
  lowercaseUsername: z.ZodOptional<z.ZodString>;
1933
1956
  headerColor: z.ZodOptional<z.ZodString>;
1957
+ profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
1958
+ profileCompletionStatus: z.ZodOptional<z.ZodObject<{
1959
+ profilePicture: z.ZodBoolean;
1960
+ bio: z.ZodBoolean;
1961
+ favoriteTeam: z.ZodBoolean;
1962
+ pinnedRatings: z.ZodBoolean;
1963
+ favoriteGames: z.ZodBoolean;
1964
+ gradientColor: z.ZodBoolean;
1965
+ }, "strip", z.ZodTypeAny, {
1966
+ bio: boolean;
1967
+ profilePicture: boolean;
1968
+ favoriteTeam: boolean;
1969
+ pinnedRatings: boolean;
1970
+ favoriteGames: boolean;
1971
+ gradientColor: boolean;
1972
+ }, {
1973
+ bio: boolean;
1974
+ profilePicture: boolean;
1975
+ favoriteTeam: boolean;
1976
+ pinnedRatings: boolean;
1977
+ favoriteGames: boolean;
1978
+ gradientColor: boolean;
1979
+ }>>;
1934
1980
  }, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
1935
1981
  id: string;
1936
1982
  email: string;
@@ -3447,6 +3493,29 @@ export declare const userVoteResponseDtoSchema: z.ZodObject<{
3447
3493
  banned: z.ZodOptional<z.ZodBoolean>;
3448
3494
  lowercaseUsername: z.ZodOptional<z.ZodString>;
3449
3495
  headerColor: z.ZodOptional<z.ZodString>;
3496
+ profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
3497
+ profileCompletionStatus: z.ZodOptional<z.ZodObject<{
3498
+ profilePicture: z.ZodBoolean;
3499
+ bio: z.ZodBoolean;
3500
+ favoriteTeam: z.ZodBoolean;
3501
+ pinnedRatings: z.ZodBoolean;
3502
+ favoriteGames: z.ZodBoolean;
3503
+ gradientColor: z.ZodBoolean;
3504
+ }, "strip", z.ZodTypeAny, {
3505
+ bio: boolean;
3506
+ profilePicture: boolean;
3507
+ favoriteTeam: boolean;
3508
+ pinnedRatings: boolean;
3509
+ favoriteGames: boolean;
3510
+ gradientColor: boolean;
3511
+ }, {
3512
+ bio: boolean;
3513
+ profilePicture: boolean;
3514
+ favoriteTeam: boolean;
3515
+ pinnedRatings: boolean;
3516
+ favoriteGames: boolean;
3517
+ gradientColor: boolean;
3518
+ }>>;
3450
3519
  }, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
3451
3520
  id: string;
3452
3521
  email: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rategame-shared",
3
- "version": "1.1.252",
3
+ "version": "1.1.254",
4
4
  "description": "This package contains shared resources for the Rate Game project.",
5
5
  "types": "./dist/index.d.ts",
6
6
  "main": "./dist/index.js",