@tolinax/ayoune-interfaces 2024.60.0 → 2024.61.1

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.
@@ -0,0 +1,16 @@
1
+ import { IDefaultFields } from "./IDefaultFields";
2
+ interface IStreamPart {
3
+ name?: string;
4
+ _file?: ObjectId;
5
+ fileId?: string;
6
+ fileName?: string;
7
+ }
8
+ export interface IStream extends IDefaultFields {
9
+ _customerID: ObjectId;
10
+ _clientID?: ObjectId[];
11
+ _subID?: ObjectId[];
12
+ type?: "audio" | "video";
13
+ name?: string;
14
+ parts: IStreamPart[];
15
+ }
16
+ export {};
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
File without changes
@@ -0,0 +1 @@
1
+ "use strict";
@@ -552,6 +552,7 @@ export * from "./IStoreAsset";
552
552
  export * from "./IStoresCMS";
553
553
  export * from "./IStoreView";
554
554
  export * from "./IStory";
555
+ export * from "./IStream";
555
556
  export * from "./IStreet";
556
557
  export * from "./ISubClient";
557
558
  export * from "./ISubCompany";
@@ -568,6 +568,7 @@ __exportStar(require("./IStoreAsset"), exports);
568
568
  __exportStar(require("./IStoresCMS"), exports);
569
569
  __exportStar(require("./IStoreView"), exports);
570
570
  __exportStar(require("./IStory"), exports);
571
+ __exportStar(require("./IStream"), exports);
571
572
  __exportStar(require("./IStreet"), exports);
572
573
  __exportStar(require("./ISubClient"), exports);
573
574
  __exportStar(require("./ISubCompany"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tolinax/ayoune-interfaces",
3
- "version": "2024.60.0",
3
+ "version": "2024.61.1",
4
4
  "description": "Houses TypeScript interfaces for aYOUne",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",