hh-contracts 0.0.48 → 0.0.49

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.
@@ -37,5 +37,5 @@ exports.PermissionWithTranslationsSchema = exports.PermissionPersistedSchema.ext
37
37
  translations: common_1.TranslationsSchema.pick({ name: true, description: true }),
38
38
  });
39
39
  exports.PermissionListItemSchema = exports.PermissionPersistedSchema.extend({
40
- localizedName: zod_1.z.string().nullable(),
40
+ name: zod_1.z.string().nullable(),
41
41
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hh-contracts",
3
- "version": "0.0.48",
3
+ "version": "0.0.49",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "scripts": {
@@ -43,6 +43,6 @@ export const PermissionWithTranslationsSchema = PermissionPersistedSchema.extend
43
43
  export type TPermissionWithTranslations = z.infer<typeof PermissionWithTranslationsSchema>;
44
44
 
45
45
  export const PermissionListItemSchema = PermissionPersistedSchema.extend({
46
- localizedName: z.string().nullable(),
46
+ name: z.string().nullable(),
47
47
  });
48
48
  export type TPermissionListItem = z.infer<typeof PermissionListItemSchema>;