lancer-shared 1.2.175 → 1.2.176
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/bundle.cjs.js
CHANGED
|
@@ -13005,7 +13005,7 @@ const updateOrganizationProfileSchema = organizationProfileSchema
|
|
|
13005
13005
|
id: stringType(),
|
|
13006
13006
|
});
|
|
13007
13007
|
const createOrganizationProfileSchema = organizationProfileSchema.pick({
|
|
13008
|
-
|
|
13008
|
+
title: true,
|
|
13009
13009
|
});
|
|
13010
13010
|
const createOrganizationSchema = organizationSchema.pick({
|
|
13011
13011
|
name: true,
|
|
@@ -643,10 +643,10 @@ export declare const createOrganizationProfileSchema: z.ZodObject<Pick<{
|
|
|
643
643
|
description: string;
|
|
644
644
|
}>, "many">;
|
|
645
645
|
createdAt: z.ZodNumber;
|
|
646
|
-
}, "
|
|
647
|
-
|
|
646
|
+
}, "title">, "strip", z.ZodTypeAny, {
|
|
647
|
+
title: string;
|
|
648
648
|
}, {
|
|
649
|
-
|
|
649
|
+
title: string;
|
|
650
650
|
}>;
|
|
651
651
|
export type OrganizationProfile = z.infer<typeof organizationProfileSchema>;
|
|
652
652
|
export type UpdateOrganizationProfile = z.infer<typeof updateOrganizationProfileSchema>;
|