@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.
@@ -35,6 +35,7 @@ export interface ICTA extends IDefaultFields {
35
35
  };
36
36
  slider_settings: {
37
37
  mode: "horizontal" | "vertical" | "fade";
38
+ touchEnabled: boolean;
38
39
  speed: number;
39
40
  slideMargin: number;
40
41
  startSlide: number;
@@ -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
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,9 @@
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
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -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";
@@ -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);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tolinax/ayoune-interfaces",
3
- "version": "2024.59.0",
3
+ "version": "2024.61.0",
4
4
  "description": "Houses TypeScript interfaces for aYOUne",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",