@escapenavigator/types 1.9.44 → 1.10.1

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.
@@ -29,6 +29,7 @@ export declare class AdminProfileRO {
29
29
  createdAt: Date;
30
30
  title: string;
31
31
  legalTitle: string;
32
+ inn: string;
32
33
  phoneForCustomers: string;
33
34
  logo: string;
34
35
  tags: ProfileTagEnum[];
@@ -98,6 +98,10 @@ __decorate([
98
98
  (0, class_transformer_1.Expose)(),
99
99
  __metadata("design:type", String)
100
100
  ], AdminProfileRO.prototype, "legalTitle", void 0);
101
+ __decorate([
102
+ (0, class_transformer_1.Expose)(),
103
+ __metadata("design:type", String)
104
+ ], AdminProfileRO.prototype, "inn", void 0);
101
105
  __decorate([
102
106
  (0, class_transformer_1.Expose)(),
103
107
  __metadata("design:type", String)
@@ -4,6 +4,7 @@ import { ProfileCurrencyEnum } from './enum/profile-currency';
4
4
  export declare type AgregatorProfileRO = ResponseObject & {
5
5
  title: string;
6
6
  legalTitle: string;
7
+ inn: string;
7
8
  logo?: string;
8
9
  language: Languages;
9
10
  currency: ProfileCurrencyEnum;
@@ -19,6 +19,7 @@ export declare class CreateProfileDto {
19
19
  secondaryEmails: string[];
20
20
  tags: ProfileTagEnum[];
21
21
  legalTitle: string;
22
+ inn: string;
22
23
  instagram?: string;
23
24
  facebook?: string;
24
25
  availableLanguages: Languages[];
@@ -94,6 +94,11 @@ __decorate([
94
94
  (0, class_transformer_1.Expose)(),
95
95
  __metadata("design:type", String)
96
96
  ], CreateProfileDto.prototype, "legalTitle", void 0);
97
+ __decorate([
98
+ (0, class_validator_1.IsOptional)(),
99
+ (0, class_transformer_1.Expose)(),
100
+ __metadata("design:type", String)
101
+ ], CreateProfileDto.prototype, "inn", void 0);
97
102
  __decorate([
98
103
  (0, class_validator_1.IsOptional)(),
99
104
  (0, class_validator_1.IsString)(),
@@ -2,7 +2,7 @@ import { RO } from '../../shared/ro-class';
2
2
  import { TelegramNotificationTypeEnum } from './telegram-notification-type.enum';
3
3
  export declare class TelegramChanelRO extends RO {
4
4
  title: string;
5
- chatId: number;
5
+ chatId: string;
6
6
  type: TelegramNotificationTypeEnum[];
7
7
  allLocations: boolean;
8
8
  locationIds: number[];
@@ -20,7 +20,7 @@ __decorate([
20
20
  ], TelegramChanelRO.prototype, "title", void 0);
21
21
  __decorate([
22
22
  (0, class_transformer_1.Expose)(),
23
- __metadata("design:type", Number)
23
+ __metadata("design:type", String)
24
24
  ], TelegramChanelRO.prototype, "chatId", void 0);
25
25
  __decorate([
26
26
  (0, class_transformer_1.Expose)(),