@nomalism-com/types 0.39.32 → 0.39.33

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/index.cjs CHANGED
@@ -3170,7 +3170,7 @@ var updateStoreOperatorQueryKeys = {
3170
3170
  main_persona_email: joi48.string().email({ tlds: { allow: false } }).allow(null, "").optional(),
3171
3171
  user_account: joi48.string().allow(null, "").optional(),
3172
3172
  password: joi48.string().allow(null, "").optional(),
3173
- pin: joi48.string().allow(null, "").optional(),
3173
+ pin: joi48.string().optional(),
3174
3174
  inactive: joi48.boolean().optional(),
3175
3175
  superuser: joi48.boolean().optional(),
3176
3176
  default_theme: joi48.boolean().optional()
package/dist/index.js CHANGED
@@ -3170,7 +3170,7 @@ var updateStoreOperatorQueryKeys = {
3170
3170
  main_persona_email: joi48.string().email({ tlds: { allow: false } }).allow(null, "").optional(),
3171
3171
  user_account: joi48.string().allow(null, "").optional(),
3172
3172
  password: joi48.string().allow(null, "").optional(),
3173
- pin: joi48.string().allow(null, "").optional(),
3173
+ pin: joi48.string().optional(),
3174
3174
  inactive: joi48.boolean().optional(),
3175
3175
  superuser: joi48.boolean().optional(),
3176
3176
  default_theme: joi48.boolean().optional()
@@ -22,7 +22,7 @@ export interface IUpdateRequest {
22
22
  main_persona_email?: string | null;
23
23
  user_account?: string | null;
24
24
  password?: string | null;
25
- pin?: string | null;
25
+ pin?: string;
26
26
  inactive?: boolean;
27
27
  superuser?: boolean;
28
28
  default_theme?: boolean;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@nomalism-com/types",
3
3
  "description": "A nomalism package with all necessary types and validations for developing APIs",
4
- "version": "0.39.32",
4
+ "version": "0.39.33",
5
5
  "author": "Nomalism <it.nomalism@gmail.com> (https://nomalism.com/)",
6
6
  "license": "UNLICENSED",
7
7
  "type": "module",