@tolinax/ayoune-interfaces 2024.2.1 → 2024.2.2

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.
@@ -615,6 +615,6 @@ export * from "./IPimSelectionsSettings";
615
615
  export * from "./IAgent";
616
616
  export * from "./IRecipient";
617
617
  export * from "./IReportEntry";
618
- export { ILighthouseResults } from "./ILighthouseResults";
619
- export { IBrandBiddingInfo } from "./IBrandBiddingInfo";
620
- export { IImageEntry } from "./IImageEntry";
618
+ export * from "./ILighthouseResults";
619
+ export * from "./IBrandBiddingInfo";
620
+ export * from "./IImageEntry";
@@ -631,3 +631,6 @@ __exportStar(require("./IPimSelectionsSettings"), exports);
631
631
  __exportStar(require("./IAgent"), exports);
632
632
  __exportStar(require("./IRecipient"), exports);
633
633
  __exportStar(require("./IReportEntry"), exports);
634
+ __exportStar(require("./ILighthouseResults"), exports);
635
+ __exportStar(require("./IBrandBiddingInfo"), exports);
636
+ __exportStar(require("./IImageEntry"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tolinax/ayoune-interfaces",
3
- "version": "2024.2.1",
3
+ "version": "2024.2.2",
4
4
  "description": "Houses TypeScript interfaces for aYOUne",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -615,6 +615,6 @@ export * from "./IPimSelectionsSettings";
615
615
  export * from "./IAgent";
616
616
  export * from "./IRecipient";
617
617
  export * from "./IReportEntry";
618
- export { ILighthouseResults } from "./ILighthouseResults";
619
- export { IBrandBiddingInfo } from "./IBrandBiddingInfo";
620
- export { IImageEntry } from "./IImageEntry";
618
+ export * from "./ILighthouseResults";
619
+ export * from "./IBrandBiddingInfo";
620
+ export * from "./IImageEntry";
package/src/types.d.ts CHANGED
@@ -2,5 +2,5 @@ import { Types } from "mongoose";
2
2
 
3
3
  declare global {
4
4
  // eslint-disable-next-line no-unused-vars
5
- type ObjectId = string | Types.ObjectId | any;
5
+ export type ObjectId = string | Types.ObjectId | any;
6
6
  }