@trii/types 2.10.424 → 2.10.425

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.
@@ -0,0 +1,12 @@
1
+ export declare class Options {
2
+ id: string;
3
+ spaceId: string;
4
+ whatsapp: OptionsConfig;
5
+ email: OptionsConfig;
6
+ sms: OptionsConfig;
7
+ rcs: OptionsConfig;
8
+ }
9
+ export declare class OptionsConfig {
10
+ pause: number;
11
+ scheduleId: string;
12
+ }
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.OptionsConfig = exports.Options = void 0;
4
+ class Options {
5
+ }
6
+ exports.Options = Options;
7
+ class OptionsConfig {
8
+ }
9
+ exports.OptionsConfig = OptionsConfig;
@@ -1,2 +1,3 @@
1
1
  export * from './Campaign';
2
2
  export * from './Dashboard';
3
+ export * from './Options';
@@ -16,3 +16,4 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./Campaign"), exports);
18
18
  __exportStar(require("./Dashboard"), exports);
19
+ __exportStar(require("./Options"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trii/types",
3
- "version": "2.10.424",
3
+ "version": "2.10.425",
4
4
  "description": "Types definitions for Trii projects - ",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",