@zyacreatives/shared 2.5.11 → 2.5.12
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/constants.d.ts +1 -0
- package/dist/constants.js +1 -0
- package/dist/schemas/notification.d.ts +4 -0
- package/package.json +1 -1
- package/src/constants.ts +1 -0
package/dist/constants.d.ts
CHANGED
|
@@ -257,6 +257,7 @@ export declare const NOTIFICATION_TYPES: {
|
|
|
257
257
|
readonly PROJECT_FEATURED: "Project Featured";
|
|
258
258
|
readonly PROJECT_TAG: "Project Tag";
|
|
259
259
|
readonly MENTION: "Mention";
|
|
260
|
+
readonly PRODUCT_APPROVAL: "Product Approval";
|
|
260
261
|
readonly MARKETPLACE_DROP: "Marketplace Drop";
|
|
261
262
|
};
|
|
262
263
|
export declare const VENTURE_STAGES: {
|
package/dist/constants.js
CHANGED
|
@@ -16,6 +16,7 @@ export declare const NotificationEntitySchema: z.ZodObject<{
|
|
|
16
16
|
readonly PROJECT_FEATURED: "Project Featured";
|
|
17
17
|
readonly PROJECT_TAG: "Project Tag";
|
|
18
18
|
readonly MENTION: "Mention";
|
|
19
|
+
readonly PRODUCT_APPROVAL: "Product Approval";
|
|
19
20
|
readonly MARKETPLACE_DROP: "Marketplace Drop";
|
|
20
21
|
}>;
|
|
21
22
|
entityId: z.ZodOptional<z.ZodCUID2>;
|
|
@@ -69,6 +70,7 @@ export declare const NotificationDetailsEntitySchema: z.ZodObject<{
|
|
|
69
70
|
readonly PROJECT_FEATURED: "Project Featured";
|
|
70
71
|
readonly PROJECT_TAG: "Project Tag";
|
|
71
72
|
readonly MENTION: "Mention";
|
|
73
|
+
readonly PRODUCT_APPROVAL: "Product Approval";
|
|
72
74
|
readonly MARKETPLACE_DROP: "Marketplace Drop";
|
|
73
75
|
}>;
|
|
74
76
|
entityId: z.ZodOptional<z.ZodCUID2>;
|
|
@@ -144,6 +146,7 @@ export declare const ListNotificationsInputSchema: z.ZodObject<{
|
|
|
144
146
|
readonly PROJECT_FEATURED: "Project Featured";
|
|
145
147
|
readonly PROJECT_TAG: "Project Tag";
|
|
146
148
|
readonly MENTION: "Mention";
|
|
149
|
+
readonly PRODUCT_APPROVAL: "Product Approval";
|
|
147
150
|
readonly MARKETPLACE_DROP: "Marketplace Drop";
|
|
148
151
|
}>>;
|
|
149
152
|
cursor: z.ZodOptional<z.ZodString>;
|
|
@@ -167,6 +170,7 @@ export declare const ListNotificationsOutputSchema: z.ZodObject<{
|
|
|
167
170
|
readonly PROJECT_FEATURED: "Project Featured";
|
|
168
171
|
readonly PROJECT_TAG: "Project Tag";
|
|
169
172
|
readonly MENTION: "Mention";
|
|
173
|
+
readonly PRODUCT_APPROVAL: "Product Approval";
|
|
170
174
|
readonly MARKETPLACE_DROP: "Marketplace Drop";
|
|
171
175
|
}>;
|
|
172
176
|
entityId: z.ZodOptional<z.ZodCUID2>;
|
package/package.json
CHANGED
package/src/constants.ts
CHANGED