@nomalism-com/types 0.40.44 → 0.40.46

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
@@ -4445,9 +4445,10 @@ var senEmailBodyKeys = {
4445
4445
  budget_options: joi80.object().keys({
4446
4446
  retificacao: joi80.boolean().required(),
4447
4447
  retificacao_aconselhamento: joi80.boolean().required(),
4448
- montagem: joi80.boolean().required()
4448
+ montagem: joi80.boolean().required(),
4449
+ multimedia_ids: joi80.array().items(joi80.string().uuid()).optional().allow([])
4449
4450
  }),
4450
- address: joi80.string().optional(),
4451
+ address: joi80.string().optional().allow(""),
4451
4452
  email: joi80.string().trim(true).lowercase().email({ tlds: { allow: false } })
4452
4453
  };
4453
4454
  var sendEmailBody = joi80.object().keys(senEmailBodyKeys).messages(messages);
package/dist/index.js CHANGED
@@ -4445,9 +4445,10 @@ var senEmailBodyKeys = {
4445
4445
  budget_options: joi80.object().keys({
4446
4446
  retificacao: joi80.boolean().required(),
4447
4447
  retificacao_aconselhamento: joi80.boolean().required(),
4448
- montagem: joi80.boolean().required()
4448
+ montagem: joi80.boolean().required(),
4449
+ multimedia_ids: joi80.array().items(joi80.string().uuid()).optional().allow([])
4449
4450
  }),
4450
- address: joi80.string().optional(),
4451
+ address: joi80.string().optional().allow(""),
4451
4452
  email: joi80.string().trim(true).lowercase().email({ tlds: { allow: false } })
4452
4453
  };
4453
4454
  var sendEmailBody = joi80.object().keys(senEmailBodyKeys).messages(messages);
@@ -12,6 +12,7 @@ export type IBudgetOptionsType = {
12
12
  retificacao: boolean;
13
13
  retificacao_aconselhamento: boolean;
14
14
  montagem: boolean;
15
+ multimedia_ids: string[];
15
16
  };
16
17
  export type IProjectInfoType = (typeof IProjectInfoTypeEnum)[keyof typeof IProjectInfoTypeEnum];
17
18
  export declare const projectInfoTypes: string[];
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.40.44",
4
+ "version": "0.40.46",
5
5
  "author": "Nomalism <it.nomalism@gmail.com> (https://nomalism.com/)",
6
6
  "license": "UNLICENSED",
7
7
  "type": "module",