@carlosdiazz/lottodiz-shared 2.7.5 → 2.7.7

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,3 +1,4 @@
1
+ export * from "./method-obs";
1
2
  export * from "./method-valid";
2
3
  export * from "./permission-valid";
3
4
  export * from "./valid-job.enum";
@@ -14,6 +14,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./method-obs"), exports);
17
18
  __exportStar(require("./method-valid"), exports);
18
19
  __exportStar(require("./permission-valid"), exports);
19
20
  __exportStar(require("./valid-job.enum"), exports);
@@ -0,0 +1,6 @@
1
+ export declare enum MethodValidObs {
2
+ START_STREAM = "START_STREAM",
3
+ END_STREAM = "END_STREAM",
4
+ CHANGE_SCENE = "CHANGE_SCENE",
5
+ CHANGE_VOLUMEN = "CHANGE_VOLUMEN"
6
+ }
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.MethodValidObs = void 0;
4
+ var MethodValidObs;
5
+ (function (MethodValidObs) {
6
+ MethodValidObs["START_STREAM"] = "START_STREAM";
7
+ MethodValidObs["END_STREAM"] = "END_STREAM";
8
+ MethodValidObs["CHANGE_SCENE"] = "CHANGE_SCENE";
9
+ MethodValidObs["CHANGE_VOLUMEN"] = "CHANGE_VOLUMEN";
10
+ })(MethodValidObs || (exports.MethodValidObs = MethodValidObs = {}));
@@ -1,8 +1,8 @@
1
1
  export interface CreateBroadcastDtoInterface {
2
- id_canal: number;
3
2
  id_template_video: number;
3
+ date: string;
4
4
  }
5
5
  export interface CreateMultiBroadcastDtoInterface {
6
6
  id_canal: number;
7
- id_day: number;
7
+ date: string;
8
8
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carlosdiazz/lottodiz-shared",
3
- "version": "2.7.5",
3
+ "version": "2.7.7",
4
4
  "description": "Shared Dtos, models, constants and utils",
5
5
  "main": "dist/index.js",
6
6
  "private": false,