@escapenavigator/types 1.9.16 → 1.9.17

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.
@@ -47,6 +47,8 @@ export declare class OpenapiWidgetInfoRO {
47
47
  gaCoversationId: string;
48
48
  gaCoversationLabel: string;
49
49
  gaEnabled: boolean;
50
+ fbPixelEnabled: boolean;
51
+ fbPixelId: string;
50
52
  customization: Customization;
51
53
  mailchimp?: string | Mailchimp;
52
54
  }
@@ -162,6 +162,14 @@ __decorate([
162
162
  (0, class_transformer_1.Expose)(),
163
163
  __metadata("design:type", Boolean)
164
164
  ], OpenapiWidgetInfoRO.prototype, "gaEnabled", void 0);
165
+ __decorate([
166
+ (0, class_transformer_1.Expose)(),
167
+ __metadata("design:type", Boolean)
168
+ ], OpenapiWidgetInfoRO.prototype, "fbPixelEnabled", void 0);
169
+ __decorate([
170
+ (0, class_transformer_1.Expose)(),
171
+ __metadata("design:type", String)
172
+ ], OpenapiWidgetInfoRO.prototype, "fbPixelId", void 0);
165
173
  __decorate([
166
174
  (0, class_transformer_1.Expose)(),
167
175
  (0, class_transformer_1.Type)(() => Customization),
@@ -9,6 +9,8 @@ import { ProfileSubscriptionTypeEnum } from './enum/profile-subscription-type.en
9
9
  import { ProfileSubscriptionEnum } from './enum/profile-subscription.enum';
10
10
  export declare class ProfileRO {
11
11
  gaEnabled: boolean;
12
+ fbPixelEnabled: boolean;
13
+ fbPixelId: string;
12
14
  ga4Id: string;
13
15
  gaCoversationId: string;
14
16
  gaCoversationLabel: string;
@@ -26,6 +26,14 @@ __decorate([
26
26
  (0, class_transformer_1.Expose)(),
27
27
  __metadata("design:type", Boolean)
28
28
  ], ProfileRO.prototype, "gaEnabled", void 0);
29
+ __decorate([
30
+ (0, class_transformer_1.Expose)(),
31
+ __metadata("design:type", Boolean)
32
+ ], ProfileRO.prototype, "fbPixelEnabled", void 0);
33
+ __decorate([
34
+ (0, class_transformer_1.Expose)(),
35
+ __metadata("design:type", String)
36
+ ], ProfileRO.prototype, "fbPixelId", void 0);
29
37
  __decorate([
30
38
  (0, class_transformer_1.Expose)(),
31
39
  __metadata("design:type", String)
@@ -7,6 +7,8 @@ export declare class UpdateCurrentDto extends UpdateCurrentBaseDto {
7
7
  adminBookingFields: WidgetBookingFiledEnum[];
8
8
  logo: string;
9
9
  gaEnabled: boolean;
10
+ fbPixelEnabled: boolean;
11
+ fbPixelId: string;
10
12
  ga4Id: string;
11
13
  nowEscape: boolean;
12
14
  gaCoversationId: string;
@@ -47,6 +47,16 @@ __decorate([
47
47
  (0, class_transformer_1.Expose)(),
48
48
  __metadata("design:type", Boolean)
49
49
  ], UpdateCurrentDto.prototype, "gaEnabled", void 0);
50
+ __decorate([
51
+ (0, class_validator_1.IsOptional)(),
52
+ (0, class_transformer_1.Expose)(),
53
+ __metadata("design:type", Boolean)
54
+ ], UpdateCurrentDto.prototype, "fbPixelEnabled", void 0);
55
+ __decorate([
56
+ (0, class_validator_1.IsOptional)(),
57
+ (0, class_transformer_1.Expose)(),
58
+ __metadata("design:type", String)
59
+ ], UpdateCurrentDto.prototype, "fbPixelId", void 0);
50
60
  __decorate([
51
61
  (0, class_validator_1.IsOptional)(),
52
62
  (0, class_transformer_1.Expose)(),