@nomalism-com/types 0.40.90 → 0.40.91

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
@@ -4350,8 +4350,10 @@ var findForGmailParamsValidate = joi76.object().keys(findForGmailParamsKeys).mes
4350
4350
  // src/modules/integration/projectInfo/interfaces.ts
4351
4351
  var interfaces_exports39 = {};
4352
4352
  __export(interfaces_exports39, {
4353
+ IProjectInfoOriginTypeEnum: () => IProjectInfoOriginTypeEnum,
4353
4354
  IProjectInfoTypeEnum: () => IProjectInfoTypeEnum,
4354
4355
  LowerName: () => LowerName69,
4356
+ ProjectInfoOriginTypes: () => ProjectInfoOriginTypes,
4355
4357
  Route: () => Route70,
4356
4358
  UpperName: () => UpperName69,
4357
4359
  projectInfoTypes: () => projectInfoTypes
@@ -4365,6 +4367,11 @@ var IProjectInfoTypeEnum = {
4365
4367
  company: "company"
4366
4368
  };
4367
4369
  var projectInfoTypes = Object.keys(IProjectInfoTypeEnum);
4370
+ var IProjectInfoOriginTypeEnum = {
4371
+ website: "website",
4372
+ portal: "portal"
4373
+ };
4374
+ var ProjectInfoOriginTypes = Object.keys(IProjectInfoOriginTypeEnum);
4368
4375
 
4369
4376
  // src/modules/integration/projectInfo/route.schema.ts
4370
4377
  var route_schema_exports76 = {};
package/dist/index.js CHANGED
@@ -4350,8 +4350,10 @@ var findForGmailParamsValidate = joi76.object().keys(findForGmailParamsKeys).mes
4350
4350
  // src/modules/integration/projectInfo/interfaces.ts
4351
4351
  var interfaces_exports39 = {};
4352
4352
  __export(interfaces_exports39, {
4353
+ IProjectInfoOriginTypeEnum: () => IProjectInfoOriginTypeEnum,
4353
4354
  IProjectInfoTypeEnum: () => IProjectInfoTypeEnum,
4354
4355
  LowerName: () => LowerName69,
4356
+ ProjectInfoOriginTypes: () => ProjectInfoOriginTypes,
4355
4357
  Route: () => Route70,
4356
4358
  UpperName: () => UpperName69,
4357
4359
  projectInfoTypes: () => projectInfoTypes
@@ -4365,6 +4367,11 @@ var IProjectInfoTypeEnum = {
4365
4367
  company: "company"
4366
4368
  };
4367
4369
  var projectInfoTypes = Object.keys(IProjectInfoTypeEnum);
4370
+ var IProjectInfoOriginTypeEnum = {
4371
+ website: "website",
4372
+ portal: "portal"
4373
+ };
4374
+ var ProjectInfoOriginTypes = Object.keys(IProjectInfoOriginTypeEnum);
4368
4375
 
4369
4376
  // src/modules/integration/projectInfo/route.schema.ts
4370
4377
  var route_schema_exports76 = {};
@@ -21,6 +21,12 @@ export type IBudgetOptionsType = {
21
21
  export type IProjectInfoType = (typeof IProjectInfoTypeEnum)[keyof typeof IProjectInfoTypeEnum];
22
22
  export declare const projectInfoTypes: string[];
23
23
  export type ISendEmail = Omit<Entity, 'created_at' | 'updated_at' | 'document_header_id' | 'id' | 'email_log'>;
24
+ export declare const IProjectInfoOriginTypeEnum: {
25
+ website: 'website';
26
+ portal: 'portal';
27
+ };
28
+ export type IProjectInfoOriginType = (typeof IProjectInfoOriginTypeEnum)[keyof typeof IProjectInfoOriginTypeEnum];
29
+ export declare const ProjectInfoOriginTypes: string[];
24
30
  export interface IController {
25
31
  sendEmail(data: ISendEmail): Promise<void>;
26
32
  }
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.90",
4
+ "version": "0.40.91",
5
5
  "author": "Nomalism <it.nomalism@gmail.com> (https://nomalism.com/)",
6
6
  "license": "UNLICENSED",
7
7
  "type": "module",