@tolinax/ayoune-interfaces 2024.61.0 → 2024.61.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.
package/interfaces/IStream.d.ts
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
import { IDefaultFields } from "./IDefaultFields";
|
|
2
|
-
|
|
2
|
+
interface IStreamPart {
|
|
3
|
+
_file?: ObjectId;
|
|
4
|
+
fileId?: string;
|
|
5
|
+
fileName?: string;
|
|
6
|
+
}
|
|
3
7
|
export interface IStream extends IDefaultFields {
|
|
4
8
|
_customerID: ObjectId;
|
|
5
9
|
_clientID?: ObjectId[];
|
|
@@ -8,3 +12,4 @@ export interface IStream extends IDefaultFields {
|
|
|
8
12
|
name?: string;
|
|
9
13
|
parts: IStreamPart[];
|
|
10
14
|
}
|
|
15
|
+
export {};
|
package/interfaces/index.d.ts
CHANGED
|
@@ -553,7 +553,6 @@ export * from "./IStoresCMS";
|
|
|
553
553
|
export * from "./IStoreView";
|
|
554
554
|
export * from "./IStory";
|
|
555
555
|
export * from "./IStream";
|
|
556
|
-
export * from "./IStreamPart";
|
|
557
556
|
export * from "./IStreet";
|
|
558
557
|
export * from "./ISubClient";
|
|
559
558
|
export * from "./ISubCompany";
|
package/interfaces/index.js
CHANGED
|
@@ -569,7 +569,6 @@ __exportStar(require("./IStoresCMS"), exports);
|
|
|
569
569
|
__exportStar(require("./IStoreView"), exports);
|
|
570
570
|
__exportStar(require("./IStory"), exports);
|
|
571
571
|
__exportStar(require("./IStream"), exports);
|
|
572
|
-
__exportStar(require("./IStreamPart"), exports);
|
|
573
572
|
__exportStar(require("./IStreet"), exports);
|
|
574
573
|
__exportStar(require("./ISubClient"), exports);
|
|
575
574
|
__exportStar(require("./ISubCompany"), exports);
|