@zyacreatives/shared 2.5.10 → 2.5.11
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/schemas/user.d.ts +6 -0
- package/dist/schemas/user.js +6 -1
- package/package.json +1 -1
- package/src/schemas/user.ts +8 -0
package/dist/schemas/user.d.ts
CHANGED
|
@@ -364,6 +364,12 @@ export declare const UserWithPostsEntitySchema: z.ZodObject<{
|
|
|
364
364
|
}, z.core.$strip>>>;
|
|
365
365
|
}, z.core.$strip>>;
|
|
366
366
|
}, z.core.$strip>;
|
|
367
|
+
export declare const UserAuthStatusEntitySchema: z.ZodObject<{
|
|
368
|
+
exists: z.ZodBoolean;
|
|
369
|
+
isOAuthOnly: z.ZodBoolean;
|
|
370
|
+
providers: z.ZodArray<z.ZodString>;
|
|
371
|
+
}, z.core.$strip>;
|
|
372
|
+
export type UserAuthStatusEntity = z.infer<typeof UserAuthStatusEntitySchema>;
|
|
367
373
|
export declare const UserWithProjectLikesEntitySchema: z.ZodObject<{
|
|
368
374
|
userId: z.ZodCUID2;
|
|
369
375
|
projectLikes: z.ZodArray<z.ZodObject<{
|
package/dist/schemas/user.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.UserSearchDocumentSchema = exports.SearchUsersOutputSchema = exports.SearchUsersInputSchema = exports.GetUserActivityOutputSchema = exports.GetUserActivityInputSchema = exports.GetAuthenticatedUserWithUserFollowersOutputSchema = exports.GetAuthenticatedUserWithUserFollowingOutputSchema = exports.GetAuthenticatedUserWithProjectLikesOutputSchema = exports.GetAuthenticatedUserWithProjectBookmarksOutputSchema = exports.GetAuthenticatedUserWithProjectsOutputSchema = exports.GetAuthenticatedUserProfileOutputSchema = exports.GetAuthenticatedUserOutputSchema = exports.GetUserFollowersOutputSchema = exports.GetUserFollowingOutputSchema = exports.GetUserFollowersInputSchema = exports.GetUserFollowingInputSchema = exports.UserWithFollowersEntitySchema = exports.UserWithFollowingEntitySchema = exports.GetUserWithPostBookmarksOutputSchema = exports.GetUserWithProductsOutputSchema = exports.GetUserWithProjectBookmarksOutputSchema = exports.GetUserWithPostBookmarksInputSchema = exports.GetUserWithProjectBookmarksInputSchema = exports.UserWithProductsEntitySchema = exports.UserWithPostBookmarksEntitySchema = exports.UserWithProjectBookmarksEntitySchema = exports.UserWithJobBookmarksOutputSchema = exports.UserWithJobBookmarksInputSchema = exports.UserWithJobBookmarksEntitySchema = exports.UserWithPostLikesEntitySchema = exports.UserWithProjectLikesEntitySchema = exports.UserWithPostsEntitySchema = exports.UserWithProjectsEntitySchema = exports.UserStatsEntitySchema = exports.UserProfileEntitySchema = exports.MinimalUserSchema = exports.UserEntitySchema = void 0;
|
|
3
|
+
exports.UserSearchDocumentSchema = exports.SearchUsersOutputSchema = exports.SearchUsersInputSchema = exports.GetUserActivityOutputSchema = exports.GetUserActivityInputSchema = exports.GetAuthenticatedUserWithUserFollowersOutputSchema = exports.GetAuthenticatedUserWithUserFollowingOutputSchema = exports.GetAuthenticatedUserWithProjectLikesOutputSchema = exports.GetAuthenticatedUserWithProjectBookmarksOutputSchema = exports.GetAuthenticatedUserWithProjectsOutputSchema = exports.GetAuthenticatedUserProfileOutputSchema = exports.GetAuthenticatedUserOutputSchema = exports.GetUserFollowersOutputSchema = exports.GetUserFollowingOutputSchema = exports.GetUserFollowersInputSchema = exports.GetUserFollowingInputSchema = exports.UserWithFollowersEntitySchema = exports.UserWithFollowingEntitySchema = exports.GetUserWithPostBookmarksOutputSchema = exports.GetUserWithProductsOutputSchema = exports.GetUserWithProjectBookmarksOutputSchema = exports.GetUserWithPostBookmarksInputSchema = exports.GetUserWithProjectBookmarksInputSchema = exports.UserWithProductsEntitySchema = exports.UserWithPostBookmarksEntitySchema = exports.UserWithProjectBookmarksEntitySchema = exports.UserWithJobBookmarksOutputSchema = exports.UserWithJobBookmarksInputSchema = exports.UserWithJobBookmarksEntitySchema = exports.UserWithPostLikesEntitySchema = exports.UserWithProjectLikesEntitySchema = exports.UserAuthStatusEntitySchema = exports.UserWithPostsEntitySchema = exports.UserWithProjectsEntitySchema = exports.UserStatsEntitySchema = exports.UserProfileEntitySchema = exports.MinimalUserSchema = exports.UserEntitySchema = void 0;
|
|
4
4
|
const zod_openapi_1 = require("@hono/zod-openapi");
|
|
5
5
|
const constants_1 = require("../constants");
|
|
6
6
|
const project_1 = require("./project");
|
|
@@ -86,6 +86,11 @@ exports.UserWithPostsEntitySchema = zod_openapi_1.z
|
|
|
86
86
|
posts: zod_openapi_1.z.array(post_1.PostWithFilesEntitySchema).openapi({ example: [] }),
|
|
87
87
|
})
|
|
88
88
|
.openapi("UserWithPostsEntity");
|
|
89
|
+
exports.UserAuthStatusEntitySchema = zod_openapi_1.z.object({
|
|
90
|
+
exists: zod_openapi_1.z.boolean(),
|
|
91
|
+
isOAuthOnly: zod_openapi_1.z.boolean(),
|
|
92
|
+
providers: zod_openapi_1.z.array(zod_openapi_1.z.string()),
|
|
93
|
+
});
|
|
89
94
|
// ==========================================
|
|
90
95
|
// 3. LIKES
|
|
91
96
|
// ==========================================
|
package/package.json
CHANGED
package/src/schemas/user.ts
CHANGED
|
@@ -115,6 +115,14 @@ export const UserWithPostsEntitySchema = z
|
|
|
115
115
|
})
|
|
116
116
|
.openapi("UserWithPostsEntity");
|
|
117
117
|
|
|
118
|
+
export const UserAuthStatusEntitySchema = z.object({
|
|
119
|
+
exists: z.boolean(),
|
|
120
|
+
isOAuthOnly: z.boolean(),
|
|
121
|
+
providers: z.array(z.string()),
|
|
122
|
+
});
|
|
123
|
+
|
|
124
|
+
export type UserAuthStatusEntity = z.infer<typeof UserAuthStatusEntitySchema>;
|
|
125
|
+
|
|
118
126
|
// ==========================================
|
|
119
127
|
// 3. LIKES
|
|
120
128
|
// ==========================================
|