@nomalism-com/types 0.46.5 → 0.46.6

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
@@ -3031,6 +3031,7 @@ var updateStoreOperatorQueryKeys = {
3031
3031
  main_persona_name: joi45.string().allow(null, "").optional(),
3032
3032
  main_persona_email: joi45.string().email({ tlds: { allow: false } }).allow(null, "").optional(),
3033
3033
  password: joi45.string().allow(null, "").optional(),
3034
+ pin: joi45.string().optional(),
3034
3035
  inactive: joi45.boolean().optional(),
3035
3036
  superuser: joi45.boolean().optional(),
3036
3037
  default_theme: joi45.boolean().optional()
package/dist/index.js CHANGED
@@ -3031,6 +3031,7 @@ var updateStoreOperatorQueryKeys = {
3031
3031
  main_persona_name: joi45.string().allow(null, "").optional(),
3032
3032
  main_persona_email: joi45.string().email({ tlds: { allow: false } }).allow(null, "").optional(),
3033
3033
  password: joi45.string().allow(null, "").optional(),
3034
+ pin: joi45.string().optional(),
3034
3035
  inactive: joi45.boolean().optional(),
3035
3036
  superuser: joi45.boolean().optional(),
3036
3037
  default_theme: joi45.boolean().optional()
@@ -19,6 +19,7 @@ export interface IUpdateRequest {
19
19
  main_persona_name?: string | null;
20
20
  main_persona_email?: string | null;
21
21
  password?: string | null;
22
+ pin?: string;
22
23
  inactive?: boolean;
23
24
  superuser?: boolean;
24
25
  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.46.5",
4
+ "version": "0.46.6",
5
5
  "author": "Nomalism <it.nomalism@gmail.com> (https://nomalism.com/)",
6
6
  "license": "UNLICENSED",
7
7
  "type": "module",