@tolinax/ayoune-interfaces 2024.59.0 → 2024.61.0
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/interfaces/ICTA.d.ts
CHANGED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { IDefaultFields } from "./IDefaultFields";
|
|
2
|
+
import { IStreamPart } from "./IStreamPart";
|
|
3
|
+
export interface IStream extends IDefaultFields {
|
|
4
|
+
_customerID: ObjectId;
|
|
5
|
+
_clientID?: ObjectId[];
|
|
6
|
+
_subID?: ObjectId[];
|
|
7
|
+
type?: "audio" | "video";
|
|
8
|
+
name?: string;
|
|
9
|
+
parts: IStreamPart[];
|
|
10
|
+
}
|
package/interfaces/index.d.ts
CHANGED
|
@@ -552,6 +552,8 @@ export * from "./IStoreAsset";
|
|
|
552
552
|
export * from "./IStoresCMS";
|
|
553
553
|
export * from "./IStoreView";
|
|
554
554
|
export * from "./IStory";
|
|
555
|
+
export * from "./IStream";
|
|
556
|
+
export * from "./IStreamPart";
|
|
555
557
|
export * from "./IStreet";
|
|
556
558
|
export * from "./ISubClient";
|
|
557
559
|
export * from "./ISubCompany";
|
package/interfaces/index.js
CHANGED
|
@@ -568,6 +568,8 @@ __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);
|
|
572
|
+
__exportStar(require("./IStreamPart"), exports);
|
|
571
573
|
__exportStar(require("./IStreet"), exports);
|
|
572
574
|
__exportStar(require("./ISubClient"), exports);
|
|
573
575
|
__exportStar(require("./ISubCompany"), exports);
|