@xoxno/types 1.0.128 → 1.0.130
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.
|
@@ -131,3 +131,11 @@ __decorate([
|
|
|
131
131
|
}),
|
|
132
132
|
__metadata("design:type", String)
|
|
133
133
|
], UserProfileDoc.prototype, "id", void 0);
|
|
134
|
+
__decorate([
|
|
135
|
+
(0, swagger_1.ApiProperty)({
|
|
136
|
+
example: true,
|
|
137
|
+
description: 'Wether analytics are enabled',
|
|
138
|
+
required: false,
|
|
139
|
+
}),
|
|
140
|
+
__metadata("design:type", Boolean)
|
|
141
|
+
], UserProfileDoc.prototype, "isAnalyticsEnabled", void 0);
|
|
@@ -10,9 +10,9 @@ declare class UserSettingsDto {
|
|
|
10
10
|
export declare class UserProfileDto extends UserProfileDoc {
|
|
11
11
|
userSettings: UserSettingsDto;
|
|
12
12
|
}
|
|
13
|
-
declare type UserProfileEditDto_base = Partial<Pick<UserProfileDoc, "description" | "profile" | "socials" | "
|
|
13
|
+
declare type UserProfileEditDto_base = Partial<Pick<UserProfileDoc, "description" | "profile" | "socials" | "isAnalyticsEnabled">>;
|
|
14
14
|
export declare type UserProfileEditDto = UserProfileEditDto_base ;
|
|
15
|
-
declare const UserProfileEditDtoNest_base: import("@nestjs/common").Type<Partial<Pick<UserProfileDoc, "description" | "profile" | "socials" | "
|
|
15
|
+
declare const UserProfileEditDtoNest_base: import("@nestjs/common").Type<Partial<Pick<UserProfileDoc, "description" | "profile" | "socials" | "isAnalyticsEnabled">>>;
|
|
16
16
|
export declare class UserProfileEditDtoNest extends UserProfileEditDtoNest_base {
|
|
17
17
|
}
|
|
18
18
|
export {};
|