@hosterai/types 0.0.9 → 0.0.10
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/dist/dtos/info/info-notification.dto.d.ts +0 -1
- package/dist/dtos/info/info.dto.d.ts +131 -76
- package/dist/dtos/info/info.dto.js +262 -0
- package/dist/dtos/notification/notification-info.dto.d.ts +2 -2
- package/dist/enums/notification/notification-message-type.enum.d.ts +5 -0
- package/dist/enums/notification/notification-message-type.enum.js +9 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/dist/dtos/action.dto.d.ts.map +0 -1
- package/dist/dtos/attachment.dto.d.ts.map +0 -1
- package/dist/dtos/base-response.dto.d.ts.map +0 -1
- package/dist/dtos/company-data.dto.d.ts.map +0 -1
- package/dist/dtos/error-response.dto.d.ts.map +0 -1
- package/dist/dtos/field.dto.d.ts.map +0 -1
- package/dist/dtos/info/info-notification.dto.d.ts.map +0 -1
- package/dist/dtos/info/info.dto.d.ts.map +0 -1
- package/dist/dtos/jwt.dto.d.ts.map +0 -1
- package/dist/dtos/menu.dto.d.ts.map +0 -1
- package/dist/dtos/multilang-text.dto.d.ts.map +0 -1
- package/dist/dtos/notification/info-notification.dto.d.ts +0 -5
- package/dist/dtos/notification/info-notification.dto.js +0 -7
- package/dist/dtos/notification/request.dto.d.ts +0 -21
- package/dist/dtos/notification/request.dto.d.ts.map +0 -1
- package/dist/dtos/notification/request.dto.js +0 -31
- package/dist/dtos/receiver/receiver-email.dto.d.ts.map +0 -1
- package/dist/dtos/receiver/receiver-push.dto.d.ts.map +0 -1
- package/dist/dtos/receiver/receiver-sms.dto.d.ts.map +0 -1
- package/dist/dtos/response-data.dto.d.ts.map +0 -1
- package/dist/dtos/sender/sender-email.dto.d.ts.map +0 -1
- package/dist/dtos/sender/sender-push.dto.d.ts.map +0 -1
- package/dist/dtos/sender/sender-sms.dto.d.ts.map +0 -1
- package/dist/dtos/setup-status-response.dto.d.ts.map +0 -1
- package/dist/dtos/success-response.dto.d.ts.map +0 -1
- package/dist/dtos/tab.dto.d.ts.map +0 -1
- package/dist/dtos/task-response.dto.d.ts.map +0 -1
- package/dist/dtos/unit.dto.d.ts.map +0 -1
- package/dist/enums/actions.enum.d.ts.map +0 -1
- package/dist/enums/country.enum.d.ts.map +0 -1
- package/dist/enums/events.enum.d.ts.map +0 -1
- package/dist/enums/field-type.enum.d.ts.map +0 -1
- package/dist/enums/language.enum.d.ts.map +0 -1
- package/dist/enums/message-type.enum.d.ts.map +0 -1
- package/dist/enums/open-method.enum.d.ts.map +0 -1
- package/dist/enums/roles.enum.d.ts.map +0 -1
- package/dist/enums/setup-status.enum.d.ts.map +0 -1
- package/dist/index.d.ts.map +0 -1
|
@@ -6,8 +6,6 @@ import { UnitDto } from '../unit.dto';
|
|
|
6
6
|
import { LanguageEnum } from '../../enums/language.enum';
|
|
7
7
|
import { RolesEnum } from '../../enums/roles.enum';
|
|
8
8
|
import { ActionDto } from '../action.dto';
|
|
9
|
-
import { TabDto } from '../tab.dto';
|
|
10
|
-
import { MenuDtoWithSubmenu, MenuDtoWithUrl } from '../menu.dto';
|
|
11
9
|
/**
|
|
12
10
|
* DTO for integration information
|
|
13
11
|
* Contains all information related to a service integration
|
|
@@ -51,91 +49,148 @@ export declare class InfoDto {
|
|
|
51
49
|
unsupportedActions?: ActionsEnum[];
|
|
52
50
|
/**
|
|
53
51
|
* Configuration for the admin panel.
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
adminPanel?: {
|
|
57
|
-
/** Tab groups for different admin panel sections in the admin panel. */
|
|
58
|
-
tabs?: {
|
|
59
|
-
/** Tabs related to products. */
|
|
60
|
-
product: TabDto[];
|
|
61
|
-
/** Tabs related to items. */
|
|
62
|
-
item: TabDto[];
|
|
63
|
-
/** Tabs related to clients. */
|
|
64
|
-
client: TabDto[];
|
|
65
|
-
/** Tabs related to users. */
|
|
66
|
-
user: TabDto[];
|
|
67
|
-
/** Tabs related to orders. */
|
|
68
|
-
order: TabDto[];
|
|
69
|
-
};
|
|
70
|
-
/** Additional actions available in the admin panel. */
|
|
71
|
-
moreActions?: {
|
|
72
|
-
/** Actions related to clients. */
|
|
73
|
-
client?: ActionDto[];
|
|
74
|
-
/** Actions related to items. */
|
|
75
|
-
item?: ActionDto[];
|
|
76
|
-
/** Actions related to invoices. */
|
|
77
|
-
invoice?: ActionDto[];
|
|
78
|
-
/** Actions related to users. */
|
|
79
|
-
user?: ActionDto[];
|
|
80
|
-
/** Actions related to orders. */
|
|
81
|
-
order?: ActionDto[];
|
|
82
|
-
};
|
|
83
|
-
/** Main menu for the admin panel. Extends TabDto and adds icon information */
|
|
84
|
-
menu?: MenuDtoWithSubmenu | MenuDtoWithUrl;
|
|
85
|
-
settings?: {
|
|
86
|
-
label: string;
|
|
87
|
-
icon: string;
|
|
88
|
-
descrition: string;
|
|
89
|
-
} & ({
|
|
90
|
-
url: string;
|
|
91
|
-
tabs?: never;
|
|
92
|
-
} | // If url is provided, tabs should not be present
|
|
93
|
-
{
|
|
94
|
-
url?: never;
|
|
95
|
-
tabs: [TabDto, ...TabDto[]];
|
|
96
|
-
});
|
|
97
|
-
};
|
|
52
|
+
*/
|
|
53
|
+
adminPanel?: AdminPanelDto;
|
|
98
54
|
/**
|
|
99
55
|
* Configuration for the client panel.
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
clientPanel?: {
|
|
103
|
-
/** Tab groups for the client panel. */
|
|
104
|
-
tabs?: {
|
|
105
|
-
/** Tabs related to items. */
|
|
106
|
-
item: TabDto[];
|
|
107
|
-
};
|
|
108
|
-
/** Additional actions available in the client panel. */
|
|
109
|
-
moreActions?: {
|
|
110
|
-
/** Actions related to items. */
|
|
111
|
-
item?: ActionDto[];
|
|
112
|
-
};
|
|
113
|
-
/** Main menu for the client panel.
|
|
114
|
-
* Each menu must have at least one TabDto.
|
|
115
|
-
* If there are no submenus, the label of the TabDto will be displayed in the panel.
|
|
116
|
-
* If there are submenus, the label of the MenuDto and the TabDtos of the MenuDto will be displayed in the panel.
|
|
117
|
-
* The TabDtos of the MenuDto will be the submenus of the MenuDto.
|
|
118
|
-
*/
|
|
119
|
-
menu?: MenuDtoWithSubmenu | MenuDtoWithUrl;
|
|
120
|
-
};
|
|
56
|
+
*/
|
|
57
|
+
clientPanel?: ClientPanelDto;
|
|
121
58
|
/**
|
|
122
59
|
* The url for the onboarding process after installation of the integration
|
|
123
|
-
* Will be displayed either as a popup or as a side sheet containing an iframe
|
|
124
|
-
* with this url and the jwt in the url
|
|
125
60
|
*/
|
|
126
61
|
onboardingUrl?: string;
|
|
127
62
|
/**
|
|
128
63
|
* Units for pay-per-use billing.
|
|
129
|
-
* e.g. id: ram, unitDescription: MB, intervalDescription: month
|
|
130
|
-
* With the above in the admin the administrator will be able to set a price for
|
|
131
|
-
* MB per month (the id is the unit's unique identifier)
|
|
132
64
|
*/
|
|
133
65
|
payPerUseUnits?: UnitDto[];
|
|
134
66
|
/**
|
|
135
|
-
*
|
|
136
|
-
* In other words, we want to know the information that a successful create will
|
|
137
|
-
* return, before the create is executed
|
|
67
|
+
* Mapping of response data field names.
|
|
138
68
|
*/
|
|
139
69
|
responseDataFieldNames?: Record<keyof ResponseDataDto, string>;
|
|
140
70
|
}
|
|
141
|
-
|
|
71
|
+
/**
|
|
72
|
+
* DTO for tabs
|
|
73
|
+
* Used for defining tabs in the user interface
|
|
74
|
+
*/
|
|
75
|
+
declare class TabDto {
|
|
76
|
+
/**
|
|
77
|
+
* The label displayed on the tab
|
|
78
|
+
*/
|
|
79
|
+
label: string;
|
|
80
|
+
/**
|
|
81
|
+
* The URL associated with the tab.
|
|
82
|
+
* The requests coming from the hoster will be signed
|
|
83
|
+
* with jwt, which will contain information about the company
|
|
84
|
+
*/
|
|
85
|
+
url: string;
|
|
86
|
+
}
|
|
87
|
+
/**
|
|
88
|
+
* DTO for menu items
|
|
89
|
+
* Extends TabDto and adds icon information
|
|
90
|
+
*/
|
|
91
|
+
declare class MenuDto {
|
|
92
|
+
/**
|
|
93
|
+
* The icon to be displayed for the menu item
|
|
94
|
+
*/
|
|
95
|
+
icon: string;
|
|
96
|
+
/**
|
|
97
|
+
* The name to be displayed for the menu item
|
|
98
|
+
*/
|
|
99
|
+
label: string;
|
|
100
|
+
/**
|
|
101
|
+
* The list of tabs that will appear in the submenu and as a navigation bar above the main content
|
|
102
|
+
* In case of only one tab, there will be neither a submenu nor a navigation bar.
|
|
103
|
+
*/
|
|
104
|
+
tabs: TabDto[];
|
|
105
|
+
}
|
|
106
|
+
/**
|
|
107
|
+
* DTO for the tabs in the admin panel.
|
|
108
|
+
*/
|
|
109
|
+
declare class AdminPanelTabsDto {
|
|
110
|
+
/**
|
|
111
|
+
* Tabs related to products.
|
|
112
|
+
*/
|
|
113
|
+
product: TabDto[];
|
|
114
|
+
/**
|
|
115
|
+
* Tabs related to items.
|
|
116
|
+
*/
|
|
117
|
+
item: TabDto[];
|
|
118
|
+
/**
|
|
119
|
+
* Tabs related to clients.
|
|
120
|
+
*/
|
|
121
|
+
client: TabDto[];
|
|
122
|
+
/**
|
|
123
|
+
* Tabs related to orders.
|
|
124
|
+
*/
|
|
125
|
+
order: TabDto[];
|
|
126
|
+
}
|
|
127
|
+
/**
|
|
128
|
+
* DTO for actions available in a panel.
|
|
129
|
+
*/
|
|
130
|
+
declare class PanelActionsDto {
|
|
131
|
+
/**
|
|
132
|
+
* Actions related to clients.
|
|
133
|
+
*/
|
|
134
|
+
client?: ActionDto[];
|
|
135
|
+
/**
|
|
136
|
+
* Actions related to items.
|
|
137
|
+
*/
|
|
138
|
+
item?: ActionDto[];
|
|
139
|
+
}
|
|
140
|
+
/**
|
|
141
|
+
* DTO for the admin panel configuration.
|
|
142
|
+
*/
|
|
143
|
+
declare class AdminPanelDto {
|
|
144
|
+
/**
|
|
145
|
+
* Configuration for the tabs in the admin panel.
|
|
146
|
+
*/
|
|
147
|
+
tabs?: AdminPanelTabsDto;
|
|
148
|
+
/**
|
|
149
|
+
* Additional actions available in the admin panel.
|
|
150
|
+
*/
|
|
151
|
+
moreActions?: PanelActionsDto;
|
|
152
|
+
/**
|
|
153
|
+
* Main menu for the admin panel.
|
|
154
|
+
*/
|
|
155
|
+
menu?: MenuDto;
|
|
156
|
+
/**
|
|
157
|
+
* Settings menu for the admin panel.
|
|
158
|
+
*/
|
|
159
|
+
settings?: MenuDto;
|
|
160
|
+
}
|
|
161
|
+
/**
|
|
162
|
+
* DTO for the tabs in the client panel.
|
|
163
|
+
*/
|
|
164
|
+
declare class ClientPanelTabsDto {
|
|
165
|
+
/**
|
|
166
|
+
* Tabs related to items.
|
|
167
|
+
*/
|
|
168
|
+
item: TabDto[];
|
|
169
|
+
}
|
|
170
|
+
/**
|
|
171
|
+
* DTO for actions available in the client panel.
|
|
172
|
+
*/
|
|
173
|
+
declare class ClientPanelActionsDto {
|
|
174
|
+
/**
|
|
175
|
+
* Actions related to items.
|
|
176
|
+
*/
|
|
177
|
+
item?: ActionDto[];
|
|
178
|
+
}
|
|
179
|
+
/**
|
|
180
|
+
* DTO for the client panel configuration.
|
|
181
|
+
*/
|
|
182
|
+
declare class ClientPanelDto {
|
|
183
|
+
/**
|
|
184
|
+
* Configuration for the tabs in the client panel.
|
|
185
|
+
*/
|
|
186
|
+
tabs?: ClientPanelTabsDto;
|
|
187
|
+
/**
|
|
188
|
+
* Additional actions available in the client panel.
|
|
189
|
+
*/
|
|
190
|
+
moreActions?: ClientPanelActionsDto;
|
|
191
|
+
/**
|
|
192
|
+
* Main menu for the client panel.
|
|
193
|
+
*/
|
|
194
|
+
menu?: MenuDto;
|
|
195
|
+
}
|
|
196
|
+
export {};
|
|
@@ -1,6 +1,24 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
2
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
12
|
exports.InfoDto = void 0;
|
|
13
|
+
const class_validator_1 = require("class-validator");
|
|
14
|
+
const class_transformer_1 = require("class-transformer");
|
|
15
|
+
const actions_enum_1 = require("../../enums/actions.enum");
|
|
16
|
+
const events_enum_1 = require("../../enums/events.enum");
|
|
17
|
+
const field_dto_1 = require("../field.dto");
|
|
18
|
+
const unit_dto_1 = require("../unit.dto");
|
|
19
|
+
const language_enum_1 = require("../../enums/language.enum");
|
|
20
|
+
const roles_enum_1 = require("../../enums/roles.enum");
|
|
21
|
+
const action_dto_1 = require("../action.dto");
|
|
4
22
|
/**
|
|
5
23
|
* DTO for integration information
|
|
6
24
|
* Contains all information related to a service integration
|
|
@@ -14,3 +32,247 @@ class InfoDto {
|
|
|
14
32
|
}
|
|
15
33
|
}
|
|
16
34
|
exports.InfoDto = InfoDto;
|
|
35
|
+
__decorate([
|
|
36
|
+
(0, class_validator_1.IsString)(),
|
|
37
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
38
|
+
__metadata("design:type", String)
|
|
39
|
+
], InfoDto.prototype, "title", void 0);
|
|
40
|
+
__decorate([
|
|
41
|
+
(0, class_validator_1.IsString)(),
|
|
42
|
+
(0, class_validator_1.IsOptional)(),
|
|
43
|
+
__metadata("design:type", String)
|
|
44
|
+
], InfoDto.prototype, "logo", void 0);
|
|
45
|
+
__decorate([
|
|
46
|
+
(0, class_validator_1.IsString)(),
|
|
47
|
+
(0, class_validator_1.IsOptional)(),
|
|
48
|
+
__metadata("design:type", String)
|
|
49
|
+
], InfoDto.prototype, "description", void 0);
|
|
50
|
+
__decorate([
|
|
51
|
+
(0, class_validator_1.IsArray)(),
|
|
52
|
+
(0, class_validator_1.IsEnum)(language_enum_1.LanguageEnum, { each: true }),
|
|
53
|
+
__metadata("design:type", Array)
|
|
54
|
+
], InfoDto.prototype, "supported_languages", void 0);
|
|
55
|
+
__decorate([
|
|
56
|
+
(0, class_validator_1.IsArray)(),
|
|
57
|
+
(0, class_validator_1.ValidateNested)({ each: true }),
|
|
58
|
+
(0, class_transformer_1.Type)(() => field_dto_1.FieldDto),
|
|
59
|
+
(0, class_validator_1.IsOptional)(),
|
|
60
|
+
__metadata("design:type", Array)
|
|
61
|
+
], InfoDto.prototype, "product_attributes", void 0);
|
|
62
|
+
__decorate([
|
|
63
|
+
(0, class_validator_1.IsArray)(),
|
|
64
|
+
(0, class_validator_1.ValidateNested)({ each: true }),
|
|
65
|
+
(0, class_transformer_1.Type)(() => field_dto_1.FieldDto),
|
|
66
|
+
(0, class_validator_1.IsOptional)(),
|
|
67
|
+
__metadata("design:type", Array)
|
|
68
|
+
], InfoDto.prototype, "item_attributes", void 0);
|
|
69
|
+
__decorate([
|
|
70
|
+
(0, class_validator_1.IsArray)(),
|
|
71
|
+
(0, class_validator_1.IsEnum)(events_enum_1.EventsEnum, { each: true }),
|
|
72
|
+
(0, class_validator_1.IsOptional)(),
|
|
73
|
+
__metadata("design:type", Array)
|
|
74
|
+
], InfoDto.prototype, "listen_events", void 0);
|
|
75
|
+
__decorate([
|
|
76
|
+
(0, class_validator_1.IsArray)(),
|
|
77
|
+
(0, class_validator_1.IsEnum)(roles_enum_1.RolesEnum, { each: true }),
|
|
78
|
+
(0, class_validator_1.IsOptional)(),
|
|
79
|
+
__metadata("design:type", Array)
|
|
80
|
+
], InfoDto.prototype, "requiredRoles", void 0);
|
|
81
|
+
__decorate([
|
|
82
|
+
(0, class_validator_1.IsArray)(),
|
|
83
|
+
(0, class_validator_1.IsEnum)(actions_enum_1.ActionsEnum, { each: true }),
|
|
84
|
+
(0, class_validator_1.IsOptional)(),
|
|
85
|
+
__metadata("design:type", Array)
|
|
86
|
+
], InfoDto.prototype, "unsupportedActions", void 0);
|
|
87
|
+
__decorate([
|
|
88
|
+
(0, class_validator_1.IsOptional)(),
|
|
89
|
+
(0, class_validator_1.ValidateNested)(),
|
|
90
|
+
(0, class_transformer_1.Type)(() => AdminPanelDto),
|
|
91
|
+
__metadata("design:type", AdminPanelDto)
|
|
92
|
+
], InfoDto.prototype, "adminPanel", void 0);
|
|
93
|
+
__decorate([
|
|
94
|
+
(0, class_validator_1.IsOptional)(),
|
|
95
|
+
(0, class_validator_1.ValidateNested)(),
|
|
96
|
+
(0, class_transformer_1.Type)(() => ClientPanelDto),
|
|
97
|
+
__metadata("design:type", ClientPanelDto)
|
|
98
|
+
], InfoDto.prototype, "clientPanel", void 0);
|
|
99
|
+
__decorate([
|
|
100
|
+
(0, class_validator_1.IsOptional)(),
|
|
101
|
+
(0, class_validator_1.IsUrl)(),
|
|
102
|
+
__metadata("design:type", String)
|
|
103
|
+
], InfoDto.prototype, "onboardingUrl", void 0);
|
|
104
|
+
__decorate([
|
|
105
|
+
(0, class_validator_1.IsArray)(),
|
|
106
|
+
(0, class_validator_1.ValidateNested)({ each: true }),
|
|
107
|
+
(0, class_transformer_1.Type)(() => unit_dto_1.UnitDto),
|
|
108
|
+
(0, class_validator_1.IsOptional)(),
|
|
109
|
+
__metadata("design:type", Array)
|
|
110
|
+
], InfoDto.prototype, "payPerUseUnits", void 0);
|
|
111
|
+
__decorate([
|
|
112
|
+
(0, class_validator_1.IsObject)(),
|
|
113
|
+
(0, class_validator_1.IsOptional)(),
|
|
114
|
+
__metadata("design:type", Object)
|
|
115
|
+
], InfoDto.prototype, "responseDataFieldNames", void 0);
|
|
116
|
+
/**
|
|
117
|
+
* DTO for tabs
|
|
118
|
+
* Used for defining tabs in the user interface
|
|
119
|
+
*/
|
|
120
|
+
class TabDto {
|
|
121
|
+
}
|
|
122
|
+
__decorate([
|
|
123
|
+
(0, class_validator_1.IsString)(),
|
|
124
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
125
|
+
__metadata("design:type", String)
|
|
126
|
+
], TabDto.prototype, "label", void 0);
|
|
127
|
+
__decorate([
|
|
128
|
+
(0, class_validator_1.IsString)(),
|
|
129
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
130
|
+
(0, class_validator_1.IsUrl)(),
|
|
131
|
+
__metadata("design:type", String)
|
|
132
|
+
], TabDto.prototype, "url", void 0);
|
|
133
|
+
/**
|
|
134
|
+
* DTO for menu items
|
|
135
|
+
* Extends TabDto and adds icon information
|
|
136
|
+
*/
|
|
137
|
+
class MenuDto {
|
|
138
|
+
}
|
|
139
|
+
__decorate([
|
|
140
|
+
(0, class_validator_1.IsString)(),
|
|
141
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
142
|
+
__metadata("design:type", String)
|
|
143
|
+
], MenuDto.prototype, "icon", void 0);
|
|
144
|
+
__decorate([
|
|
145
|
+
(0, class_validator_1.IsString)(),
|
|
146
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
147
|
+
__metadata("design:type", String)
|
|
148
|
+
], MenuDto.prototype, "label", void 0);
|
|
149
|
+
__decorate([
|
|
150
|
+
(0, class_validator_1.IsArray)(),
|
|
151
|
+
(0, class_validator_1.MinLength)(1),
|
|
152
|
+
(0, class_validator_1.ValidateNested)({ each: true }),
|
|
153
|
+
(0, class_transformer_1.Type)(() => TabDto),
|
|
154
|
+
__metadata("design:type", Array)
|
|
155
|
+
], MenuDto.prototype, "tabs", void 0);
|
|
156
|
+
/**
|
|
157
|
+
* DTO for the tabs in the admin panel.
|
|
158
|
+
*/
|
|
159
|
+
class AdminPanelTabsDto {
|
|
160
|
+
}
|
|
161
|
+
__decorate([
|
|
162
|
+
(0, class_validator_1.IsArray)(),
|
|
163
|
+
(0, class_validator_1.ValidateNested)({ each: true }),
|
|
164
|
+
(0, class_transformer_1.Type)(() => TabDto),
|
|
165
|
+
__metadata("design:type", Array)
|
|
166
|
+
], AdminPanelTabsDto.prototype, "product", void 0);
|
|
167
|
+
__decorate([
|
|
168
|
+
(0, class_validator_1.IsArray)(),
|
|
169
|
+
(0, class_validator_1.ValidateNested)({ each: true }),
|
|
170
|
+
(0, class_transformer_1.Type)(() => TabDto),
|
|
171
|
+
__metadata("design:type", Array)
|
|
172
|
+
], AdminPanelTabsDto.prototype, "item", void 0);
|
|
173
|
+
__decorate([
|
|
174
|
+
(0, class_validator_1.IsArray)(),
|
|
175
|
+
(0, class_validator_1.ValidateNested)({ each: true }),
|
|
176
|
+
(0, class_transformer_1.Type)(() => TabDto),
|
|
177
|
+
__metadata("design:type", Array)
|
|
178
|
+
], AdminPanelTabsDto.prototype, "client", void 0);
|
|
179
|
+
__decorate([
|
|
180
|
+
(0, class_validator_1.IsArray)(),
|
|
181
|
+
(0, class_validator_1.ValidateNested)({ each: true }),
|
|
182
|
+
(0, class_transformer_1.Type)(() => TabDto),
|
|
183
|
+
__metadata("design:type", Array)
|
|
184
|
+
], AdminPanelTabsDto.prototype, "order", void 0);
|
|
185
|
+
/**
|
|
186
|
+
* DTO for actions available in a panel.
|
|
187
|
+
*/
|
|
188
|
+
class PanelActionsDto {
|
|
189
|
+
}
|
|
190
|
+
__decorate([
|
|
191
|
+
(0, class_validator_1.IsArray)(),
|
|
192
|
+
(0, class_validator_1.ValidateNested)({ each: true }),
|
|
193
|
+
(0, class_transformer_1.Type)(() => action_dto_1.ActionDto),
|
|
194
|
+
(0, class_validator_1.IsOptional)(),
|
|
195
|
+
__metadata("design:type", Array)
|
|
196
|
+
], PanelActionsDto.prototype, "client", void 0);
|
|
197
|
+
__decorate([
|
|
198
|
+
(0, class_validator_1.IsArray)(),
|
|
199
|
+
(0, class_validator_1.ValidateNested)({ each: true }),
|
|
200
|
+
(0, class_transformer_1.Type)(() => action_dto_1.ActionDto),
|
|
201
|
+
(0, class_validator_1.IsOptional)(),
|
|
202
|
+
__metadata("design:type", Array)
|
|
203
|
+
], PanelActionsDto.prototype, "item", void 0);
|
|
204
|
+
/**
|
|
205
|
+
* DTO for the admin panel configuration.
|
|
206
|
+
*/
|
|
207
|
+
class AdminPanelDto {
|
|
208
|
+
}
|
|
209
|
+
__decorate([
|
|
210
|
+
(0, class_validator_1.IsOptional)(),
|
|
211
|
+
(0, class_validator_1.ValidateNested)(),
|
|
212
|
+
(0, class_transformer_1.Type)(() => AdminPanelTabsDto),
|
|
213
|
+
__metadata("design:type", AdminPanelTabsDto)
|
|
214
|
+
], AdminPanelDto.prototype, "tabs", void 0);
|
|
215
|
+
__decorate([
|
|
216
|
+
(0, class_validator_1.IsOptional)(),
|
|
217
|
+
(0, class_validator_1.ValidateNested)(),
|
|
218
|
+
(0, class_transformer_1.Type)(() => PanelActionsDto),
|
|
219
|
+
__metadata("design:type", PanelActionsDto)
|
|
220
|
+
], AdminPanelDto.prototype, "moreActions", void 0);
|
|
221
|
+
__decorate([
|
|
222
|
+
(0, class_validator_1.IsOptional)(),
|
|
223
|
+
(0, class_validator_1.ValidateNested)(),
|
|
224
|
+
(0, class_transformer_1.Type)(() => MenuDto),
|
|
225
|
+
__metadata("design:type", MenuDto)
|
|
226
|
+
], AdminPanelDto.prototype, "menu", void 0);
|
|
227
|
+
__decorate([
|
|
228
|
+
(0, class_validator_1.IsOptional)(),
|
|
229
|
+
(0, class_validator_1.ValidateNested)(),
|
|
230
|
+
(0, class_transformer_1.Type)(() => MenuDto),
|
|
231
|
+
__metadata("design:type", MenuDto)
|
|
232
|
+
], AdminPanelDto.prototype, "settings", void 0);
|
|
233
|
+
/**
|
|
234
|
+
* DTO for the tabs in the client panel.
|
|
235
|
+
*/
|
|
236
|
+
class ClientPanelTabsDto {
|
|
237
|
+
}
|
|
238
|
+
__decorate([
|
|
239
|
+
(0, class_validator_1.IsArray)(),
|
|
240
|
+
(0, class_validator_1.ValidateNested)({ each: true }),
|
|
241
|
+
(0, class_transformer_1.Type)(() => TabDto),
|
|
242
|
+
__metadata("design:type", Array)
|
|
243
|
+
], ClientPanelTabsDto.prototype, "item", void 0);
|
|
244
|
+
/**
|
|
245
|
+
* DTO for actions available in the client panel.
|
|
246
|
+
*/
|
|
247
|
+
class ClientPanelActionsDto {
|
|
248
|
+
}
|
|
249
|
+
__decorate([
|
|
250
|
+
(0, class_validator_1.IsArray)(),
|
|
251
|
+
(0, class_validator_1.ValidateNested)({ each: true }),
|
|
252
|
+
(0, class_transformer_1.Type)(() => action_dto_1.ActionDto),
|
|
253
|
+
(0, class_validator_1.IsOptional)(),
|
|
254
|
+
__metadata("design:type", Array)
|
|
255
|
+
], ClientPanelActionsDto.prototype, "item", void 0);
|
|
256
|
+
/**
|
|
257
|
+
* DTO for the client panel configuration.
|
|
258
|
+
*/
|
|
259
|
+
class ClientPanelDto {
|
|
260
|
+
}
|
|
261
|
+
__decorate([
|
|
262
|
+
(0, class_validator_1.IsOptional)(),
|
|
263
|
+
(0, class_validator_1.ValidateNested)(),
|
|
264
|
+
(0, class_transformer_1.Type)(() => ClientPanelTabsDto),
|
|
265
|
+
__metadata("design:type", ClientPanelTabsDto)
|
|
266
|
+
], ClientPanelDto.prototype, "tabs", void 0);
|
|
267
|
+
__decorate([
|
|
268
|
+
(0, class_validator_1.IsOptional)(),
|
|
269
|
+
(0, class_validator_1.ValidateNested)(),
|
|
270
|
+
(0, class_transformer_1.Type)(() => ClientPanelActionsDto),
|
|
271
|
+
__metadata("design:type", ClientPanelActionsDto)
|
|
272
|
+
], ClientPanelDto.prototype, "moreActions", void 0);
|
|
273
|
+
__decorate([
|
|
274
|
+
(0, class_validator_1.IsOptional)(),
|
|
275
|
+
(0, class_validator_1.ValidateNested)(),
|
|
276
|
+
(0, class_transformer_1.Type)(() => MenuDto),
|
|
277
|
+
__metadata("design:type", MenuDto)
|
|
278
|
+
], ClientPanelDto.prototype, "menu", void 0);
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { NotificationMessageTypeEnum } from "../../enums/notification/notification-message-type.enum";
|
|
2
2
|
import { InfoDto } from "../info.dto";
|
|
3
3
|
export declare class NotificationInfoDto extends InfoDto {
|
|
4
|
-
type:
|
|
4
|
+
type: NotificationMessageTypeEnum;
|
|
5
5
|
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.NotificationMessageTypeEnum = void 0;
|
|
4
|
+
var NotificationMessageTypeEnum;
|
|
5
|
+
(function (NotificationMessageTypeEnum) {
|
|
6
|
+
NotificationMessageTypeEnum["EMAIL"] = "email";
|
|
7
|
+
NotificationMessageTypeEnum["SMS"] = "sms";
|
|
8
|
+
NotificationMessageTypeEnum["PUSH"] = "push";
|
|
9
|
+
})(NotificationMessageTypeEnum || (exports.NotificationMessageTypeEnum = NotificationMessageTypeEnum = {}));
|
package/dist/index.d.ts
CHANGED
|
@@ -21,7 +21,7 @@ export * from './dtos/notification/sender/sender-push.dto';
|
|
|
21
21
|
export * from './dtos/notification/sender/sender-sms.dto';
|
|
22
22
|
export * from './enums/country.enum';
|
|
23
23
|
export * from './enums/language.enum';
|
|
24
|
-
export * from './enums/message-type.enum';
|
|
24
|
+
export * from './enums/notification/notification-message-type.enum';
|
|
25
25
|
export * from './enums/roles.enum';
|
|
26
26
|
export * from './enums/setup-status.enum';
|
|
27
27
|
export * from './enums/actions.enum';
|
package/dist/index.js
CHANGED
|
@@ -41,7 +41,7 @@ __exportStar(require("./dtos/notification/sender/sender-sms.dto"), exports);
|
|
|
41
41
|
// Export all ENUMs
|
|
42
42
|
__exportStar(require("./enums/country.enum"), exports);
|
|
43
43
|
__exportStar(require("./enums/language.enum"), exports);
|
|
44
|
-
__exportStar(require("./enums/message-type.enum"), exports);
|
|
44
|
+
__exportStar(require("./enums/notification/notification-message-type.enum"), exports);
|
|
45
45
|
__exportStar(require("./enums/roles.enum"), exports);
|
|
46
46
|
__exportStar(require("./enums/setup-status.enum"), exports);
|
|
47
47
|
__exportStar(require("./enums/actions.enum"), exports);
|
package/package.json
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"action.dto.d.ts","sourceRoot":"","sources":["../../dtos/action.dto.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAC;AAE3D,qBAAa,SAAS;IAClB;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IAEb;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IAGf,UAAU,EAAE,cAAc,CAAC;IAE3B;;OAEG;IACH,GAAG,EAAE,MAAM,CAAC;CACb"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"attachment.dto.d.ts","sourceRoot":"","sources":["../../dtos/attachment.dto.ts"],"names":[],"mappings":"AAEA;;;GAGG;AACH,qBAAa,aAAa;IACxB;;OAEG;IAGH,QAAQ,EAAE,MAAM,CAAC;IAEjB;;OAEG;IAIH,OAAO,EAAE,MAAM,CAAC;IAEhB;;OAEG;IAGH,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"base-response.dto.d.ts","sourceRoot":"","sources":["../../dtos/base-response.dto.ts"],"names":[],"mappings":"AAEA;;;GAGG;AACH,qBAAa,YAAY;IACvB;;OAEG;IAGH,IAAI,EAAE,MAAM,CAAC;IAEb;;OAEG;IAGH,OAAO,EAAE,MAAM,CAAC;CACjB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"company-data.dto.d.ts","sourceRoot":"","sources":["../../dtos/company-data.dto.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC;AACpD,OAAO,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAC;AAEtD,qBAAa,cAAc;IACzB,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,MAAM,EAAE,CAAC;IACjB,YAAY,EAAE,MAAM,CAAC;IACrB,gBAAgB,EAAE,MAAM,CAAC;IACzB,eAAe,EAAE,YAAY,CAAC;IAC9B,SAAS,EAAE,YAAY,EAAE,CAAC;IAC1B,SAAS,EAAE,MAAM,CAAC;IAClB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,QAAQ,EAAE,MAAM,CAAC;IACjB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,EAAE,MAAM,CAAC;IACjB,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,WAAW,CAAC;IACrB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"error-response.dto.d.ts","sourceRoot":"","sources":["../../dtos/error-response.dto.ts"],"names":[],"mappings":"AAEA;;;GAGG;AACH,qBAAa,gBAAgB;IAC3B;;;OAGG;IAGH,IAAI,EAAE,MAAM,CAAC;IAEb;;;OAGG;IAIH,MAAM,CAAC,EAAE,MAAM,EAAE,GAAG,MAAM,CAAC;CAC5B"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"field.dto.d.ts","sourceRoot":"","sources":["../../dtos/field.dto.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,0BAA0B,CAAC;AACzD,OAAO,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AAExD,qBAAa,QAAQ;IAEjB;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IAEX;;OAEG;IACH,KAAK,EAAE,gBAAgB,EAAE,CAAC;IAE1B;;OAEG;IACH,KAAK,EAAE,MAAM,GAAG,MAAM,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;IAE7C;;OAEG;IACH,IAAI,EAAE,aAAa,CAAC;IAEpB;;OAEG;IACH,QAAQ,EAAE,OAAO,CAAC;IAElB;;OAEG;IACH,QAAQ,EAAE,OAAO,CAAC;IAElB;;OAEG;IACH,MAAM,EAAE,OAAO,CAAC;IAEhB;;OAEG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC;IAEzB;;OAEG;IACH,2BAA2B,CAAC,EAAE,gBAAgB,EAAE,CAAC;IAEjD;;OAEG;IACH,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAE3B;;OAEG;IACH,4BAA4B,CAAC,EAAE,gBAAgB,EAAE,CAAC;IAElD;;OAEG;IACH,WAAW,EAAE,OAAO,CAAS;CAEhC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"info-notification.dto.d.ts","sourceRoot":"","sources":["../../../dtos/info/info-notification.dto.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,+BAA+B,CAAC;AAChE,OAAO,EAAE,OAAO,EAAE,MAAM,YAAY,CAAC;AAErC,qBAAa,mBAAoB,SAAQ,OAAO;IAC5C,IAAI,EAAE,eAAe,CAAC;CACzB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"info.dto.d.ts","sourceRoot":"","sources":["../../../dtos/info/info.dto.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"jwt.dto.d.ts","sourceRoot":"","sources":["../../dtos/jwt.dto.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AAEhD;;;GAGG;AACH,qBAAa,MAAM;IACjB;;;;OAIG;IACH,GAAG,EAAE;QAEH;;WAEG;QACH,aAAa,EAAE,MAAM,CAAC;QAEtB;;WAEG;QACH,MAAM,CAAC,EAAE,MAAM,CAAC;QAEhB;;WAEG;QACH,SAAS,EAAE,MAAM,CAAC;QAElB;;WAEG;QACH,aAAa,EAAE,SAAS,EAAE,CAAC;KAC5B,CAAC;CACH"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"menu.dto.d.ts","sourceRoot":"","sources":["../../dtos/menu.dto.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,WAAW,CAAC;AAEvC;;GAEG;AACH,UAAU,WAAW;IACnB;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IAEb;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;CACf;AAED;;GAEG;AACH,MAAM,WAAW,cAAe,SAAQ,WAAW;IACjD,IAAI,EAAE,UAAU,CAAC;IACjB;;;;OAIG;IACH,GAAG,EAAE,MAAM,CAAC;IAEZ,OAAO,CAAC,EAAE,KAAK,CAAC;CACjB;AAED;;GAEG;AACH,MAAM,WAAW,kBAAmB,SAAQ,WAAW;IACrD,IAAI,EAAE,cAAc,CAAC;IACrB,GAAG,CAAC,EAAE,KAAK,CAAC;IAEZ;;;OAGG;IACH,OAAO,EAAE,UAAU,EAAE,CAAC;CACvB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"multilang-text.dto.d.ts","sourceRoot":"","sources":["../../dtos/multilang-text.dto.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAC;AAEtD,qBAAa,gBAAgB;IAGzB,QAAQ,EAAE,YAAY,CAAC;IAIvB,IAAI,EAAE,MAAM,CAAC;CACd"}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.InfoNotificationDto = void 0;
|
|
4
|
-
const info_dto_1 = require("../info.dto");
|
|
5
|
-
class InfoNotificationDto extends info_dto_1.InfoDto {
|
|
6
|
-
}
|
|
7
|
-
exports.InfoNotificationDto = InfoNotificationDto;
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import { EmailReceiverDto } from '../receiver/receiver-email.dto';
|
|
2
|
-
import { EmailSenderDto } from '../sender/sender-email.dto';
|
|
3
|
-
import { PushSenderDto } from '../sender/sender-push.dto';
|
|
4
|
-
import { SmsSenderDto } from '../sender/sender-sms.dto';
|
|
5
|
-
import { PushReceiverDto } from '../receiver/receiver-push.dto';
|
|
6
|
-
import { SmsReceiverDto } from '../receiver/receiver-sms.dto';
|
|
7
|
-
export declare class NotificationRequestDto {
|
|
8
|
-
/**
|
|
9
|
-
* Unique identifier of the hoster message
|
|
10
|
-
*/
|
|
11
|
-
notificationId: string;
|
|
12
|
-
/**
|
|
13
|
-
* Sender details according to the integration's notification type
|
|
14
|
-
*/
|
|
15
|
-
sender: EmailSenderDto | SmsSenderDto | PushSenderDto;
|
|
16
|
-
/**
|
|
17
|
-
* Recipient details according to the integration's notification type
|
|
18
|
-
*/
|
|
19
|
-
receiver: EmailReceiverDto | SmsReceiverDto | PushReceiverDto;
|
|
20
|
-
}
|
|
21
|
-
//# sourceMappingURL=request.dto.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"request.dto.d.ts","sourceRoot":"","sources":["../../../dtos/notification/request.dto.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,gBAAgB,EAAE,MAAM,gCAAgC,CAAC;AAClE,OAAO,EAAE,cAAc,EAAE,MAAM,4BAA4B,CAAC;AAC5D,OAAO,EAAE,aAAa,EAAE,MAAM,2BAA2B,CAAC;AAC1D,OAAO,EAAE,YAAY,EAAE,MAAM,0BAA0B,CAAC;AACxD,OAAO,EAAE,eAAe,EAAE,MAAM,+BAA+B,CAAC;AAChE,OAAO,EAAE,cAAc,EAAE,MAAM,8BAA8B,CAAC;AAE9D,qBAAa,sBAAsB;IACjC;;OAEG;IAGH,cAAc,EAAE,MAAM,CAAC;IAEvB;;OAEG;IAGH,MAAM,EAAE,cAAc,GAAG,YAAY,GAAG,aAAa,CAAC;IAEtD;;OAEG;IAGH,QAAQ,EAAE,gBAAgB,GAAG,cAAc,GAAG,eAAe,CAAC;CAC/D"}
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
-
};
|
|
8
|
-
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
-
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
-
};
|
|
11
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
exports.NotificationRequestDto = void 0;
|
|
13
|
-
const class_validator_1 = require("class-validator");
|
|
14
|
-
class NotificationRequestDto {
|
|
15
|
-
}
|
|
16
|
-
exports.NotificationRequestDto = NotificationRequestDto;
|
|
17
|
-
__decorate([
|
|
18
|
-
(0, class_validator_1.IsNotEmpty)(),
|
|
19
|
-
(0, class_validator_1.IsString)(),
|
|
20
|
-
__metadata("design:type", String)
|
|
21
|
-
], NotificationRequestDto.prototype, "notificationId", void 0);
|
|
22
|
-
__decorate([
|
|
23
|
-
(0, class_validator_1.IsNotEmpty)(),
|
|
24
|
-
(0, class_validator_1.IsObject)(),
|
|
25
|
-
__metadata("design:type", Object)
|
|
26
|
-
], NotificationRequestDto.prototype, "sender", void 0);
|
|
27
|
-
__decorate([
|
|
28
|
-
(0, class_validator_1.IsNotEmpty)(),
|
|
29
|
-
(0, class_validator_1.IsObject)(),
|
|
30
|
-
__metadata("design:type", Object)
|
|
31
|
-
], NotificationRequestDto.prototype, "receiver", void 0);
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"receiver-email.dto.d.ts","sourceRoot":"","sources":["../../../dtos/receiver/receiver-email.dto.ts"],"names":[],"mappings":"AAQA;;;GAGG;AACH,qBAAa,gBAAgB;IAC3B;;OAEG;IAGH,EAAE,EAAE,MAAM,CAAC;IAEX;;;OAGG;IAKH,EAAE,CAAC,EAAE,MAAM,EAAE,CAAC;IAEd;;;OAGG;IAKH,GAAG,CAAC,EAAE,MAAM,EAAE,CAAC;CAChB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"receiver-push.dto.d.ts","sourceRoot":"","sources":["../../../dtos/receiver/receiver-push.dto.ts"],"names":[],"mappings":"AAQA;;;GAGG;AACH,qBAAa,eAAe;IAC1B;;OAEG;IAGH,MAAM,EAAE,MAAM,CAAC;IAEf;;;OAGG;IAIH,YAAY,EAAE,MAAM,EAAE,CAAC;CACxB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"receiver-sms.dto.d.ts","sourceRoot":"","sources":["../../../dtos/receiver/receiver-sms.dto.ts"],"names":[],"mappings":"AAEA;;;GAGG;AACH,qBAAa,cAAc;IACzB;;;OAGG;IAIH,cAAc,EAAE,MAAM,EAAE,CAAC;CAC1B"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"response-data.dto.d.ts","sourceRoot":"","sources":["../../dtos/response-data.dto.ts"],"names":[],"mappings":"AAAA,qBAAa,eAAe;IACxB,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;CACtB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"sender-email.dto.d.ts","sourceRoot":"","sources":["../../../dtos/sender/sender-email.dto.ts"],"names":[],"mappings":"AASA,OAAO,EAAE,aAAa,EAAE,MAAM,mBAAmB,CAAC;AAElD;;;GAGG;AACH,qBAAa,cAAc;IACzB;;OAEG;IAGH,QAAQ,EAAE,MAAM,CAAC;IAEjB;;;OAGG;IAIH,OAAO,EAAE,MAAM,CAAC;IAEhB;;;OAGG;IAIH,OAAO,EAAE,MAAM,CAAC;IAEhB;;OAEG;IAKH,WAAW,CAAC,EAAE,aAAa,EAAE,CAAC;CAC/B"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"sender-push.dto.d.ts","sourceRoot":"","sources":["../../../dtos/sender/sender-push.dto.ts"],"names":[],"mappings":"AAEA;;;GAGG;AACH,qBAAa,aAAa;IACxB;;;OAGG;IAIH,SAAS,EAAE,MAAM,CAAC;IAElB;;;OAGG;IAIH,MAAM,EAAE,MAAM,CAAC;IAEf;;;OAGG;IAIH,KAAK,EAAE,MAAM,CAAC;IAEd;;;OAGG;IAIH,OAAO,EAAE,MAAM,CAAC;IAEhB;;;OAGG;IAIH,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"sender-sms.dto.d.ts","sourceRoot":"","sources":["../../../dtos/sender/sender-sms.dto.ts"],"names":[],"mappings":"AAEA;;;GAGG;AACH,qBAAa,YAAY;IACvB;;;OAGG;IAGH,WAAW,EAAE,MAAM,CAAC;IAEpB;;OAEG;IAGH,OAAO,EAAE,MAAM,CAAC;CACjB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"setup-status-response.dto.d.ts","sourceRoot":"","sources":["../../dtos/setup-status-response.dto.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAC;AAC7D,OAAO,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AAEnD,qBAAa,sBAAuB,SAAQ,YAAY;IACpD,MAAM,EAAE,eAAe,CAAC;CACzB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"success-response.dto.d.ts","sourceRoot":"","sources":["../../dtos/success-response.dto.ts"],"names":[],"mappings":"AAEA,qBAAa,kBAAkB;IAC7B;;OAEG;IAEH,cAAc,EAAE,MAAM,CAAC;CACxB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"tab.dto.d.ts","sourceRoot":"","sources":["../../dtos/tab.dto.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,qBAAa,MAAM;IACjB;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IAEd;;;;OAIG;IACH,GAAG,EAAE,MAAM,CAAC;CACb;AAED,qBAAa,UAAW,SAAQ,MAAM;CAAG"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"task-response.dto.d.ts","sourceRoot":"","sources":["../../dtos/task-response.dto.ts"],"names":[],"mappings":"AAEA,qBAAa,eAAe;IAC1B;;OAEG;IAEH,MAAM,EAAE,MAAM,CAAC;CAChB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"unit.dto.d.ts","sourceRoot":"","sources":["../../dtos/unit.dto.ts"],"names":[],"mappings":"AAAA,qBAAa,OAAO;IAChB,EAAE,EAAE,MAAM,CAAC;IAEX,eAAe,EAAE,MAAM,CAAA;IAEvB,mBAAmB,EAAE,MAAM,CAAC;CAC7B"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"actions.enum.d.ts","sourceRoot":"","sources":["../../enums/actions.enum.ts"],"names":[],"mappings":"AAAA,oBAAY,WAAW;IAEnB,MAAM,WAAW;IACjB,KAAK,UAAU;IACf,OAAO,YAAY;IACnB,SAAS,cAAc;IACvB,OAAO,YAAY;IACnB,SAAS,cAAc;IACvB,MAAM,WAAW;CAClB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"country.enum.d.ts","sourceRoot":"","sources":["../../enums/country.enum.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"events.enum.d.ts","sourceRoot":"","sources":["../../enums/events.enum.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"field-type.enum.d.ts","sourceRoot":"","sources":["../../enums/field-type.enum.ts"],"names":[],"mappings":"AAAA,oBAAY,aAAa;IAErB,QAAQ,aAAa;IACrB,SAAS,cAAc;IACvB,MAAM,WAAW;IACjB,YAAY,iBAAiB;IAC7B,WAAW,gBAAgB;IAC3B,SAAS,cAAc;IACvB,QAAQ,aAAa;IACrB,MAAM,WAAW;CAClB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"language.enum.d.ts","sourceRoot":"","sources":["../../enums/language.enum.ts"],"names":[],"mappings":"AACA,oBAAY,YAAY;IACpB,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;IACT,EAAE,OAAO;CAyLZ"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"message-type.enum.d.ts","sourceRoot":"","sources":["../../enums/message-type.enum.ts"],"names":[],"mappings":"AAAA,oBAAY,eAAe;IACzB,KAAK,UAAU;IACf,GAAG,QAAQ;IACX,IAAI,SAAS;CACd"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"open-method.enum.d.ts","sourceRoot":"","sources":["../../enums/open-method.enum.ts"],"names":[],"mappings":"AAAA,oBAAY,cAAc;IACtB,SAAS,cAAc;IACvB,YAAY,iBAAiB;IAC7B,aAAa,kBAAkB;IAC/B,YAAY,iBAAiB;CAChC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"roles.enum.d.ts","sourceRoot":"","sources":["../../enums/roles.enum.ts"],"names":[],"mappings":"AAAA,oBAAY,SAAS;IACnB,WAAW,gBAAgB;IAC3B,WAAW,gBAAgB;IAC3B,WAAW,gBAAgB;IAE3B,UAAU,eAAe;IACzB,WAAW,gBAAgB;IAE3B,UAAU,eAAe;IACzB,WAAW,gBAAgB;IAE3B,cAAc,mBAAmB;IACjC,eAAe,oBAAoB;IAEnC,YAAY,iBAAiB;IAC7B,aAAa,kBAAkB;IAE/B,aAAa,kBAAkB;IAC/B,cAAc,mBAAmB;IAEjC,WAAW,gBAAgB;IAC3B,YAAY,iBAAiB;IAE7B,oBAAoB,yBAAyB;IAC7C,qBAAqB,0BAA0B;IAE/C,mBAAmB,wBAAwB;IAC3C,oBAAoB,yBAAyB;IAE7C,gBAAgB,qBAAqB;IACrC,iBAAiB,sBAAsB;IAEvC,oBAAoB,yBAAyB;IAC7C,qBAAqB,0BAA0B;IAE/C,YAAY,iBAAiB;IAC7B,aAAa,kBAAkB;IAE/B,cAAc,mBAAmB;IACjC,eAAe,oBAAoB;IAEnC,QAAQ,aAAa;IACrB,SAAS,cAAc;IAEvB,UAAU,eAAe;IACzB,WAAW,gBAAgB;IAE3B,WAAW,gBAAgB;IAC3B,YAAY,iBAAiB;IAE7B,aAAa,kBAAkB;IAC/B,cAAc,mBAAmB;IAEjC,aAAa,kBAAkB;IAC/B,cAAc,mBAAmB;IAEjC,uBAAuB,4BAA4B;IACnD,wBAAwB,6BAA6B;IAErD,aAAa,kBAAkB;IAC/B,cAAc,mBAAmB;IAEjC,aAAa,kBAAkB;IAC/B,cAAc,mBAAmB;IAEjC,iBAAiB,sBAAsB;IACvC,kBAAkB,uBAAuB;IAEzC,SAAS,cAAc;IACvB,UAAU,eAAe;IAEzB,UAAU,eAAe;IACzB,WAAW,gBAAgB;IAE3B,YAAY,iBAAiB;IAC7B,WAAW,gBAAgB;IAE3B,gBAAgB,qBAAqB;CACtC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"setup-status.enum.d.ts","sourceRoot":"","sources":["../../enums/setup-status.enum.ts"],"names":[],"mappings":"AAAA,oBAAY,eAAe;IACvB,OAAO,YAAY;IACnB,OAAO,YAAY;IACnB,OAAO,YAAY;CACtB"}
|
package/dist/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AACA,cAAc,uBAAuB,CAAC;AACtC,cAAc,0BAA0B,CAAC;AACzC,cAAc,yBAAyB,CAAC;AACxC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,gBAAgB,CAAC;AAC/B,cAAc,iCAAiC,CAAC;AAChD,cAAc,kCAAkC,CAAC;AACjD,cAAc,6BAA6B,CAAC;AAC5C,cAAc,0BAA0B,CAAC;AACzC,cAAc,mBAAmB,CAAC;AAClC,cAAc,kBAAkB,CAAC;AACjC,cAAc,mCAAmC,CAAC;AAClD,cAAc,sBAAsB,CAAC;AACrC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,0BAA0B,CAAC;AACzC,cAAc,iBAAiB,CAAC;AAGhC,cAAc,oCAAoC,CAAC;AACnD,cAAc,mCAAmC,CAAC;AAClD,cAAc,kCAAkC,CAAC;AAGjD,cAAc,gCAAgC,CAAC;AAC/C,cAAc,+BAA+B,CAAC;AAC9C,cAAc,8BAA8B,CAAC;AAG7C,cAAc,sBAAsB,CAAC;AACrC,cAAc,uBAAuB,CAAC;AACtC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,oBAAoB,CAAC;AACnC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,sBAAsB,CAAC;AACrC,cAAc,qBAAqB,CAAC;AACpC,cAAc,yBAAyB,CAAC"}
|