add updateDeedType group
This commit is contained in:
parent
16baf46d39
commit
a3b880c50b
2
dist/Customer/Document.d.ts
vendored
2
dist/Customer/Document.d.ts
vendored
@ -18,6 +18,6 @@ export default class Document extends Resource {
|
|||||||
export declare enum EDocumentStatus {
|
export declare enum EDocumentStatus {
|
||||||
ASKED = "ASKED",
|
ASKED = "ASKED",
|
||||||
DEPOSITED = "DEPOSITED",
|
DEPOSITED = "DEPOSITED",
|
||||||
VALIDATED = "VALIDATED",
|
VALIDATED = "c",
|
||||||
REFUSED = "REFUSED"
|
REFUSED = "REFUSED"
|
||||||
}
|
}
|
||||||
|
2
dist/Customer/Document.js
vendored
2
dist/Customer/Document.js
vendored
@ -77,6 +77,6 @@ var EDocumentStatus;
|
|||||||
(function (EDocumentStatus) {
|
(function (EDocumentStatus) {
|
||||||
EDocumentStatus["ASKED"] = "ASKED";
|
EDocumentStatus["ASKED"] = "ASKED";
|
||||||
EDocumentStatus["DEPOSITED"] = "DEPOSITED";
|
EDocumentStatus["DEPOSITED"] = "DEPOSITED";
|
||||||
EDocumentStatus["VALIDATED"] = "VALIDATED";
|
EDocumentStatus["VALIDATED"] = "c";
|
||||||
EDocumentStatus["REFUSED"] = "REFUSED";
|
EDocumentStatus["REFUSED"] = "REFUSED";
|
||||||
})(EDocumentStatus = exports.EDocumentStatus || (exports.EDocumentStatus = {}));
|
})(EDocumentStatus = exports.EDocumentStatus || (exports.EDocumentStatus = {}));
|
||||||
|
4
dist/Notary/DeedType.js
vendored
4
dist/Notary/DeedType.js
vendored
@ -46,12 +46,12 @@ __decorate([
|
|||||||
], DeedType.prototype, "uid", void 0);
|
], DeedType.prototype, "uid", void 0);
|
||||||
__decorate([
|
__decorate([
|
||||||
(0, class_transformer_1.Expose)(),
|
(0, class_transformer_1.Expose)(),
|
||||||
(0, class_validator_1.IsNotEmpty)({ groups: ["createDeedType"], message: "Name is required" }),
|
(0, class_validator_1.IsNotEmpty)({ groups: ["createDeedType", "updateDeedType"], message: "Name is required" }),
|
||||||
__metadata("design:type", String)
|
__metadata("design:type", String)
|
||||||
], DeedType.prototype, "name", void 0);
|
], DeedType.prototype, "name", void 0);
|
||||||
__decorate([
|
__decorate([
|
||||||
(0, class_transformer_1.Expose)(),
|
(0, class_transformer_1.Expose)(),
|
||||||
(0, class_validator_1.IsNotEmpty)({ groups: ["createDeedType"], message: "Description is required" }),
|
(0, class_validator_1.IsNotEmpty)({ groups: ["createDeedType", "updateDeedType"], message: "Description is required" }),
|
||||||
__metadata("design:type", String)
|
__metadata("design:type", String)
|
||||||
], DeedType.prototype, "description", void 0);
|
], DeedType.prototype, "description", void 0);
|
||||||
__decorate([
|
__decorate([
|
||||||
|
@ -48,6 +48,6 @@ export default class Document extends Resource {
|
|||||||
export enum EDocumentStatus {
|
export enum EDocumentStatus {
|
||||||
ASKED = "ASKED",
|
ASKED = "ASKED",
|
||||||
DEPOSITED = "DEPOSITED",
|
DEPOSITED = "DEPOSITED",
|
||||||
VALIDATED = "VALIDATED",
|
VALIDATED = "c",
|
||||||
REFUSED = "REFUSED",
|
REFUSED = "REFUSED",
|
||||||
}
|
}
|
||||||
|
@ -12,11 +12,11 @@ export default class DeedType extends DeedTypeCustomer {
|
|||||||
public override uid?: string;
|
public override uid?: string;
|
||||||
|
|
||||||
@Expose()
|
@Expose()
|
||||||
@IsNotEmpty({ groups: ["createDeedType"], message: "Name is required" })
|
@IsNotEmpty({ groups: ["createDeedType", "updateDeedType"], message: "Name is required" })
|
||||||
public override name!: string;
|
public override name!: string;
|
||||||
|
|
||||||
@Expose()
|
@Expose()
|
||||||
@IsNotEmpty({ groups: ["createDeedType"], message: "Description is required" })
|
@IsNotEmpty({ groups: ["createDeedType", "updateDeedType"], message: "Description is required" })
|
||||||
public override description!: string;
|
public override description!: string;
|
||||||
|
|
||||||
@Expose()
|
@Expose()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user