@xoxno/types 1.0.163 → 1.0.164
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.
|
@@ -49,3 +49,9 @@ export declare class CollectionProfileDoc {
|
|
|
49
49
|
_ts?: number;
|
|
50
50
|
constructor(props?: Partial<CollectionProfileDoc>);
|
|
51
51
|
}
|
|
52
|
+
declare type CollectionProfileEditDto_base = Partial<Pick<CollectionProfileDoc, "description" | "name">>;
|
|
53
|
+
export declare type CollectionProfileEditDto = CollectionProfileEditDto_base ;
|
|
54
|
+
declare const CollectionProfileEditDtoNest_base: import("@nestjs/common").Type<Partial<Pick<CollectionProfileDoc, "description" | "name">>>;
|
|
55
|
+
export declare class CollectionProfileEditDtoNest extends CollectionProfileEditDtoNest_base {
|
|
56
|
+
}
|
|
57
|
+
export {};
|
|
@@ -9,7 +9,7 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
9
9
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
10
|
};
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
exports.CollectionProfileDoc = exports.TransferPolicy = exports.Rule = void 0;
|
|
12
|
+
exports.CollectionProfileEditDto = exports.CollectionProfileDoc = exports.TransferPolicy = exports.Rule = void 0;
|
|
13
13
|
const swagger_1 = require("@nestjs/swagger");
|
|
14
14
|
const common_enum_1 = require("../../../enums/common.enum");
|
|
15
15
|
const socials_1 = require("../../../common/socials");
|
|
@@ -332,3 +332,8 @@ __decorate([
|
|
|
332
332
|
}),
|
|
333
333
|
__metadata("design:type", Number)
|
|
334
334
|
], CollectionProfileDoc.prototype, "_ts", void 0);
|
|
335
|
+
class CollectionProfileEditDto extends (0, swagger_1.PartialType)((0, swagger_1.PickType)(CollectionProfileDoc, ['description', 'name'])) {
|
|
336
|
+
}
|
|
337
|
+
exports.CollectionProfileEditDto = CollectionProfileEditDto;
|
|
338
|
+
|
|
339
|
+
exports.CollectionProfileEditDtoNest = CollectionProfileEditDto;
|