@escapenavigator/types 1.6.28 → 1.6.30
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/certificate-sale/certificate-sale.ro.d.ts +4 -1
- package/dist/certificate-sale/certificate-sale.ro.js +8 -2
- package/dist/emails/index.d.ts +1 -0
- package/dist/openapi/certificates/openapi-certificate-sale.ro.d.ts +10 -0
- package/dist/openapi/certificates/openapi-certificate-sale.ro.js +32 -45
- package/dist/openapi/orders/openapi-create-preorder.dto.d.ts +2 -0
- package/dist/openapi/orders/openapi-create-preorder.dto.js +7 -0
- package/dist/openapi/orders/openapi-order.ro.d.ts +1 -0
- package/dist/openapi/orders/openapi-order.ro.js +4 -0
- package/dist/openapi/orders/openapi-promocode-remove.dto.js +3 -0
- package/dist/order/order.ro.d.ts +8 -0
- package/dist/order/order.ro.js +29 -1
- package/dist/order/query-order.dto.d.ts +2 -1
- package/dist/order/query-order.dto.js +2 -1
- package/dist/profile/admin-profile.ro.d.ts +18 -4
- package/dist/profile/admin-profile.ro.js +50 -12
- package/dist/profile/create-profile.dto.d.ts +4 -2
- package/dist/profile/create-profile.dto.js +8 -2
- package/dist/profile/enum/partner-program.enum.d.ts +7 -0
- package/dist/profile/enum/partner-program.enum.js +11 -0
- package/dist/profile/enum/profile-integration-type.enum.d.ts +4 -0
- package/dist/profile/enum/profile-integration-type.enum.js +8 -0
- package/dist/profile/enum/profile-step.enum.d.ts +2 -7
- package/dist/profile/enum/profile-step.enum.js +22 -27
- package/dist/profile/enum/profile-subscription-type.enum.d.ts +5 -0
- package/dist/profile/enum/profile-subscription-type.enum.js +17 -0
- package/dist/profile/enum/profile-subscription.enum.d.ts +3 -2
- package/dist/profile/enum/profile-subscription.enum.js +11 -2
- package/dist/profile/profile-crm/profile-crm.ro.d.ts +1 -0
- package/dist/profile/profile.ro.d.ts +11 -3
- package/dist/profile/profile.ro.js +28 -8
- package/dist/profile/query-admin-profile.dto.d.ts +16 -0
- package/dist/profile/query-admin-profile.dto.js +53 -0
- package/dist/profile/subscription.ro.d.ts +16 -0
- package/dist/profile/subscription.ro.js +57 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +2 -2
- package/dist/profile/payment-settings.ro.d.ts +0 -9
- package/dist/profile/payment-settings.ro.js +0 -2
- package/dist/profile/profile-subscription.ro.d.ts +0 -8
- package/dist/profile/profile-subscription.ro.js +0 -35
- package/dist/profile/update-profile-step.dto.d.ts +0 -4
- package/dist/profile/update-profile-step.dto.js +0 -24
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ProfileSubscriptionTypeEnum = void 0;
|
|
4
|
+
var ProfileSubscriptionTypeEnum;
|
|
5
|
+
(function (ProfileSubscriptionTypeEnum) {
|
|
6
|
+
ProfileSubscriptionTypeEnum["NONE"] = "none";
|
|
7
|
+
ProfileSubscriptionTypeEnum["FREE"] = "free";
|
|
8
|
+
ProfileSubscriptionTypeEnum["PRO"] = "pro";
|
|
9
|
+
})(ProfileSubscriptionTypeEnum = exports.ProfileSubscriptionTypeEnum || (exports.ProfileSubscriptionTypeEnum = {}));
|
|
10
|
+
// trialing The subscription is currently in a trial period and it’s safe to provision your product for your customer. The subscription transitions automatically to active when the first payment is made.
|
|
11
|
+
// active The subscription is in good standing and the most recent payment is successful. It’s safe to provision your product for your customer.
|
|
12
|
+
// incomplete A successful payment needs to be made within 23 hours to activate the subscription. Or the payment requires action, like customer authentication. Subscriptions can also be incomplete if there’s a pending payment and the PaymentIntent status would be processing.
|
|
13
|
+
// incomplete_expired The initial payment on the subscription failed and no successful payment was made within 23 hours of creating the subscription. These subscriptions don’t bill customers. This status exists so you can track customers that failed to activate their subscriptions.
|
|
14
|
+
// past_due Payment on the latest finalized invoice either failed or wasn’t attempted. The subscription continues to create invoices. Your subscription settings determine the subscription’s next state. If the invoice is still unpaid after all Smart Retries have been attempted, you can configure the subscription to move to canceled, unpaid, or leave it as past_due. To move the subscription to active, pay the most recent invoice before its due date.
|
|
15
|
+
// canceled The subscription has been canceled. During cancellation, automatic collection for all unpaid invoices is disabled (auto_advance=false). This is a terminal state that can’t be updated.
|
|
16
|
+
// unpaid The latest invoice hasn’t been paid but the subscription remains in place. The latest invoice remains open and invoices continue to be generated but payments aren’t attempted. You should revoke access to your product when the subscription is unpaid since payments were already attempted and retried when it was past_due. To move the subscription to active, pay the most recent invoice before its due date.
|
|
17
|
+
// paused
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
export declare enum ProfileSubscriptionEnum {
|
|
2
|
-
|
|
2
|
+
NONE = "none",
|
|
3
|
+
CANCELED = "canceled",
|
|
3
4
|
INCOMPLITE_EXPIRED = "incomplete_expired",
|
|
5
|
+
INCOMPLITE = "incomplete",
|
|
4
6
|
TRAILING = "trialing",
|
|
5
7
|
ACTIVE = "active",
|
|
6
8
|
PAST_DUE = "past_due",
|
|
7
|
-
CANCELED = "canceled",
|
|
8
9
|
UNPAID = "unpaid",
|
|
9
10
|
PAUSED = "paused"
|
|
10
11
|
}
|
|
@@ -3,12 +3,21 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.ProfileSubscriptionEnum = void 0;
|
|
4
4
|
var ProfileSubscriptionEnum;
|
|
5
5
|
(function (ProfileSubscriptionEnum) {
|
|
6
|
-
ProfileSubscriptionEnum["
|
|
6
|
+
ProfileSubscriptionEnum["NONE"] = "none";
|
|
7
|
+
ProfileSubscriptionEnum["CANCELED"] = "canceled";
|
|
7
8
|
ProfileSubscriptionEnum["INCOMPLITE_EXPIRED"] = "incomplete_expired";
|
|
9
|
+
ProfileSubscriptionEnum["INCOMPLITE"] = "incomplete";
|
|
8
10
|
ProfileSubscriptionEnum["TRAILING"] = "trialing";
|
|
9
11
|
ProfileSubscriptionEnum["ACTIVE"] = "active";
|
|
10
12
|
ProfileSubscriptionEnum["PAST_DUE"] = "past_due";
|
|
11
|
-
ProfileSubscriptionEnum["CANCELED"] = "canceled";
|
|
12
13
|
ProfileSubscriptionEnum["UNPAID"] = "unpaid";
|
|
13
14
|
ProfileSubscriptionEnum["PAUSED"] = "paused";
|
|
14
15
|
})(ProfileSubscriptionEnum = exports.ProfileSubscriptionEnum || (exports.ProfileSubscriptionEnum = {}));
|
|
16
|
+
// trialing The subscription is currently in a trial period and it’s safe to provision your product for your customer. The subscription transitions automatically to active when the first payment is made.
|
|
17
|
+
// active The subscription is in good standing and the most recent payment is successful. It’s safe to provision your product for your customer.
|
|
18
|
+
// incomplete A successful payment needs to be made within 23 hours to activate the subscription. Or the payment requires action, like customer authentication. Subscriptions can also be incomplete if there’s a pending payment and the PaymentIntent status would be processing.
|
|
19
|
+
// incomplete_expired The initial payment on the subscription failed and no successful payment was made within 23 hours of creating the subscription. These subscriptions don’t bill customers. This status exists so you can track customers that failed to activate their subscriptions.
|
|
20
|
+
// past_due Payment on the latest finalized invoice either failed or wasn’t attempted. The subscription continues to create invoices. Your subscription settings determine the subscription’s next state. If the invoice is still unpaid after all Smart Retries have been attempted, you can configure the subscription to move to canceled, unpaid, or leave it as past_due. To move the subscription to active, pay the most recent invoice before its due date.
|
|
21
|
+
// canceled The subscription has been canceled. During cancellation, automatic collection for all unpaid invoices is disabled (auto_advance=false). This is a terminal state that can’t be updated.
|
|
22
|
+
// unpaid The latest invoice hasn’t been paid but the subscription remains in place. The latest invoice remains open and invoices continue to be generated but payments aren’t attempted. You should revoke access to your product when the subscription is unpaid since payments were already attempted and retried when it was past_due. To move the subscription to active, pay the most recent invoice before its due date.
|
|
23
|
+
// paused
|
|
@@ -1,8 +1,18 @@
|
|
|
1
1
|
import { CountriesEnum } from '../shared/enum/countries.enum';
|
|
2
2
|
import { Languages } from '../shared/enum/languages.enum';
|
|
3
3
|
import { WidgetBookingFiledEnum } from '../widget/enum/widget-booking-filed.enum';
|
|
4
|
-
import {
|
|
4
|
+
import { PartnerProgramEnum } from './enum/partner-program.enum';
|
|
5
|
+
import { ProfileIntegrationTypeEnum } from './enum/profile-integration-type.enum';
|
|
6
|
+
import { ProfileStatusEnum } from './enum/profile-step.enum';
|
|
7
|
+
import { ProfileSubscriptionTypeEnum } from './enum/profile-subscription-type.enum';
|
|
8
|
+
import { ProfileSubscriptionEnum } from './enum/profile-subscription.enum';
|
|
5
9
|
export declare class ProfileRO {
|
|
10
|
+
partnerProgram: PartnerProgramEnum;
|
|
11
|
+
subscriptionStatus: ProfileSubscriptionEnum;
|
|
12
|
+
subscriptionType: ProfileSubscriptionTypeEnum;
|
|
13
|
+
subscriptionCancelationDate: number;
|
|
14
|
+
status: ProfileStatusEnum;
|
|
15
|
+
integrationType: ProfileIntegrationTypeEnum;
|
|
6
16
|
id: number;
|
|
7
17
|
createdAt: Date;
|
|
8
18
|
title: string;
|
|
@@ -13,13 +23,11 @@ export declare class ProfileRO {
|
|
|
13
23
|
site: string;
|
|
14
24
|
agreementLink: string;
|
|
15
25
|
crm: string;
|
|
16
|
-
hasWidgets: boolean;
|
|
17
26
|
slug: string;
|
|
18
27
|
language: Languages;
|
|
19
28
|
availableLanguages: Languages[];
|
|
20
29
|
country: CountriesEnum;
|
|
21
30
|
locationsCount: number;
|
|
22
31
|
questroomsCount: number;
|
|
23
|
-
step: ProfileStepEnum;
|
|
24
32
|
bookingFields: WidgetBookingFiledEnum[];
|
|
25
33
|
}
|
|
@@ -14,9 +14,37 @@ exports.ProfileRO = void 0;
|
|
|
14
14
|
const class_transformer_1 = require("class-transformer");
|
|
15
15
|
const countries_enum_1 = require("../shared/enum/countries.enum");
|
|
16
16
|
const languages_enum_1 = require("../shared/enum/languages.enum");
|
|
17
|
+
const partner_program_enum_1 = require("./enum/partner-program.enum");
|
|
18
|
+
const profile_integration_type_enum_1 = require("./enum/profile-integration-type.enum");
|
|
17
19
|
const profile_step_enum_1 = require("./enum/profile-step.enum");
|
|
20
|
+
const profile_subscription_type_enum_1 = require("./enum/profile-subscription-type.enum");
|
|
21
|
+
const profile_subscription_enum_1 = require("./enum/profile-subscription.enum");
|
|
18
22
|
class ProfileRO {
|
|
19
23
|
}
|
|
24
|
+
__decorate([
|
|
25
|
+
(0, class_transformer_1.Expose)(),
|
|
26
|
+
__metadata("design:type", String)
|
|
27
|
+
], ProfileRO.prototype, "partnerProgram", void 0);
|
|
28
|
+
__decorate([
|
|
29
|
+
(0, class_transformer_1.Expose)(),
|
|
30
|
+
__metadata("design:type", String)
|
|
31
|
+
], ProfileRO.prototype, "subscriptionStatus", void 0);
|
|
32
|
+
__decorate([
|
|
33
|
+
(0, class_transformer_1.Expose)(),
|
|
34
|
+
__metadata("design:type", String)
|
|
35
|
+
], ProfileRO.prototype, "subscriptionType", void 0);
|
|
36
|
+
__decorate([
|
|
37
|
+
(0, class_transformer_1.Expose)(),
|
|
38
|
+
__metadata("design:type", Number)
|
|
39
|
+
], ProfileRO.prototype, "subscriptionCancelationDate", void 0);
|
|
40
|
+
__decorate([
|
|
41
|
+
(0, class_transformer_1.Expose)(),
|
|
42
|
+
__metadata("design:type", String)
|
|
43
|
+
], ProfileRO.prototype, "status", void 0);
|
|
44
|
+
__decorate([
|
|
45
|
+
(0, class_transformer_1.Expose)(),
|
|
46
|
+
__metadata("design:type", String)
|
|
47
|
+
], ProfileRO.prototype, "integrationType", void 0);
|
|
20
48
|
__decorate([
|
|
21
49
|
(0, class_transformer_1.Expose)(),
|
|
22
50
|
__metadata("design:type", Number)
|
|
@@ -57,10 +85,6 @@ __decorate([
|
|
|
57
85
|
(0, class_transformer_1.Expose)(),
|
|
58
86
|
__metadata("design:type", String)
|
|
59
87
|
], ProfileRO.prototype, "crm", void 0);
|
|
60
|
-
__decorate([
|
|
61
|
-
(0, class_transformer_1.Expose)(),
|
|
62
|
-
__metadata("design:type", Boolean)
|
|
63
|
-
], ProfileRO.prototype, "hasWidgets", void 0);
|
|
64
88
|
__decorate([
|
|
65
89
|
(0, class_transformer_1.Expose)(),
|
|
66
90
|
__metadata("design:type", String)
|
|
@@ -85,10 +109,6 @@ __decorate([
|
|
|
85
109
|
(0, class_transformer_1.Expose)(),
|
|
86
110
|
__metadata("design:type", Number)
|
|
87
111
|
], ProfileRO.prototype, "questroomsCount", void 0);
|
|
88
|
-
__decorate([
|
|
89
|
-
(0, class_transformer_1.Expose)(),
|
|
90
|
-
__metadata("design:type", String)
|
|
91
|
-
], ProfileRO.prototype, "step", void 0);
|
|
92
112
|
__decorate([
|
|
93
113
|
(0, class_transformer_1.Expose)(),
|
|
94
114
|
__metadata("design:type", Array)
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { CountriesEnum } from '../shared/enum/countries.enum';
|
|
2
|
+
import { PartnerProgramEnum } from './enum/partner-program.enum';
|
|
3
|
+
import { ProfileIntegrationTypeEnum } from './enum/profile-integration-type.enum';
|
|
4
|
+
import { ProfileStatusEnum } from './enum/profile-step.enum';
|
|
5
|
+
import { ProfileSubscriptionTypeEnum } from './enum/profile-subscription-type.enum';
|
|
6
|
+
import { ProfileSubscriptionEnum } from './enum/profile-subscription.enum';
|
|
7
|
+
export declare class QueryAdminProfileDto {
|
|
8
|
+
partnerProgram?: PartnerProgramEnum;
|
|
9
|
+
subscriptionStatus?: ProfileSubscriptionEnum[];
|
|
10
|
+
subscriptionType?: ProfileSubscriptionTypeEnum;
|
|
11
|
+
subscriptionCancelationDate?: boolean;
|
|
12
|
+
status?: ProfileStatusEnum[];
|
|
13
|
+
country?: CountriesEnum;
|
|
14
|
+
crm?: string;
|
|
15
|
+
integrationType?: ProfileIntegrationTypeEnum;
|
|
16
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
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.QueryAdminProfileDto = void 0;
|
|
13
|
+
/* eslint-disable max-classes-per-file */
|
|
14
|
+
const class_transformer_1 = require("class-transformer");
|
|
15
|
+
const countries_enum_1 = require("../shared/enum/countries.enum");
|
|
16
|
+
const partner_program_enum_1 = require("./enum/partner-program.enum");
|
|
17
|
+
const profile_integration_type_enum_1 = require("./enum/profile-integration-type.enum");
|
|
18
|
+
const profile_subscription_type_enum_1 = require("./enum/profile-subscription-type.enum");
|
|
19
|
+
class QueryAdminProfileDto {
|
|
20
|
+
}
|
|
21
|
+
__decorate([
|
|
22
|
+
(0, class_transformer_1.Expose)(),
|
|
23
|
+
__metadata("design:type", String)
|
|
24
|
+
], QueryAdminProfileDto.prototype, "partnerProgram", void 0);
|
|
25
|
+
__decorate([
|
|
26
|
+
(0, class_transformer_1.Expose)(),
|
|
27
|
+
__metadata("design:type", Array)
|
|
28
|
+
], QueryAdminProfileDto.prototype, "subscriptionStatus", void 0);
|
|
29
|
+
__decorate([
|
|
30
|
+
(0, class_transformer_1.Expose)(),
|
|
31
|
+
__metadata("design:type", String)
|
|
32
|
+
], QueryAdminProfileDto.prototype, "subscriptionType", void 0);
|
|
33
|
+
__decorate([
|
|
34
|
+
(0, class_transformer_1.Expose)(),
|
|
35
|
+
__metadata("design:type", Boolean)
|
|
36
|
+
], QueryAdminProfileDto.prototype, "subscriptionCancelationDate", void 0);
|
|
37
|
+
__decorate([
|
|
38
|
+
(0, class_transformer_1.Expose)(),
|
|
39
|
+
__metadata("design:type", Array)
|
|
40
|
+
], QueryAdminProfileDto.prototype, "status", void 0);
|
|
41
|
+
__decorate([
|
|
42
|
+
(0, class_transformer_1.Expose)(),
|
|
43
|
+
__metadata("design:type", String)
|
|
44
|
+
], QueryAdminProfileDto.prototype, "country", void 0);
|
|
45
|
+
__decorate([
|
|
46
|
+
(0, class_transformer_1.Expose)(),
|
|
47
|
+
__metadata("design:type", String)
|
|
48
|
+
], QueryAdminProfileDto.prototype, "crm", void 0);
|
|
49
|
+
__decorate([
|
|
50
|
+
(0, class_transformer_1.Expose)(),
|
|
51
|
+
__metadata("design:type", String)
|
|
52
|
+
], QueryAdminProfileDto.prototype, "integrationType", void 0);
|
|
53
|
+
exports.QueryAdminProfileDto = QueryAdminProfileDto;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { ProfileRO } from './profile.ro';
|
|
2
|
+
declare class PaymentMethod {
|
|
3
|
+
id: string;
|
|
4
|
+
brand: string;
|
|
5
|
+
last4: string;
|
|
6
|
+
exp: string;
|
|
7
|
+
}
|
|
8
|
+
declare class PaymentSettings {
|
|
9
|
+
billingEmail?: string;
|
|
10
|
+
paymentMethod?: PaymentMethod;
|
|
11
|
+
}
|
|
12
|
+
export declare class SubscriptionRO {
|
|
13
|
+
profile: ProfileRO;
|
|
14
|
+
paymentSettings: PaymentSettings;
|
|
15
|
+
}
|
|
16
|
+
export {};
|
|
@@ -0,0 +1,57 @@
|
|
|
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.SubscriptionRO = void 0;
|
|
13
|
+
/* eslint-disable max-classes-per-file */
|
|
14
|
+
const class_transformer_1 = require("class-transformer");
|
|
15
|
+
const profile_ro_1 = require("./profile.ro");
|
|
16
|
+
class PaymentMethod {
|
|
17
|
+
}
|
|
18
|
+
__decorate([
|
|
19
|
+
(0, class_transformer_1.Expose)(),
|
|
20
|
+
__metadata("design:type", String)
|
|
21
|
+
], PaymentMethod.prototype, "id", void 0);
|
|
22
|
+
__decorate([
|
|
23
|
+
(0, class_transformer_1.Expose)(),
|
|
24
|
+
__metadata("design:type", String)
|
|
25
|
+
], PaymentMethod.prototype, "brand", void 0);
|
|
26
|
+
__decorate([
|
|
27
|
+
(0, class_transformer_1.Expose)(),
|
|
28
|
+
__metadata("design:type", String)
|
|
29
|
+
], PaymentMethod.prototype, "last4", void 0);
|
|
30
|
+
__decorate([
|
|
31
|
+
(0, class_transformer_1.Expose)(),
|
|
32
|
+
__metadata("design:type", String)
|
|
33
|
+
], PaymentMethod.prototype, "exp", void 0);
|
|
34
|
+
class PaymentSettings {
|
|
35
|
+
}
|
|
36
|
+
__decorate([
|
|
37
|
+
(0, class_transformer_1.Expose)(),
|
|
38
|
+
__metadata("design:type", String)
|
|
39
|
+
], PaymentSettings.prototype, "billingEmail", void 0);
|
|
40
|
+
__decorate([
|
|
41
|
+
(0, class_transformer_1.Expose)(),
|
|
42
|
+
(0, class_transformer_1.Type)(() => PaymentMethod),
|
|
43
|
+
__metadata("design:type", PaymentMethod)
|
|
44
|
+
], PaymentSettings.prototype, "paymentMethod", void 0);
|
|
45
|
+
class SubscriptionRO {
|
|
46
|
+
}
|
|
47
|
+
__decorate([
|
|
48
|
+
(0, class_transformer_1.Expose)(),
|
|
49
|
+
(0, class_transformer_1.Type)(() => profile_ro_1.ProfileRO),
|
|
50
|
+
__metadata("design:type", profile_ro_1.ProfileRO)
|
|
51
|
+
], SubscriptionRO.prototype, "profile", void 0);
|
|
52
|
+
__decorate([
|
|
53
|
+
(0, class_transformer_1.Expose)(),
|
|
54
|
+
(0, class_transformer_1.Type)(() => PaymentSettings),
|
|
55
|
+
__metadata("design:type", PaymentSettings)
|
|
56
|
+
], SubscriptionRO.prototype, "paymentSettings", void 0);
|
|
57
|
+
exports.SubscriptionRO = SubscriptionRO;
|