@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.
@@ -1,5 +1,9 @@
1
1
  import { IDefaultFields } from "./IDefaultFields";
2
- import { IStreamPart } from "./IStreamPart";
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 {};
@@ -1,9 +0,0 @@
1
- import { IDefaultFields } from "./IDefaultFields";
2
- export interface IStreamPart extends IDefaultFields {
3
- _customerID: ObjectId;
4
- _clientID?: ObjectId[];
5
- _subID?: ObjectId[];
6
- type?: "audio" | "video";
7
- name?: string;
8
- _file?: ObjectId;
9
- }
@@ -1,2 +1 @@
1
1
  "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
@@ -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";
@@ -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);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tolinax/ayoune-interfaces",
3
- "version": "2024.61.0",
3
+ "version": "2024.61.2",
4
4
  "description": "Houses TypeScript interfaces for aYOUne",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",