add custom index for each namespace
This commit is contained in:
parent
afccc95bfb
commit
561f49e9cb
7
dist/Admin/Address.d.ts
vendored
7
dist/Admin/Address.d.ts
vendored
@ -1,6 +1,3 @@
|
||||
import Address_ from "../Notary/Address";
|
||||
declare namespace Address {
|
||||
class IAddress extends Address_.IAddress {
|
||||
}
|
||||
}
|
||||
export * from "../Notary/Address";
|
||||
import Address from "../Notary/Address";
|
||||
export default Address;
|
||||
|
23
dist/Admin/Address.js
vendored
23
dist/Admin/Address.js
vendored
@ -1,13 +1,22 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
||||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
||||
};
|
||||
var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
__exportStar(require("../Notary/Address"), exports);
|
||||
const Address_1 = __importDefault(require("../Notary/Address"));
|
||||
var Address;
|
||||
(function (Address) {
|
||||
class IAddress extends Address_1.default.IAddress {
|
||||
}
|
||||
Address.IAddress = IAddress;
|
||||
})(Address || (Address = {}));
|
||||
exports.default = Address;
|
||||
exports.default = Address_1.default;
|
||||
|
7
dist/Admin/Contact.d.ts
vendored
7
dist/Admin/Contact.d.ts
vendored
@ -1,6 +1,3 @@
|
||||
import Contact_ from "../Notary/Contact";
|
||||
declare namespace Contact {
|
||||
class IContact extends Contact_.IContact {
|
||||
}
|
||||
}
|
||||
export * from "../Notary/Contact";
|
||||
import Contact from "../Notary/Contact";
|
||||
export default Contact;
|
||||
|
23
dist/Admin/Contact.js
vendored
23
dist/Admin/Contact.js
vendored
@ -1,13 +1,22 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
||||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
||||
};
|
||||
var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
__exportStar(require("../Notary/Contact"), exports);
|
||||
const Contact_1 = __importDefault(require("../Notary/Contact"));
|
||||
var Contact;
|
||||
(function (Contact) {
|
||||
class IContact extends Contact_1.default.IContact {
|
||||
}
|
||||
Contact.IContact = IContact;
|
||||
})(Contact || (Contact = {}));
|
||||
exports.default = Contact;
|
||||
exports.default = Contact_1.default;
|
||||
|
7
dist/Admin/Customer.d.ts
vendored
7
dist/Admin/Customer.d.ts
vendored
@ -1,6 +1,3 @@
|
||||
import Customer_ from "../Customer";
|
||||
declare namespace Customer {
|
||||
class ICustomer extends Customer_.ICustomer {
|
||||
}
|
||||
}
|
||||
export * from "../Notary/Customer";
|
||||
import Customer from "../Notary/Customer";
|
||||
export default Customer;
|
||||
|
25
dist/Admin/Customer.js
vendored
25
dist/Admin/Customer.js
vendored
@ -1,13 +1,22 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
||||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
||||
};
|
||||
var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
const Customer_1 = __importDefault(require("../Customer"));
|
||||
var Customer;
|
||||
(function (Customer) {
|
||||
class ICustomer extends Customer_1.default.ICustomer {
|
||||
}
|
||||
Customer.ICustomer = ICustomer;
|
||||
})(Customer || (Customer = {}));
|
||||
exports.default = Customer;
|
||||
__exportStar(require("../Notary/Customer"), exports);
|
||||
const Customer_1 = __importDefault(require("../Notary/Customer"));
|
||||
exports.default = Customer_1.default;
|
||||
|
7
dist/Admin/Deed.d.ts
vendored
7
dist/Admin/Deed.d.ts
vendored
@ -1,6 +1,3 @@
|
||||
import Deed_ from "../Notary/Deed";
|
||||
declare namespace Deed {
|
||||
class IDeed extends Deed_.IDeed {
|
||||
}
|
||||
}
|
||||
export * from "../Notary/Deed";
|
||||
import Deed from "../Notary/Deed";
|
||||
export default Deed;
|
||||
|
23
dist/Admin/Deed.js
vendored
23
dist/Admin/Deed.js
vendored
@ -1,13 +1,22 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
||||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
||||
};
|
||||
var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
__exportStar(require("../Notary/Deed"), exports);
|
||||
const Deed_1 = __importDefault(require("../Notary/Deed"));
|
||||
var Deed;
|
||||
(function (Deed) {
|
||||
class IDeed extends Deed_1.default.IDeed {
|
||||
}
|
||||
Deed.IDeed = IDeed;
|
||||
})(Deed || (Deed = {}));
|
||||
exports.default = Deed;
|
||||
exports.default = Deed_1.default;
|
||||
|
7
dist/Admin/DeedHasDocumentType.d.ts
vendored
7
dist/Admin/DeedHasDocumentType.d.ts
vendored
@ -1,6 +1,3 @@
|
||||
import DeedHasDocumentType_ from "../Notary/DeedHasDocumentType";
|
||||
declare namespace DeedHasDocumentType {
|
||||
class IDeedHasDocumentType extends DeedHasDocumentType_.IDeedHasDocumentType {
|
||||
}
|
||||
}
|
||||
export * from "../Notary/DeedHasDocumentType";
|
||||
import DeedHasDocumentType from "../Notary/DeedHasDocumentType";
|
||||
export default DeedHasDocumentType;
|
||||
|
23
dist/Admin/DeedHasDocumentType.js
vendored
23
dist/Admin/DeedHasDocumentType.js
vendored
@ -1,13 +1,22 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
||||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
||||
};
|
||||
var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
__exportStar(require("../Notary/DeedHasDocumentType"), exports);
|
||||
const DeedHasDocumentType_1 = __importDefault(require("../Notary/DeedHasDocumentType"));
|
||||
var DeedHasDocumentType;
|
||||
(function (DeedHasDocumentType) {
|
||||
class IDeedHasDocumentType extends DeedHasDocumentType_1.default.IDeedHasDocumentType {
|
||||
}
|
||||
DeedHasDocumentType.IDeedHasDocumentType = IDeedHasDocumentType;
|
||||
})(DeedHasDocumentType || (DeedHasDocumentType = {}));
|
||||
exports.default = DeedHasDocumentType;
|
||||
exports.default = DeedHasDocumentType_1.default;
|
||||
|
7
dist/Admin/DeedType.d.ts
vendored
7
dist/Admin/DeedType.d.ts
vendored
@ -1,6 +1,3 @@
|
||||
import DeedType_ from "../Notary/DeedType";
|
||||
declare namespace DeedType {
|
||||
class IDeedType extends DeedType_.IDeedType {
|
||||
}
|
||||
}
|
||||
export * from "../Notary/DeedType";
|
||||
import DeedType from "../Notary/DeedType";
|
||||
export default DeedType;
|
||||
|
23
dist/Admin/DeedType.js
vendored
23
dist/Admin/DeedType.js
vendored
@ -1,13 +1,22 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
||||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
||||
};
|
||||
var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
__exportStar(require("../Notary/DeedType"), exports);
|
||||
const DeedType_1 = __importDefault(require("../Notary/DeedType"));
|
||||
var DeedType;
|
||||
(function (DeedType) {
|
||||
class IDeedType extends DeedType_1.default.IDeedType {
|
||||
}
|
||||
DeedType.IDeedType = IDeedType;
|
||||
})(DeedType || (DeedType = {}));
|
||||
exports.default = DeedType;
|
||||
exports.default = DeedType_1.default;
|
||||
|
7
dist/Admin/DeedTypeHasDocumentType.d.ts
vendored
7
dist/Admin/DeedTypeHasDocumentType.d.ts
vendored
@ -1,6 +1,3 @@
|
||||
import DeedTypeHasDocumentType_ from "../Notary/DeedTypeHasDocumentType";
|
||||
declare namespace DeedTypeHasDocumentType {
|
||||
class IDeedTypeHasDocumentType extends DeedTypeHasDocumentType_.IDeedTypeHasDocumentType {
|
||||
}
|
||||
}
|
||||
export * from "../Notary/DeedTypeHasDocumentType";
|
||||
import DeedTypeHasDocumentType from "../Notary/DeedTypeHasDocumentType";
|
||||
export default DeedTypeHasDocumentType;
|
||||
|
23
dist/Admin/DeedTypeHasDocumentType.js
vendored
23
dist/Admin/DeedTypeHasDocumentType.js
vendored
@ -1,13 +1,22 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
||||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
||||
};
|
||||
var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
__exportStar(require("../Notary/DeedTypeHasDocumentType"), exports);
|
||||
const DeedTypeHasDocumentType_1 = __importDefault(require("../Notary/DeedTypeHasDocumentType"));
|
||||
var DeedTypeHasDocumentType;
|
||||
(function (DeedTypeHasDocumentType) {
|
||||
class IDeedTypeHasDocumentType extends DeedTypeHasDocumentType_1.default.IDeedTypeHasDocumentType {
|
||||
}
|
||||
DeedTypeHasDocumentType.IDeedTypeHasDocumentType = IDeedTypeHasDocumentType;
|
||||
})(DeedTypeHasDocumentType || (DeedTypeHasDocumentType = {}));
|
||||
exports.default = DeedTypeHasDocumentType;
|
||||
exports.default = DeedTypeHasDocumentType_1.default;
|
||||
|
7
dist/Admin/Document.d.ts
vendored
7
dist/Admin/Document.d.ts
vendored
@ -1,6 +1,3 @@
|
||||
import Document_ from "../Notary/Document";
|
||||
declare namespace Document {
|
||||
class IDocument extends Document_.IDocument {
|
||||
}
|
||||
}
|
||||
export * from "../Notary/Document";
|
||||
import Document from "../Notary/Document";
|
||||
export default Document;
|
||||
|
23
dist/Admin/Document.js
vendored
23
dist/Admin/Document.js
vendored
@ -1,13 +1,22 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
||||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
||||
};
|
||||
var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
__exportStar(require("../Notary/Document"), exports);
|
||||
const Document_1 = __importDefault(require("../Notary/Document"));
|
||||
var Document;
|
||||
(function (Document) {
|
||||
class IDocument extends Document_1.default.IDocument {
|
||||
}
|
||||
Document.IDocument = IDocument;
|
||||
})(Document || (Document = {}));
|
||||
exports.default = Document;
|
||||
exports.default = Document_1.default;
|
||||
|
7
dist/Admin/DocumentHistory.d.ts
vendored
7
dist/Admin/DocumentHistory.d.ts
vendored
@ -1,6 +1,3 @@
|
||||
import DocumentHistory_ from "../Notary/DocumentHistory";
|
||||
declare namespace DocumentHistory {
|
||||
class IDocumentHistory extends DocumentHistory_.IDocumentHistory {
|
||||
}
|
||||
}
|
||||
export * from "../Notary/DocumentHistory";
|
||||
import DocumentHistory from "../Notary/DocumentHistory";
|
||||
export default DocumentHistory;
|
||||
|
23
dist/Admin/DocumentHistory.js
vendored
23
dist/Admin/DocumentHistory.js
vendored
@ -1,13 +1,22 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
||||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
||||
};
|
||||
var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
__exportStar(require("../Notary/DocumentHistory"), exports);
|
||||
const DocumentHistory_1 = __importDefault(require("../Notary/DocumentHistory"));
|
||||
var DocumentHistory;
|
||||
(function (DocumentHistory) {
|
||||
class IDocumentHistory extends DocumentHistory_1.default.IDocumentHistory {
|
||||
}
|
||||
DocumentHistory.IDocumentHistory = IDocumentHistory;
|
||||
})(DocumentHistory || (DocumentHistory = {}));
|
||||
exports.default = DocumentHistory;
|
||||
exports.default = DocumentHistory_1.default;
|
||||
|
7
dist/Admin/DocumentType.d.ts
vendored
7
dist/Admin/DocumentType.d.ts
vendored
@ -1,6 +1,3 @@
|
||||
import DocumentType_ from "../Notary/DocumentType";
|
||||
declare namespace DocumentType {
|
||||
class IDocumentType extends DocumentType_.IDocumentType {
|
||||
}
|
||||
}
|
||||
export * from "../Notary/DocumentType";
|
||||
import DocumentType from "../Notary/DocumentType";
|
||||
export default DocumentType;
|
||||
|
23
dist/Admin/DocumentType.js
vendored
23
dist/Admin/DocumentType.js
vendored
@ -1,13 +1,22 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
||||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
||||
};
|
||||
var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
__exportStar(require("../Notary/DocumentType"), exports);
|
||||
const DocumentType_1 = __importDefault(require("../Notary/DocumentType"));
|
||||
var DocumentType;
|
||||
(function (DocumentType) {
|
||||
class IDocumentType extends DocumentType_1.default.IDocumentType {
|
||||
}
|
||||
DocumentType.IDocumentType = IDocumentType;
|
||||
})(DocumentType || (DocumentType = {}));
|
||||
exports.default = DocumentType;
|
||||
exports.default = DocumentType_1.default;
|
||||
|
7
dist/Admin/File.d.ts
vendored
7
dist/Admin/File.d.ts
vendored
@ -1,6 +1,3 @@
|
||||
import File_ from "../Notary/File";
|
||||
declare namespace File {
|
||||
class IFile extends File_.IFile {
|
||||
}
|
||||
}
|
||||
export * from "../Notary/File";
|
||||
import File from "../Notary/File";
|
||||
export default File;
|
||||
|
23
dist/Admin/File.js
vendored
23
dist/Admin/File.js
vendored
@ -1,13 +1,22 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
||||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
||||
};
|
||||
var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
__exportStar(require("../Notary/File"), exports);
|
||||
const File_1 = __importDefault(require("../Notary/File"));
|
||||
var File;
|
||||
(function (File) {
|
||||
class IFile extends File_1.default.IFile {
|
||||
}
|
||||
File.IFile = IFile;
|
||||
})(File || (File = {}));
|
||||
exports.default = File;
|
||||
exports.default = File_1.default;
|
||||
|
7
dist/Admin/Notification.d.ts
vendored
7
dist/Admin/Notification.d.ts
vendored
@ -1,6 +1,3 @@
|
||||
import Notification_ from "../Notary/Notification";
|
||||
declare namespace Notification {
|
||||
class INotification extends Notification_.INotification {
|
||||
}
|
||||
}
|
||||
export * from "../Notary/Notification";
|
||||
import Notification from "../Notary/Notification";
|
||||
export default Notification;
|
||||
|
23
dist/Admin/Notification.js
vendored
23
dist/Admin/Notification.js
vendored
@ -1,13 +1,22 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
||||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
||||
};
|
||||
var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
__exportStar(require("../Notary/Notification"), exports);
|
||||
const Notification_1 = __importDefault(require("../Notary/Notification"));
|
||||
var Notification;
|
||||
(function (Notification) {
|
||||
class INotification extends Notification_1.default.INotification {
|
||||
}
|
||||
Notification.INotification = INotification;
|
||||
})(Notification || (Notification = {}));
|
||||
exports.default = Notification;
|
||||
exports.default = Notification_1.default;
|
||||
|
7
dist/Admin/Office.d.ts
vendored
7
dist/Admin/Office.d.ts
vendored
@ -1,6 +1,3 @@
|
||||
import Office_ from "../Notary/Office";
|
||||
declare namespace Office {
|
||||
class IOffice extends Office_.IOffice {
|
||||
}
|
||||
}
|
||||
export * from "../Notary/Office";
|
||||
import Office from "../Notary/Office";
|
||||
export default Office;
|
||||
|
23
dist/Admin/Office.js
vendored
23
dist/Admin/Office.js
vendored
@ -1,13 +1,22 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
||||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
||||
};
|
||||
var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
__exportStar(require("../Notary/Office"), exports);
|
||||
const Office_1 = __importDefault(require("../Notary/Office"));
|
||||
var Office;
|
||||
(function (Office) {
|
||||
class IOffice extends Office_1.default.IOffice {
|
||||
}
|
||||
Office.IOffice = IOffice;
|
||||
})(Office || (Office = {}));
|
||||
exports.default = Office;
|
||||
exports.default = Office_1.default;
|
||||
|
7
dist/Admin/OfficeFolder.d.ts
vendored
7
dist/Admin/OfficeFolder.d.ts
vendored
@ -1,6 +1,3 @@
|
||||
import OfficeFolder_ from "../Notary/OfficeFolder";
|
||||
declare namespace OfficeFolder {
|
||||
class IOfficeFolder extends OfficeFolder_.IOfficeFolder {
|
||||
}
|
||||
}
|
||||
export * from "../Notary/OfficeFolder";
|
||||
import OfficeFolder from "../Notary/OfficeFolder";
|
||||
export default OfficeFolder;
|
||||
|
23
dist/Admin/OfficeFolder.js
vendored
23
dist/Admin/OfficeFolder.js
vendored
@ -1,13 +1,22 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
||||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
||||
};
|
||||
var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
__exportStar(require("../Notary/OfficeFolder"), exports);
|
||||
const OfficeFolder_1 = __importDefault(require("../Notary/OfficeFolder"));
|
||||
var OfficeFolder;
|
||||
(function (OfficeFolder) {
|
||||
class IOfficeFolder extends OfficeFolder_1.default.IOfficeFolder {
|
||||
}
|
||||
OfficeFolder.IOfficeFolder = IOfficeFolder;
|
||||
})(OfficeFolder || (OfficeFolder = {}));
|
||||
exports.default = OfficeFolder;
|
||||
exports.default = OfficeFolder_1.default;
|
||||
|
7
dist/Admin/OfficeFolderHasCustomer.d.ts
vendored
7
dist/Admin/OfficeFolderHasCustomer.d.ts
vendored
@ -1,6 +1,3 @@
|
||||
import OfficeFolderHasCustomer_ from "../Notary/OfficeFolderHasCustomer";
|
||||
declare namespace OfficeFolderHasCustomer {
|
||||
class IOfficeFolderHasCustomer extends OfficeFolderHasCustomer_.IOfficeFolderHasCustomer {
|
||||
}
|
||||
}
|
||||
export * from "../Notary/OfficeFolderHasCustomer";
|
||||
import OfficeFolderHasCustomer from "../Notary/OfficeFolderHasCustomer";
|
||||
export default OfficeFolderHasCustomer;
|
||||
|
23
dist/Admin/OfficeFolderHasCustomer.js
vendored
23
dist/Admin/OfficeFolderHasCustomer.js
vendored
@ -1,13 +1,22 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
||||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
||||
};
|
||||
var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
__exportStar(require("../Notary/OfficeFolderHasCustomer"), exports);
|
||||
const OfficeFolderHasCustomer_1 = __importDefault(require("../Notary/OfficeFolderHasCustomer"));
|
||||
var OfficeFolderHasCustomer;
|
||||
(function (OfficeFolderHasCustomer) {
|
||||
class IOfficeFolderHasCustomer extends OfficeFolderHasCustomer_1.default.IOfficeFolderHasCustomer {
|
||||
}
|
||||
OfficeFolderHasCustomer.IOfficeFolderHasCustomer = IOfficeFolderHasCustomer;
|
||||
})(OfficeFolderHasCustomer || (OfficeFolderHasCustomer = {}));
|
||||
exports.default = OfficeFolderHasCustomer;
|
||||
exports.default = OfficeFolderHasCustomer_1.default;
|
||||
|
7
dist/Admin/OfficeFolderHasStakeholder.d.ts
vendored
7
dist/Admin/OfficeFolderHasStakeholder.d.ts
vendored
@ -1,6 +1,3 @@
|
||||
import OfficeFolderHasStakeholder_ from "../Notary/OfficeFolderHasStakeholder";
|
||||
declare namespace OfficeFolderHasStakeholder {
|
||||
class IOfficeFolderHasStakeholder extends OfficeFolderHasStakeholder_.IOfficeFolderHasStakeholder {
|
||||
}
|
||||
}
|
||||
export * from "../Notary/OfficeFolderHasStakeholder";
|
||||
import OfficeFolderHasStakeholder from "../Notary/OfficeFolderHasStakeholder";
|
||||
export default OfficeFolderHasStakeholder;
|
||||
|
23
dist/Admin/OfficeFolderHasStakeholder.js
vendored
23
dist/Admin/OfficeFolderHasStakeholder.js
vendored
@ -1,13 +1,22 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
||||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
||||
};
|
||||
var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
__exportStar(require("../Notary/OfficeFolderHasStakeholder"), exports);
|
||||
const OfficeFolderHasStakeholder_1 = __importDefault(require("../Notary/OfficeFolderHasStakeholder"));
|
||||
var OfficeFolderHasStakeholder;
|
||||
(function (OfficeFolderHasStakeholder) {
|
||||
class IOfficeFolderHasStakeholder extends OfficeFolderHasStakeholder_1.default.IOfficeFolderHasStakeholder {
|
||||
}
|
||||
OfficeFolderHasStakeholder.IOfficeFolderHasStakeholder = IOfficeFolderHasStakeholder;
|
||||
})(OfficeFolderHasStakeholder || (OfficeFolderHasStakeholder = {}));
|
||||
exports.default = OfficeFolderHasStakeholder;
|
||||
exports.default = OfficeFolderHasStakeholder_1.default;
|
||||
|
7
dist/Admin/User.d.ts
vendored
7
dist/Admin/User.d.ts
vendored
@ -1,6 +1,3 @@
|
||||
import User_ from "../Notary/User";
|
||||
declare namespace User {
|
||||
class IUser extends User_.IUser {
|
||||
}
|
||||
}
|
||||
export * from "../Notary/User";
|
||||
import User from "../Notary/User";
|
||||
export default User;
|
||||
|
23
dist/Admin/User.js
vendored
23
dist/Admin/User.js
vendored
@ -1,13 +1,22 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
||||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
||||
};
|
||||
var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
__exportStar(require("../Notary/User"), exports);
|
||||
const User_1 = __importDefault(require("../Notary/User"));
|
||||
var User;
|
||||
(function (User) {
|
||||
class IUser extends User_1.default.IUser {
|
||||
}
|
||||
User.IUser = IUser;
|
||||
})(User || (User = {}));
|
||||
exports.default = User;
|
||||
exports.default = User_1.default;
|
||||
|
7
dist/Admin/UserHasNotification.d.ts
vendored
7
dist/Admin/UserHasNotification.d.ts
vendored
@ -1,6 +1,3 @@
|
||||
import UserHasNotification_ from "../Notary/UserHasNotification";
|
||||
declare namespace UserHasNotification {
|
||||
class IUserHasNotification extends UserHasNotification_.IUserHasNotification {
|
||||
}
|
||||
}
|
||||
export * from "../Notary/UserHasNotification";
|
||||
import UserHasNotification from "../Notary/UserHasNotification";
|
||||
export default UserHasNotification;
|
||||
|
23
dist/Admin/UserHasNotification.js
vendored
23
dist/Admin/UserHasNotification.js
vendored
@ -1,13 +1,22 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
||||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
||||
};
|
||||
var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
__exportStar(require("../Notary/UserHasNotification"), exports);
|
||||
const UserHasNotification_1 = __importDefault(require("../Notary/UserHasNotification"));
|
||||
var UserHasNotification;
|
||||
(function (UserHasNotification) {
|
||||
class IUserHasNotification extends UserHasNotification_1.default.IUserHasNotification {
|
||||
}
|
||||
UserHasNotification.IUserHasNotification = IUserHasNotification;
|
||||
})(UserHasNotification || (UserHasNotification = {}));
|
||||
exports.default = UserHasNotification;
|
||||
exports.default = UserHasNotification_1.default;
|
||||
|
17
dist/Admin/index.d.ts
vendored
17
dist/Admin/index.d.ts
vendored
@ -1,2 +1,19 @@
|
||||
import User from "./User";
|
||||
export default User;
|
||||
export { default as Address } from "../SuperAdmin/Address";
|
||||
export { default as Customer } from "./Customer";
|
||||
export { default as Contact } from "./Contact";
|
||||
export { default as Deed } from "./Deed";
|
||||
export { default as DeedHasDocumentType } from "./DeedHasDocumentType";
|
||||
export { default as DeedType } from "./DeedType";
|
||||
export { default as DeedTypeHasDocumentType } from "./DeedTypeHasDocumentType";
|
||||
export { default as Document } from "./Document";
|
||||
export { default as DocumentHistory } from "./DocumentHistory";
|
||||
export { default as DocumentType } from "./DocumentType";
|
||||
export { default as File } from "./File";
|
||||
export { default as Notification } from "./Notification";
|
||||
export { default as Office } from "./Office";
|
||||
export { default as OfficeFolder } from "./OfficeFolder";
|
||||
export { default as OfficeFolderHasCustomer } from "./OfficeFolderHasCustomer";
|
||||
export { default as OfficeFolderHasStakeholder } from "./OfficeFolderHasStakeholder";
|
||||
export { default as UserHasNotification } from "./UserHasNotification";
|
||||
|
35
dist/Admin/index.js
vendored
35
dist/Admin/index.js
vendored
@ -3,5 +3,40 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.UserHasNotification = exports.OfficeFolderHasStakeholder = exports.OfficeFolderHasCustomer = exports.OfficeFolder = exports.Office = exports.Notification = exports.File = exports.DocumentType = exports.DocumentHistory = exports.Document = exports.DeedTypeHasDocumentType = exports.DeedType = exports.DeedHasDocumentType = exports.Deed = exports.Contact = exports.Customer = exports.Address = void 0;
|
||||
const User_1 = __importDefault(require("./User"));
|
||||
exports.default = User_1.default;
|
||||
var Address_1 = require("../SuperAdmin/Address");
|
||||
Object.defineProperty(exports, "Address", { enumerable: true, get: function () { return __importDefault(Address_1).default; } });
|
||||
var Customer_1 = require("./Customer");
|
||||
Object.defineProperty(exports, "Customer", { enumerable: true, get: function () { return __importDefault(Customer_1).default; } });
|
||||
var Contact_1 = require("./Contact");
|
||||
Object.defineProperty(exports, "Contact", { enumerable: true, get: function () { return __importDefault(Contact_1).default; } });
|
||||
var Deed_1 = require("./Deed");
|
||||
Object.defineProperty(exports, "Deed", { enumerable: true, get: function () { return __importDefault(Deed_1).default; } });
|
||||
var DeedHasDocumentType_1 = require("./DeedHasDocumentType");
|
||||
Object.defineProperty(exports, "DeedHasDocumentType", { enumerable: true, get: function () { return __importDefault(DeedHasDocumentType_1).default; } });
|
||||
var DeedType_1 = require("./DeedType");
|
||||
Object.defineProperty(exports, "DeedType", { enumerable: true, get: function () { return __importDefault(DeedType_1).default; } });
|
||||
var DeedTypeHasDocumentType_1 = require("./DeedTypeHasDocumentType");
|
||||
Object.defineProperty(exports, "DeedTypeHasDocumentType", { enumerable: true, get: function () { return __importDefault(DeedTypeHasDocumentType_1).default; } });
|
||||
var Document_1 = require("./Document");
|
||||
Object.defineProperty(exports, "Document", { enumerable: true, get: function () { return __importDefault(Document_1).default; } });
|
||||
var DocumentHistory_1 = require("./DocumentHistory");
|
||||
Object.defineProperty(exports, "DocumentHistory", { enumerable: true, get: function () { return __importDefault(DocumentHistory_1).default; } });
|
||||
var DocumentType_1 = require("./DocumentType");
|
||||
Object.defineProperty(exports, "DocumentType", { enumerable: true, get: function () { return __importDefault(DocumentType_1).default; } });
|
||||
var File_1 = require("./File");
|
||||
Object.defineProperty(exports, "File", { enumerable: true, get: function () { return __importDefault(File_1).default; } });
|
||||
var Notification_1 = require("./Notification");
|
||||
Object.defineProperty(exports, "Notification", { enumerable: true, get: function () { return __importDefault(Notification_1).default; } });
|
||||
var Office_1 = require("./Office");
|
||||
Object.defineProperty(exports, "Office", { enumerable: true, get: function () { return __importDefault(Office_1).default; } });
|
||||
var OfficeFolder_1 = require("./OfficeFolder");
|
||||
Object.defineProperty(exports, "OfficeFolder", { enumerable: true, get: function () { return __importDefault(OfficeFolder_1).default; } });
|
||||
var OfficeFolderHasCustomer_1 = require("./OfficeFolderHasCustomer");
|
||||
Object.defineProperty(exports, "OfficeFolderHasCustomer", { enumerable: true, get: function () { return __importDefault(OfficeFolderHasCustomer_1).default; } });
|
||||
var OfficeFolderHasStakeholder_1 = require("./OfficeFolderHasStakeholder");
|
||||
Object.defineProperty(exports, "OfficeFolderHasStakeholder", { enumerable: true, get: function () { return __importDefault(OfficeFolderHasStakeholder_1).default; } });
|
||||
var UserHasNotification_1 = require("./UserHasNotification");
|
||||
Object.defineProperty(exports, "UserHasNotification", { enumerable: true, get: function () { return __importDefault(UserHasNotification_1).default; } });
|
||||
|
11
dist/Customer/Address.d.ts
vendored
11
dist/Customer/Address.d.ts
vendored
@ -1,15 +1,12 @@
|
||||
import type Contact from "./Contact";
|
||||
import type Office from "./Office";
|
||||
declare namespace Address {
|
||||
class IAddress {
|
||||
uuid: string;
|
||||
import Resource from "../Resource";
|
||||
export default class Address extends Resource {
|
||||
address: string;
|
||||
city: string;
|
||||
zip_code: number;
|
||||
created_at: Date | null;
|
||||
updated_at: Date | null;
|
||||
office?: Office.IOffice | null;
|
||||
contacts?: Contact.IContact;
|
||||
office?: Office | null;
|
||||
contact?: Contact | null;
|
||||
}
|
||||
}
|
||||
export default Address;
|
||||
|
41
dist/Customer/Address.js
vendored
41
dist/Customer/Address.js
vendored
@ -8,48 +8,39 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
|
||||
var __metadata = (this && this.__metadata) || function (k, v) {
|
||||
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
||||
};
|
||||
var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
const class_validator_1 = require("class-validator");
|
||||
var Address;
|
||||
(function (Address) {
|
||||
class IAddress {
|
||||
const Resource_1 = __importDefault(require("../Resource"));
|
||||
class Address extends Resource_1.default {
|
||||
constructor() {
|
||||
super(...arguments);
|
||||
this.created_at = null;
|
||||
this.updated_at = null;
|
||||
this.office = null;
|
||||
this.contact = null;
|
||||
}
|
||||
}
|
||||
__decorate([
|
||||
(0, class_validator_1.IsNotEmpty)(),
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"], message: "Address is required" }),
|
||||
__metadata("design:type", String)
|
||||
], IAddress.prototype, "uuid", void 0);
|
||||
], Address.prototype, "address", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"] }),
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"], message: "City is required" }),
|
||||
__metadata("design:type", String)
|
||||
], IAddress.prototype, "address", void 0);
|
||||
], Address.prototype, "city", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"] }),
|
||||
__metadata("design:type", String)
|
||||
], IAddress.prototype, "city", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"] }),
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"], message: "State is required" }),
|
||||
__metadata("design:type", Number)
|
||||
], IAddress.prototype, "zip_code", void 0);
|
||||
], Address.prototype, "zip_code", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsDate)(),
|
||||
__metadata("design:type", Object)
|
||||
], IAddress.prototype, "created_at", void 0);
|
||||
], Address.prototype, "created_at", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsDate)(),
|
||||
__metadata("design:type", Object)
|
||||
], IAddress.prototype, "updated_at", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsOptional)(),
|
||||
__metadata("design:type", Object)
|
||||
], IAddress.prototype, "office", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsOptional)(),
|
||||
__metadata("design:type", Function)
|
||||
], IAddress.prototype, "contacts", void 0);
|
||||
Address.IAddress = IAddress;
|
||||
})(Address || (Address = {}));
|
||||
], Address.prototype, "updated_at", void 0);
|
||||
exports.default = Address;
|
||||
|
21
dist/Customer/Contact.d.ts
vendored
21
dist/Customer/Contact.d.ts
vendored
@ -1,26 +1,23 @@
|
||||
import type Address from "./Address";
|
||||
import type Customer from ".";
|
||||
import type User from "../Notary/User";
|
||||
declare namespace Contact {
|
||||
class IContact {
|
||||
uuid: string;
|
||||
import type User from "../Notary";
|
||||
import Resource from "../Resource";
|
||||
export default class Contact extends Resource {
|
||||
first_name: string;
|
||||
last_name: string;
|
||||
email: string;
|
||||
phone_number: string;
|
||||
cell_phone_number: string;
|
||||
phone_number: string;
|
||||
civility: ECivility;
|
||||
address: Address.IAddress;
|
||||
address: Address;
|
||||
created_at: Date | null;
|
||||
updated_at: Date | null;
|
||||
users?: User.IUser;
|
||||
customers?: Customer.ICustomer;
|
||||
user?: User | null;
|
||||
customer?: Customer | null;
|
||||
}
|
||||
enum ECivility {
|
||||
export declare enum ECivility {
|
||||
MALE = "MALE",
|
||||
FEMALE = "FEMALE",
|
||||
OTHERS = "OTHERS"
|
||||
}
|
||||
type TCivility = ECivility.MALE | ECivility.FEMALE | ECivility.OTHERS;
|
||||
}
|
||||
export default Contact;
|
||||
export declare type TCivility = ECivility.MALE | ECivility.FEMALE | ECivility.OTHERS;
|
||||
|
71
dist/Customer/Contact.js
vendored
71
dist/Customer/Contact.js
vendored
@ -8,70 +8,59 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
|
||||
var __metadata = (this && this.__metadata) || function (k, v) {
|
||||
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
||||
};
|
||||
var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.ECivility = void 0;
|
||||
const class_validator_1 = require("class-validator");
|
||||
var Contact;
|
||||
(function (Contact) {
|
||||
class IContact {
|
||||
const Resource_1 = __importDefault(require("../Resource"));
|
||||
class Contact extends Resource_1.default {
|
||||
constructor() {
|
||||
super(...arguments);
|
||||
this.created_at = null;
|
||||
this.updated_at = null;
|
||||
this.user = null;
|
||||
this.customer = null;
|
||||
}
|
||||
}
|
||||
__decorate([
|
||||
(0, class_validator_1.IsNotEmpty)(),
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"], message: "First name is required" }),
|
||||
__metadata("design:type", String)
|
||||
], IContact.prototype, "uuid", void 0);
|
||||
], Contact.prototype, "first_name", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"], message: "Last name is required" }),
|
||||
__metadata("design:type", String)
|
||||
], Contact.prototype, "last_name", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"] }),
|
||||
(0, class_validator_1.IsEmail)({}, { groups: ["create", "update"], message: "Email is not valid" }),
|
||||
__metadata("design:type", String)
|
||||
], Contact.prototype, "email", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"] }),
|
||||
__metadata("design:type", String)
|
||||
], IContact.prototype, "first_name", void 0);
|
||||
], Contact.prototype, "cell_phone_number", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"] }),
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"], message: "Civility is required" }),
|
||||
__metadata("design:type", String)
|
||||
], IContact.prototype, "last_name", void 0);
|
||||
], Contact.prototype, "civility", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"] }),
|
||||
__metadata("design:type", String)
|
||||
], IContact.prototype, "email", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsOptional)(),
|
||||
__metadata("design:type", String)
|
||||
], IContact.prototype, "phone_number", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsOptional)(),
|
||||
__metadata("design:type", String)
|
||||
], IContact.prototype, "cell_phone_number", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"] }),
|
||||
__metadata("design:type", String)
|
||||
], IContact.prototype, "civility", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"] }),
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"], message: "Address is required" }),
|
||||
__metadata("design:type", Function)
|
||||
], IContact.prototype, "address", void 0);
|
||||
], Contact.prototype, "address", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsDate)(),
|
||||
__metadata("design:type", Object)
|
||||
], IContact.prototype, "created_at", void 0);
|
||||
], Contact.prototype, "created_at", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsDate)(),
|
||||
__metadata("design:type", Object)
|
||||
], IContact.prototype, "updated_at", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsOptional)(),
|
||||
__metadata("design:type", Function)
|
||||
], IContact.prototype, "users", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsOptional)(),
|
||||
__metadata("design:type", Function)
|
||||
], IContact.prototype, "customers", void 0);
|
||||
Contact.IContact = IContact;
|
||||
let ECivility;
|
||||
], Contact.prototype, "updated_at", void 0);
|
||||
exports.default = Contact;
|
||||
var ECivility;
|
||||
(function (ECivility) {
|
||||
ECivility["MALE"] = "MALE";
|
||||
ECivility["FEMALE"] = "FEMALE";
|
||||
ECivility["OTHERS"] = "OTHERS";
|
||||
})(ECivility = Contact.ECivility || (Contact.ECivility = {}));
|
||||
})(Contact || (Contact = {}));
|
||||
exports.default = Contact;
|
||||
})(ECivility = exports.ECivility || (exports.ECivility = {}));
|
||||
|
17
dist/Customer/Customer.d.ts
vendored
Normal file
17
dist/Customer/Customer.d.ts
vendored
Normal file
@ -0,0 +1,17 @@
|
||||
import { Contact, Document } from ".";
|
||||
import OfficeFolderHasCustomer from "./OfficeFolderHasCustomer";
|
||||
import Resource from "../Resource";
|
||||
export default class Customer extends Resource {
|
||||
status: ECustomerStatus;
|
||||
contact: Contact;
|
||||
created_at: Date | null;
|
||||
updated_at: Date | null;
|
||||
office_folder_has_customers?: OfficeFolderHasCustomer[];
|
||||
documents?: Document[];
|
||||
}
|
||||
export declare enum ECustomerStatus {
|
||||
VALIDATED = "VALIDATED",
|
||||
PENDING = "PENDING",
|
||||
ERRONED = "ERRONED"
|
||||
}
|
||||
export declare type TCustomerStatus = ECustomerStatus.VALIDATED | ECustomerStatus.PENDING | ECustomerStatus.ERRONED;
|
48
dist/Customer/Customer.js
vendored
Normal file
48
dist/Customer/Customer.js
vendored
Normal file
@ -0,0 +1,48 @@
|
||||
"use strict";
|
||||
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
||||
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
||||
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
||||
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;
|
||||
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
||||
};
|
||||
var __metadata = (this && this.__metadata) || function (k, v) {
|
||||
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
||||
};
|
||||
var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.ECustomerStatus = void 0;
|
||||
const class_validator_1 = require("class-validator");
|
||||
const _1 = require(".");
|
||||
const Resource_1 = __importDefault(require("../Resource"));
|
||||
class Customer extends Resource_1.default {
|
||||
constructor() {
|
||||
super(...arguments);
|
||||
this.created_at = null;
|
||||
this.updated_at = null;
|
||||
}
|
||||
}
|
||||
__decorate([
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"], message: "Status is required" }),
|
||||
__metadata("design:type", String)
|
||||
], Customer.prototype, "status", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"], message: "Contact is required" }),
|
||||
__metadata("design:type", _1.Contact)
|
||||
], Customer.prototype, "contact", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsDate)(),
|
||||
__metadata("design:type", Object)
|
||||
], Customer.prototype, "created_at", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsDate)(),
|
||||
__metadata("design:type", Object)
|
||||
], Customer.prototype, "updated_at", void 0);
|
||||
exports.default = Customer;
|
||||
var ECustomerStatus;
|
||||
(function (ECustomerStatus) {
|
||||
ECustomerStatus["VALIDATED"] = "VALIDATED";
|
||||
ECustomerStatus["PENDING"] = "PENDING";
|
||||
ECustomerStatus["ERRONED"] = "ERRONED";
|
||||
})(ECustomerStatus = exports.ECustomerStatus || (exports.ECustomerStatus = {}));
|
13
dist/Customer/Deed.d.ts
vendored
13
dist/Customer/Deed.d.ts
vendored
@ -1,14 +1,11 @@
|
||||
import type DeedType from "./DeedType";
|
||||
import type DeedHasDocumentType from "./DeedHasDocumentType";
|
||||
import type OfficeFolder from "./OfficeFolder";
|
||||
declare namespace Deed {
|
||||
class IDeed {
|
||||
uuid: string;
|
||||
deed_type: DeedType.IDeedType;
|
||||
import Resource from "../Resource";
|
||||
export default class Deed extends Resource {
|
||||
deed_type: DeedType;
|
||||
created_at: Date | null;
|
||||
updated_at: Date | null;
|
||||
deed_has_document_types?: DeedHasDocumentType.IDeedHasDocumentType[];
|
||||
office_folder?: OfficeFolder.IOfficeFolder;
|
||||
deed_has_document_types?: DeedHasDocumentType[];
|
||||
office_folder?: OfficeFolder;
|
||||
}
|
||||
}
|
||||
export default Deed;
|
||||
|
31
dist/Customer/Deed.js
vendored
31
dist/Customer/Deed.js
vendored
@ -8,40 +8,29 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
|
||||
var __metadata = (this && this.__metadata) || function (k, v) {
|
||||
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
||||
};
|
||||
var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
const class_validator_1 = require("class-validator");
|
||||
var Deed;
|
||||
(function (Deed) {
|
||||
class IDeed {
|
||||
const Resource_1 = __importDefault(require("../Resource"));
|
||||
class Deed extends Resource_1.default {
|
||||
constructor() {
|
||||
super(...arguments);
|
||||
this.created_at = null;
|
||||
this.updated_at = null;
|
||||
}
|
||||
}
|
||||
__decorate([
|
||||
(0, class_validator_1.IsNotEmpty)(),
|
||||
__metadata("design:type", String)
|
||||
], IDeed.prototype, "uuid", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"] }),
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"], message: "Deed type is required" }),
|
||||
__metadata("design:type", Function)
|
||||
], IDeed.prototype, "deed_type", void 0);
|
||||
], Deed.prototype, "deed_type", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsDate)(),
|
||||
__metadata("design:type", Object)
|
||||
], IDeed.prototype, "created_at", void 0);
|
||||
], Deed.prototype, "created_at", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsDate)(),
|
||||
__metadata("design:type", Object)
|
||||
], IDeed.prototype, "updated_at", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsOptional)(),
|
||||
__metadata("design:type", Array)
|
||||
], IDeed.prototype, "deed_has_document_types", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsOptional)(),
|
||||
__metadata("design:type", Function)
|
||||
], IDeed.prototype, "office_folder", void 0);
|
||||
Deed.IDeed = IDeed;
|
||||
})(Deed || (Deed = {}));
|
||||
], Deed.prototype, "updated_at", void 0);
|
||||
exports.default = Deed;
|
||||
|
11
dist/Customer/DeedHasDocumentType.d.ts
vendored
11
dist/Customer/DeedHasDocumentType.d.ts
vendored
@ -1,12 +1,9 @@
|
||||
import type Deed from "./Deed";
|
||||
import type DocumentType from "./DocumentType";
|
||||
declare namespace DeedHasDocumentType {
|
||||
class IDeedHasDocumentType {
|
||||
uuid: string;
|
||||
document_type: DocumentType.IDocumentType;
|
||||
deed: Deed.IDeed;
|
||||
import Resource from "../Resource";
|
||||
export default class DeedHasDocumentType extends Resource {
|
||||
document_type: DocumentType;
|
||||
deed: Deed;
|
||||
created_at: Date | null;
|
||||
updated_at: Date | null;
|
||||
}
|
||||
}
|
||||
export default DeedHasDocumentType;
|
||||
|
27
dist/Customer/DeedHasDocumentType.js
vendored
27
dist/Customer/DeedHasDocumentType.js
vendored
@ -8,36 +8,33 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
|
||||
var __metadata = (this && this.__metadata) || function (k, v) {
|
||||
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
||||
};
|
||||
var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
const class_validator_1 = require("class-validator");
|
||||
var DeedHasDocumentType;
|
||||
(function (DeedHasDocumentType) {
|
||||
class IDeedHasDocumentType {
|
||||
const Resource_1 = __importDefault(require("../Resource"));
|
||||
class DeedHasDocumentType extends Resource_1.default {
|
||||
constructor() {
|
||||
super(...arguments);
|
||||
this.created_at = null;
|
||||
this.updated_at = null;
|
||||
}
|
||||
}
|
||||
__decorate([
|
||||
(0, class_validator_1.IsNotEmpty)(),
|
||||
__metadata("design:type", String)
|
||||
], IDeedHasDocumentType.prototype, "uuid", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"] }),
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"], message: "Document type is required" }),
|
||||
__metadata("design:type", Function)
|
||||
], IDeedHasDocumentType.prototype, "document_type", void 0);
|
||||
], DeedHasDocumentType.prototype, "document_type", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"] }),
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"], message: "Deed is required" }),
|
||||
__metadata("design:type", Function)
|
||||
], IDeedHasDocumentType.prototype, "deed", void 0);
|
||||
], DeedHasDocumentType.prototype, "deed", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsDate)(),
|
||||
__metadata("design:type", Object)
|
||||
], IDeedHasDocumentType.prototype, "created_at", void 0);
|
||||
], DeedHasDocumentType.prototype, "created_at", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsDate)(),
|
||||
__metadata("design:type", Object)
|
||||
], IDeedHasDocumentType.prototype, "updated_at", void 0);
|
||||
DeedHasDocumentType.IDeedHasDocumentType = IDeedHasDocumentType;
|
||||
})(DeedHasDocumentType || (DeedHasDocumentType = {}));
|
||||
], DeedHasDocumentType.prototype, "updated_at", void 0);
|
||||
exports.default = DeedHasDocumentType;
|
||||
|
13
dist/Customer/DeedType.d.ts
vendored
13
dist/Customer/DeedType.d.ts
vendored
@ -1,17 +1,14 @@
|
||||
import type Deed from "./Deed";
|
||||
import type DeedTypeHasDocumentType from "./DeedTypeHasDocumentType";
|
||||
import type Office from "./Office";
|
||||
declare namespace DeedType {
|
||||
class IDeedType {
|
||||
uuid: string;
|
||||
import Resource from "../Resource";
|
||||
export default class DeedType extends Resource {
|
||||
name: string;
|
||||
description: string;
|
||||
archived_at: Date | null;
|
||||
office: Office.IOffice;
|
||||
office: Office;
|
||||
created_at: Date | null;
|
||||
updated_at: Date | null;
|
||||
deed?: Deed.IDeed[];
|
||||
deed_type_has_document_types?: DeedTypeHasDocumentType.IDeedTypeHasDocumentType[];
|
||||
deed?: Deed[];
|
||||
deed_type_has_document_types?: DeedTypeHasDocumentType[];
|
||||
}
|
||||
}
|
||||
export default DeedType;
|
||||
|
41
dist/Customer/DeedType.js
vendored
41
dist/Customer/DeedType.js
vendored
@ -8,53 +8,42 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
|
||||
var __metadata = (this && this.__metadata) || function (k, v) {
|
||||
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
||||
};
|
||||
var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
const class_validator_1 = require("class-validator");
|
||||
var DeedType;
|
||||
(function (DeedType) {
|
||||
class IDeedType {
|
||||
const Resource_1 = __importDefault(require("../Resource"));
|
||||
class DeedType extends Resource_1.default {
|
||||
constructor() {
|
||||
super(...arguments);
|
||||
this.archived_at = null;
|
||||
this.created_at = null;
|
||||
this.updated_at = null;
|
||||
}
|
||||
}
|
||||
__decorate([
|
||||
(0, class_validator_1.IsNotEmpty)(),
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"], message: "Name is required" }),
|
||||
__metadata("design:type", String)
|
||||
], IDeedType.prototype, "uuid", void 0);
|
||||
], DeedType.prototype, "name", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"] }),
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"], message: "Description is required" }),
|
||||
__metadata("design:type", String)
|
||||
], IDeedType.prototype, "name", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"] }),
|
||||
__metadata("design:type", String)
|
||||
], IDeedType.prototype, "description", void 0);
|
||||
], DeedType.prototype, "description", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsDate)(),
|
||||
__metadata("design:type", Object)
|
||||
], IDeedType.prototype, "archived_at", void 0);
|
||||
], DeedType.prototype, "archived_at", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"] }),
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"], message: "Office is required" }),
|
||||
__metadata("design:type", Function)
|
||||
], IDeedType.prototype, "office", void 0);
|
||||
], DeedType.prototype, "office", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsDate)(),
|
||||
__metadata("design:type", Object)
|
||||
], IDeedType.prototype, "created_at", void 0);
|
||||
], DeedType.prototype, "created_at", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsDate)(),
|
||||
__metadata("design:type", Object)
|
||||
], IDeedType.prototype, "updated_at", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsOptional)(),
|
||||
__metadata("design:type", Array)
|
||||
], IDeedType.prototype, "deed", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsOptional)(),
|
||||
__metadata("design:type", Array)
|
||||
], IDeedType.prototype, "deed_type_has_document_types", void 0);
|
||||
DeedType.IDeedType = IDeedType;
|
||||
})(DeedType || (DeedType = {}));
|
||||
], DeedType.prototype, "updated_at", void 0);
|
||||
exports.default = DeedType;
|
||||
|
11
dist/Customer/DeedTypeHasDocumentType.d.ts
vendored
11
dist/Customer/DeedTypeHasDocumentType.d.ts
vendored
@ -1,12 +1,9 @@
|
||||
import type DeedType from "./DeedType";
|
||||
import type DocumentType from "./DocumentType";
|
||||
declare namespace DeedTypeHasDocumentType {
|
||||
class IDeedTypeHasDocumentType {
|
||||
uuid: string;
|
||||
document_type: DocumentType.IDocumentType;
|
||||
deed_type: DeedType.IDeedType;
|
||||
import Resource from "../Resource";
|
||||
export default class DeedTypeHasDocumentType extends Resource {
|
||||
document_type: DocumentType;
|
||||
deed_type: DeedType;
|
||||
created_at: Date | null;
|
||||
updated_at: Date | null;
|
||||
}
|
||||
}
|
||||
export default DeedTypeHasDocumentType;
|
||||
|
27
dist/Customer/DeedTypeHasDocumentType.js
vendored
27
dist/Customer/DeedTypeHasDocumentType.js
vendored
@ -8,36 +8,33 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
|
||||
var __metadata = (this && this.__metadata) || function (k, v) {
|
||||
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
||||
};
|
||||
var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
const class_validator_1 = require("class-validator");
|
||||
var DeedTypeHasDocumentType;
|
||||
(function (DeedTypeHasDocumentType) {
|
||||
class IDeedTypeHasDocumentType {
|
||||
const Resource_1 = __importDefault(require("../Resource"));
|
||||
class DeedTypeHasDocumentType extends Resource_1.default {
|
||||
constructor() {
|
||||
super(...arguments);
|
||||
this.created_at = null;
|
||||
this.updated_at = null;
|
||||
}
|
||||
}
|
||||
__decorate([
|
||||
(0, class_validator_1.IsNotEmpty)(),
|
||||
__metadata("design:type", String)
|
||||
], IDeedTypeHasDocumentType.prototype, "uuid", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"] }),
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"], message: "Document type is required" }),
|
||||
__metadata("design:type", Function)
|
||||
], IDeedTypeHasDocumentType.prototype, "document_type", void 0);
|
||||
], DeedTypeHasDocumentType.prototype, "document_type", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"] }),
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"], message: "Deed type is required" }),
|
||||
__metadata("design:type", Function)
|
||||
], IDeedTypeHasDocumentType.prototype, "deed_type", void 0);
|
||||
], DeedTypeHasDocumentType.prototype, "deed_type", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsDate)(),
|
||||
__metadata("design:type", Object)
|
||||
], IDeedTypeHasDocumentType.prototype, "created_at", void 0);
|
||||
], DeedTypeHasDocumentType.prototype, "created_at", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsDate)(),
|
||||
__metadata("design:type", Object)
|
||||
], IDeedTypeHasDocumentType.prototype, "updated_at", void 0);
|
||||
DeedTypeHasDocumentType.IDeedTypeHasDocumentType = IDeedTypeHasDocumentType;
|
||||
})(DeedTypeHasDocumentType || (DeedTypeHasDocumentType = {}));
|
||||
], DeedTypeHasDocumentType.prototype, "updated_at", void 0);
|
||||
exports.default = DeedTypeHasDocumentType;
|
||||
|
21
dist/Customer/Document.d.ts
vendored
21
dist/Customer/Document.d.ts
vendored
@ -3,25 +3,22 @@ import type DocumentHistory from "./DocumentHistory";
|
||||
import type DocumentType from "./DocumentType";
|
||||
import type File from "./File";
|
||||
import type OfficeFolder from "./OfficeFolder";
|
||||
declare namespace Document {
|
||||
class IDocument {
|
||||
uuid: string;
|
||||
import Resource from "../Resource";
|
||||
export default class Document extends Resource {
|
||||
document_status: EDocumentStatus;
|
||||
document_type: DocumentType.IDocumentType;
|
||||
folder: OfficeFolder.IOfficeFolder;
|
||||
depositor: Customer.ICustomer;
|
||||
document_type: DocumentType;
|
||||
folder: OfficeFolder;
|
||||
depositor: Customer;
|
||||
created_at: Date | null;
|
||||
updated_at: Date | null;
|
||||
files?: File.IFile[];
|
||||
document_history?: DocumentHistory.IDocumentHistory[];
|
||||
files?: File[];
|
||||
document_history?: DocumentHistory[];
|
||||
}
|
||||
enum EDocumentStatus {
|
||||
export declare enum EDocumentStatus {
|
||||
ASKED = "ASKED",
|
||||
DEPOSITED = "DEPOSITED",
|
||||
VALIDATED = "VALIDATED",
|
||||
ANCHORED = "ANCHORED",
|
||||
REFUSED = "REFUSED"
|
||||
}
|
||||
type TDocumentStatus = EDocumentStatus.ASKED | EDocumentStatus.DEPOSITED | EDocumentStatus.VALIDATED | EDocumentStatus.ANCHORED | EDocumentStatus.REFUSED;
|
||||
}
|
||||
export default Document;
|
||||
export declare type TDocumentStatus = EDocumentStatus.ASKED | EDocumentStatus.DEPOSITED | EDocumentStatus.VALIDATED | EDocumentStatus.ANCHORED | EDocumentStatus.REFUSED;
|
||||
|
50
dist/Customer/Document.js
vendored
50
dist/Customer/Document.js
vendored
@ -8,60 +8,50 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
|
||||
var __metadata = (this && this.__metadata) || function (k, v) {
|
||||
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
||||
};
|
||||
var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.EDocumentStatus = void 0;
|
||||
const class_validator_1 = require("class-validator");
|
||||
var Document;
|
||||
(function (Document) {
|
||||
class IDocument {
|
||||
const Resource_1 = __importDefault(require("../Resource"));
|
||||
class Document extends Resource_1.default {
|
||||
constructor() {
|
||||
super(...arguments);
|
||||
this.created_at = null;
|
||||
this.updated_at = null;
|
||||
}
|
||||
}
|
||||
__decorate([
|
||||
(0, class_validator_1.IsNotEmpty)(),
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"], message: "Document status is required" }),
|
||||
__metadata("design:type", String)
|
||||
], IDocument.prototype, "uuid", void 0);
|
||||
], Document.prototype, "document_status", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"] }),
|
||||
__metadata("design:type", String)
|
||||
], IDocument.prototype, "document_status", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"] }),
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"], message: "Document type is required" }),
|
||||
__metadata("design:type", Function)
|
||||
], IDocument.prototype, "document_type", void 0);
|
||||
], Document.prototype, "document_type", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"] }),
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"], message: "Folder is required" }),
|
||||
__metadata("design:type", Function)
|
||||
], IDocument.prototype, "folder", void 0);
|
||||
], Document.prototype, "folder", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"] }),
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"], message: "Depositor is required" }),
|
||||
__metadata("design:type", Function)
|
||||
], IDocument.prototype, "depositor", void 0);
|
||||
], Document.prototype, "depositor", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsDate)(),
|
||||
__metadata("design:type", Object)
|
||||
], IDocument.prototype, "created_at", void 0);
|
||||
], Document.prototype, "created_at", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsDate)(),
|
||||
__metadata("design:type", Object)
|
||||
], IDocument.prototype, "updated_at", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsOptional)(),
|
||||
__metadata("design:type", Array)
|
||||
], IDocument.prototype, "files", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsOptional)(),
|
||||
__metadata("design:type", Array)
|
||||
], IDocument.prototype, "document_history", void 0);
|
||||
Document.IDocument = IDocument;
|
||||
let EDocumentStatus;
|
||||
], Document.prototype, "updated_at", void 0);
|
||||
exports.default = Document;
|
||||
var EDocumentStatus;
|
||||
(function (EDocumentStatus) {
|
||||
EDocumentStatus["ASKED"] = "ASKED";
|
||||
EDocumentStatus["DEPOSITED"] = "DEPOSITED";
|
||||
EDocumentStatus["VALIDATED"] = "VALIDATED";
|
||||
EDocumentStatus["ANCHORED"] = "ANCHORED";
|
||||
EDocumentStatus["REFUSED"] = "REFUSED";
|
||||
})(EDocumentStatus = Document.EDocumentStatus || (Document.EDocumentStatus = {}));
|
||||
})(Document || (Document = {}));
|
||||
exports.default = Document;
|
||||
})(EDocumentStatus = exports.EDocumentStatus || (exports.EDocumentStatus = {}));
|
||||
|
13
dist/Customer/DocumentHistory.d.ts
vendored
13
dist/Customer/DocumentHistory.d.ts
vendored
@ -1,12 +1,9 @@
|
||||
import type Document from "./Document";
|
||||
declare namespace DocumentHistory {
|
||||
class IDocumentHistory {
|
||||
uuid: string;
|
||||
document_status: Document.EDocumentStatus;
|
||||
document: Document.IDocument;
|
||||
import type { default as Document, EDocumentStatus } from "./Document";
|
||||
import Resource from "../Resource";
|
||||
export default class DocumentHistory extends Resource {
|
||||
document_status: EDocumentStatus;
|
||||
document: Document;
|
||||
refused_reason: string | null;
|
||||
created_at: Date | null;
|
||||
updated_at: Date | null;
|
||||
}
|
||||
}
|
||||
export default DocumentHistory;
|
||||
|
31
dist/Customer/DocumentHistory.js
vendored
31
dist/Customer/DocumentHistory.js
vendored
@ -8,41 +8,34 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
|
||||
var __metadata = (this && this.__metadata) || function (k, v) {
|
||||
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
||||
};
|
||||
var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
const class_validator_1 = require("class-validator");
|
||||
var DocumentHistory;
|
||||
(function (DocumentHistory) {
|
||||
class IDocumentHistory {
|
||||
const Resource_1 = __importDefault(require("../Resource"));
|
||||
class DocumentHistory extends Resource_1.default {
|
||||
constructor() {
|
||||
super(...arguments);
|
||||
this.refused_reason = null;
|
||||
this.created_at = null;
|
||||
this.updated_at = null;
|
||||
}
|
||||
}
|
||||
__decorate([
|
||||
(0, class_validator_1.IsNotEmpty)(),
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"], message: "Document status is required" }),
|
||||
__metadata("design:type", String)
|
||||
], IDocumentHistory.prototype, "uuid", void 0);
|
||||
], DocumentHistory.prototype, "document_status", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"] }),
|
||||
__metadata("design:type", String)
|
||||
], IDocumentHistory.prototype, "document_status", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"] }),
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"], message: "Document is required" }),
|
||||
__metadata("design:type", Function)
|
||||
], IDocumentHistory.prototype, "document", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsOptional)(),
|
||||
__metadata("design:type", Object)
|
||||
], IDocumentHistory.prototype, "refused_reason", void 0);
|
||||
], DocumentHistory.prototype, "document", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsDate)(),
|
||||
__metadata("design:type", Object)
|
||||
], IDocumentHistory.prototype, "created_at", void 0);
|
||||
], DocumentHistory.prototype, "created_at", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsDate)(),
|
||||
__metadata("design:type", Object)
|
||||
], IDocumentHistory.prototype, "updated_at", void 0);
|
||||
DocumentHistory.IDocumentHistory = IDocumentHistory;
|
||||
})(DocumentHistory || (DocumentHistory = {}));
|
||||
], DocumentHistory.prototype, "updated_at", void 0);
|
||||
exports.default = DocumentHistory;
|
||||
|
13
dist/Customer/DocumentType.d.ts
vendored
13
dist/Customer/DocumentType.d.ts
vendored
@ -1,18 +1,15 @@
|
||||
import type DeedHasDocumentType from "./DeedHasDocumentType";
|
||||
import type Document from "./Document";
|
||||
import type DeedTypeHasDocumentType from "./DeedTypeHasDocumentType";
|
||||
declare namespace DocumentType {
|
||||
class IDocumentType {
|
||||
uuid: string;
|
||||
import Resource from "../Resource";
|
||||
export default class DocumentType extends Resource {
|
||||
name: string;
|
||||
public_description: string;
|
||||
private_description: string | null;
|
||||
archived_at: Date | null;
|
||||
created_at: Date | null;
|
||||
updated_at: Date | null;
|
||||
documents?: Document.IDocument[];
|
||||
deed_has_document_types?: DeedHasDocumentType.IDeedHasDocumentType[];
|
||||
deed_type_has_document_types?: DeedTypeHasDocumentType.IDeedTypeHasDocumentType[];
|
||||
documents?: Document[];
|
||||
deed_has_document_types?: DeedHasDocumentType[];
|
||||
deed_type_has_document_types?: DeedTypeHasDocumentType[];
|
||||
}
|
||||
}
|
||||
export default DocumentType;
|
||||
|
45
dist/Customer/DocumentType.js
vendored
45
dist/Customer/DocumentType.js
vendored
@ -8,12 +8,15 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
|
||||
var __metadata = (this && this.__metadata) || function (k, v) {
|
||||
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
||||
};
|
||||
var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
const class_validator_1 = require("class-validator");
|
||||
var DocumentType;
|
||||
(function (DocumentType) {
|
||||
class IDocumentType {
|
||||
const Resource_1 = __importDefault(require("../Resource"));
|
||||
class DocumentType extends Resource_1.default {
|
||||
constructor() {
|
||||
super(...arguments);
|
||||
this.private_description = null;
|
||||
this.archived_at = null;
|
||||
this.created_at = null;
|
||||
@ -21,45 +24,23 @@ var DocumentType;
|
||||
}
|
||||
}
|
||||
__decorate([
|
||||
(0, class_validator_1.IsNotEmpty)(),
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"], message: "Name is required" }),
|
||||
__metadata("design:type", String)
|
||||
], IDocumentType.prototype, "uuid", void 0);
|
||||
], DocumentType.prototype, "name", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"] }),
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"], message: "Public description is required" }),
|
||||
__metadata("design:type", String)
|
||||
], IDocumentType.prototype, "name", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"] }),
|
||||
__metadata("design:type", String)
|
||||
], IDocumentType.prototype, "public_description", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsOptional)(),
|
||||
__metadata("design:type", Object)
|
||||
], IDocumentType.prototype, "private_description", void 0);
|
||||
], DocumentType.prototype, "public_description", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsDate)(),
|
||||
__metadata("design:type", Object)
|
||||
], IDocumentType.prototype, "archived_at", void 0);
|
||||
], DocumentType.prototype, "archived_at", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsDate)(),
|
||||
__metadata("design:type", Object)
|
||||
], IDocumentType.prototype, "created_at", void 0);
|
||||
], DocumentType.prototype, "created_at", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsDate)(),
|
||||
__metadata("design:type", Object)
|
||||
], IDocumentType.prototype, "updated_at", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsOptional)(),
|
||||
__metadata("design:type", Array)
|
||||
], IDocumentType.prototype, "documents", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsOptional)(),
|
||||
__metadata("design:type", Array)
|
||||
], IDocumentType.prototype, "deed_has_document_types", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsOptional)(),
|
||||
__metadata("design:type", Array)
|
||||
], IDocumentType.prototype, "deed_type_has_document_types", void 0);
|
||||
DocumentType.IDocumentType = IDocumentType;
|
||||
})(DocumentType || (DocumentType = {}));
|
||||
], DocumentType.prototype, "updated_at", void 0);
|
||||
exports.default = DocumentType;
|
||||
|
9
dist/Customer/File.d.ts
vendored
9
dist/Customer/File.d.ts
vendored
@ -1,11 +1,8 @@
|
||||
import type Document from "./Document";
|
||||
declare namespace File {
|
||||
class IFile {
|
||||
uuid: string;
|
||||
document: Document.IDocument;
|
||||
import Resource from "../Resource";
|
||||
export default class File extends Resource {
|
||||
document: Document;
|
||||
file_path: string | null;
|
||||
created_at: Date | null;
|
||||
updated_at: Date | null;
|
||||
}
|
||||
}
|
||||
export default File;
|
||||
|
27
dist/Customer/File.js
vendored
27
dist/Customer/File.js
vendored
@ -8,37 +8,30 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
|
||||
var __metadata = (this && this.__metadata) || function (k, v) {
|
||||
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
||||
};
|
||||
var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
const class_validator_1 = require("class-validator");
|
||||
var File;
|
||||
(function (File) {
|
||||
class IFile {
|
||||
const Resource_1 = __importDefault(require("../Resource"));
|
||||
class File extends Resource_1.default {
|
||||
constructor() {
|
||||
super(...arguments);
|
||||
this.file_path = null;
|
||||
this.created_at = null;
|
||||
this.updated_at = null;
|
||||
}
|
||||
}
|
||||
__decorate([
|
||||
(0, class_validator_1.IsNotEmpty)(),
|
||||
__metadata("design:type", String)
|
||||
], IFile.prototype, "uuid", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"] }),
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"], message: "Document is required" }),
|
||||
__metadata("design:type", Function)
|
||||
], IFile.prototype, "document", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsOptional)(),
|
||||
__metadata("design:type", Object)
|
||||
], IFile.prototype, "file_path", void 0);
|
||||
], File.prototype, "document", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsDate)(),
|
||||
__metadata("design:type", Object)
|
||||
], IFile.prototype, "created_at", void 0);
|
||||
], File.prototype, "created_at", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsDate)(),
|
||||
__metadata("design:type", Object)
|
||||
], IFile.prototype, "updated_at", void 0);
|
||||
File.IFile = IFile;
|
||||
})(File || (File = {}));
|
||||
], File.prototype, "updated_at", void 0);
|
||||
exports.default = File;
|
||||
|
9
dist/Customer/Notification.d.ts
vendored
9
dist/Customer/Notification.d.ts
vendored
@ -1,12 +1,9 @@
|
||||
import type UserHasNotification from "./UserHasNotification";
|
||||
declare namespace Notification {
|
||||
class INotification {
|
||||
uuid: string;
|
||||
import Resource from "../Resource";
|
||||
export default class Notification extends Resource {
|
||||
message: string;
|
||||
redirection_url: string;
|
||||
created_at: Date | null;
|
||||
updated_at: Date | null;
|
||||
user_has_notifications?: UserHasNotification.IUserHasNotification[];
|
||||
user_has_notifications?: UserHasNotification[];
|
||||
}
|
||||
}
|
||||
export default Notification;
|
||||
|
31
dist/Customer/Notification.js
vendored
31
dist/Customer/Notification.js
vendored
@ -8,41 +8,34 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
|
||||
var __metadata = (this && this.__metadata) || function (k, v) {
|
||||
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
||||
};
|
||||
var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
const class_validator_1 = require("class-validator");
|
||||
var Notification;
|
||||
(function (Notification) {
|
||||
class INotification {
|
||||
const Resource_1 = __importDefault(require("../Resource"));
|
||||
class Notification extends Resource_1.default {
|
||||
constructor() {
|
||||
super(...arguments);
|
||||
this.created_at = null;
|
||||
this.updated_at = null;
|
||||
}
|
||||
}
|
||||
__decorate([
|
||||
(0, class_validator_1.IsNotEmpty)(),
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"], message: "Message is required" }),
|
||||
__metadata("design:type", String)
|
||||
], INotification.prototype, "uuid", void 0);
|
||||
], Notification.prototype, "message", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"] }),
|
||||
__metadata("design:type", String)
|
||||
], INotification.prototype, "message", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"] }),
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"], message: "Redirection url is required" }),
|
||||
(0, class_validator_1.IsUrl)(),
|
||||
__metadata("design:type", String)
|
||||
], INotification.prototype, "redirection_url", void 0);
|
||||
], Notification.prototype, "redirection_url", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsDate)(),
|
||||
__metadata("design:type", Object)
|
||||
], INotification.prototype, "created_at", void 0);
|
||||
], Notification.prototype, "created_at", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsDate)(),
|
||||
__metadata("design:type", Object)
|
||||
], INotification.prototype, "updated_at", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsOptional)(),
|
||||
__metadata("design:type", Array)
|
||||
], INotification.prototype, "user_has_notifications", void 0);
|
||||
Notification.INotification = INotification;
|
||||
})(Notification || (Notification = {}));
|
||||
], Notification.prototype, "updated_at", void 0);
|
||||
exports.default = Notification;
|
||||
|
19
dist/Customer/Office.d.ts
vendored
19
dist/Customer/Office.d.ts
vendored
@ -2,24 +2,21 @@ import type Address from "./Address";
|
||||
import type DeedType from "./DeedType";
|
||||
import type OfficeFolder from "./OfficeFolder";
|
||||
import type User from "../Notary/User";
|
||||
declare namespace Office {
|
||||
class IOffice {
|
||||
uuid: string;
|
||||
import Resource from "../Resource";
|
||||
export default class Office extends Resource {
|
||||
idNot: string;
|
||||
name: string;
|
||||
crpcen: string;
|
||||
address: Address.IAddress;
|
||||
address: Address;
|
||||
office_status: EOfficeStatus;
|
||||
created_at: Date | null;
|
||||
updated_at: Date | null;
|
||||
deed_types?: DeedType.IDeedType[];
|
||||
users?: User.IUser[];
|
||||
office_folders?: OfficeFolder.IOfficeFolder[];
|
||||
deed_types?: DeedType[];
|
||||
users?: User[];
|
||||
office_folders?: OfficeFolder[];
|
||||
}
|
||||
enum EOfficeStatus {
|
||||
export declare enum EOfficeStatus {
|
||||
ACTIVATED = "ACTIVATED",
|
||||
DESACTIVATED = "DESACTIVATED"
|
||||
}
|
||||
type TOfficeStatus = EOfficeStatus.ACTIVATED | EOfficeStatus.DESACTIVATED;
|
||||
}
|
||||
export default Office;
|
||||
export declare type TOfficeStatus = EOfficeStatus.ACTIVATED | EOfficeStatus.DESACTIVATED;
|
||||
|
58
dist/Customer/Office.js
vendored
58
dist/Customer/Office.js
vendored
@ -8,65 +8,51 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
|
||||
var __metadata = (this && this.__metadata) || function (k, v) {
|
||||
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
||||
};
|
||||
var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.EOfficeStatus = void 0;
|
||||
const class_validator_1 = require("class-validator");
|
||||
var Office;
|
||||
(function (Office) {
|
||||
class IOffice {
|
||||
const Resource_1 = __importDefault(require("../Resource"));
|
||||
class Office extends Resource_1.default {
|
||||
constructor() {
|
||||
super(...arguments);
|
||||
this.created_at = null;
|
||||
this.updated_at = null;
|
||||
}
|
||||
}
|
||||
__decorate([
|
||||
(0, class_validator_1.IsNotEmpty)(),
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"], message: "ID IdNote is required" }),
|
||||
__metadata("design:type", String)
|
||||
], IOffice.prototype, "uuid", void 0);
|
||||
], Office.prototype, "idNot", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"] }),
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"], message: "Name is required" }),
|
||||
__metadata("design:type", String)
|
||||
], IOffice.prototype, "idNot", void 0);
|
||||
], Office.prototype, "name", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"] }),
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"], message: "CRPCEN is required" }),
|
||||
__metadata("design:type", String)
|
||||
], IOffice.prototype, "name", void 0);
|
||||
], Office.prototype, "crpcen", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"] }),
|
||||
__metadata("design:type", String)
|
||||
], IOffice.prototype, "crpcen", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"] }),
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"], message: "Address is required" }),
|
||||
__metadata("design:type", Function)
|
||||
], IOffice.prototype, "address", void 0);
|
||||
], Office.prototype, "address", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"] }),
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"], message: "Office status is required" }),
|
||||
__metadata("design:type", String)
|
||||
], IOffice.prototype, "office_status", void 0);
|
||||
], Office.prototype, "office_status", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsDate)(),
|
||||
__metadata("design:type", Object)
|
||||
], IOffice.prototype, "created_at", void 0);
|
||||
], Office.prototype, "created_at", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsDate)(),
|
||||
__metadata("design:type", Object)
|
||||
], IOffice.prototype, "updated_at", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsOptional)(),
|
||||
__metadata("design:type", Array)
|
||||
], IOffice.prototype, "deed_types", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsOptional)(),
|
||||
__metadata("design:type", Array)
|
||||
], IOffice.prototype, "users", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsOptional)(),
|
||||
__metadata("design:type", Array)
|
||||
], IOffice.prototype, "office_folders", void 0);
|
||||
Office.IOffice = IOffice;
|
||||
let EOfficeStatus;
|
||||
], Office.prototype, "updated_at", void 0);
|
||||
exports.default = Office;
|
||||
var EOfficeStatus;
|
||||
(function (EOfficeStatus) {
|
||||
EOfficeStatus["ACTIVATED"] = "ACTIVATED";
|
||||
EOfficeStatus["DESACTIVATED"] = "DESACTIVATED";
|
||||
})(EOfficeStatus = Office.EOfficeStatus || (Office.EOfficeStatus = {}));
|
||||
})(Office || (Office = {}));
|
||||
exports.default = Office;
|
||||
})(EOfficeStatus = exports.EOfficeStatus || (exports.EOfficeStatus = {}));
|
||||
|
21
dist/Customer/OfficeFolder.d.ts
vendored
21
dist/Customer/OfficeFolder.d.ts
vendored
@ -3,26 +3,23 @@ import type Document from "./Document";
|
||||
import type Office from "./Office";
|
||||
import type OfficeFolderHasCustomer from "./OfficeFolderHasCustomer";
|
||||
import type OfficeFolderHasStakeholder from "./OfficeFolderHasStakeholder";
|
||||
declare namespace OfficeFolder {
|
||||
class IOfficeFolder {
|
||||
uuid: string;
|
||||
import Resource from "../Resource";
|
||||
export default class OfficeFolder extends Resource {
|
||||
folder_number: string;
|
||||
name: string;
|
||||
description: string | null;
|
||||
archived_description: string | null;
|
||||
status: EFolderStatus;
|
||||
deed: Deed.IDeed;
|
||||
office: Office.IOffice;
|
||||
deed: Deed;
|
||||
office: Office;
|
||||
created_at: Date | null;
|
||||
updated_at: Date | null;
|
||||
office_folder_has_customers?: OfficeFolderHasCustomer.IOfficeFolderHasCustomer[];
|
||||
office_folder_has_stakeholder?: OfficeFolderHasStakeholder.IOfficeFolderHasStakeholder[];
|
||||
documents?: Document.IDocument[];
|
||||
office_folder_has_customers?: OfficeFolderHasCustomer[];
|
||||
office_folder_has_stakeholder?: OfficeFolderHasStakeholder[];
|
||||
documents?: Document[];
|
||||
}
|
||||
enum EFolderStatus {
|
||||
export declare enum EFolderStatus {
|
||||
LIVE = "LIVE",
|
||||
ARCHIVED = "ARCHIVED"
|
||||
}
|
||||
type TFolderStatus = EFolderStatus.LIVE | EFolderStatus.ARCHIVED;
|
||||
}
|
||||
export default OfficeFolder;
|
||||
export declare type TFolderStatus = EFolderStatus.LIVE | EFolderStatus.ARCHIVED;
|
||||
|
66
dist/Customer/OfficeFolder.js
vendored
66
dist/Customer/OfficeFolder.js
vendored
@ -8,12 +8,16 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
|
||||
var __metadata = (this && this.__metadata) || function (k, v) {
|
||||
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
||||
};
|
||||
var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.EFolderStatus = void 0;
|
||||
const class_validator_1 = require("class-validator");
|
||||
var OfficeFolder;
|
||||
(function (OfficeFolder) {
|
||||
class IOfficeFolder {
|
||||
const Resource_1 = __importDefault(require("../Resource"));
|
||||
class OfficeFolder extends Resource_1.default {
|
||||
constructor() {
|
||||
super(...arguments);
|
||||
this.description = null;
|
||||
this.archived_description = null;
|
||||
this.created_at = null;
|
||||
@ -21,62 +25,36 @@ var OfficeFolder;
|
||||
}
|
||||
}
|
||||
__decorate([
|
||||
(0, class_validator_1.IsNotEmpty)(),
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"], message: "Folder number is required" }),
|
||||
__metadata("design:type", String)
|
||||
], IOfficeFolder.prototype, "uuid", void 0);
|
||||
], OfficeFolder.prototype, "folder_number", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"] }),
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"], message: "Name is required" }),
|
||||
__metadata("design:type", String)
|
||||
], IOfficeFolder.prototype, "folder_number", void 0);
|
||||
], OfficeFolder.prototype, "name", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"] }),
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"], message: "Status is required" }),
|
||||
__metadata("design:type", String)
|
||||
], IOfficeFolder.prototype, "name", void 0);
|
||||
], OfficeFolder.prototype, "status", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsOptional)(),
|
||||
__metadata("design:type", Object)
|
||||
], IOfficeFolder.prototype, "description", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsOptional)(),
|
||||
__metadata("design:type", Object)
|
||||
], IOfficeFolder.prototype, "archived_description", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"] }),
|
||||
__metadata("design:type", String)
|
||||
], IOfficeFolder.prototype, "status", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"] }),
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"], message: "Deed is required" }),
|
||||
__metadata("design:type", Function)
|
||||
], IOfficeFolder.prototype, "deed", void 0);
|
||||
], OfficeFolder.prototype, "deed", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"] }),
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"], message: "Office is required" }),
|
||||
__metadata("design:type", Function)
|
||||
], IOfficeFolder.prototype, "office", void 0);
|
||||
], OfficeFolder.prototype, "office", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsDate)(),
|
||||
__metadata("design:type", Object)
|
||||
], IOfficeFolder.prototype, "created_at", void 0);
|
||||
], OfficeFolder.prototype, "created_at", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsDate)(),
|
||||
__metadata("design:type", Object)
|
||||
], IOfficeFolder.prototype, "updated_at", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsOptional)(),
|
||||
__metadata("design:type", Array)
|
||||
], IOfficeFolder.prototype, "office_folder_has_customers", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsOptional)(),
|
||||
__metadata("design:type", Array)
|
||||
], IOfficeFolder.prototype, "office_folder_has_stakeholder", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsOptional)(),
|
||||
__metadata("design:type", Array)
|
||||
], IOfficeFolder.prototype, "documents", void 0);
|
||||
OfficeFolder.IOfficeFolder = IOfficeFolder;
|
||||
let EFolderStatus;
|
||||
], OfficeFolder.prototype, "updated_at", void 0);
|
||||
exports.default = OfficeFolder;
|
||||
var EFolderStatus;
|
||||
(function (EFolderStatus) {
|
||||
EFolderStatus["LIVE"] = "LIVE";
|
||||
EFolderStatus["ARCHIVED"] = "ARCHIVED";
|
||||
})(EFolderStatus = OfficeFolder.EFolderStatus || (OfficeFolder.EFolderStatus = {}));
|
||||
})(OfficeFolder || (OfficeFolder = {}));
|
||||
exports.default = OfficeFolder;
|
||||
})(EFolderStatus = exports.EFolderStatus || (exports.EFolderStatus = {}));
|
||||
|
11
dist/Customer/OfficeFolderHasCustomer.d.ts
vendored
11
dist/Customer/OfficeFolderHasCustomer.d.ts
vendored
@ -1,12 +1,9 @@
|
||||
import type Customer from ".";
|
||||
import type OfficeFolder from "./OfficeFolder";
|
||||
declare namespace OfficeFolderHasCustomer {
|
||||
class IOfficeFolderHasCustomer {
|
||||
uuid: string;
|
||||
customer: Customer.ICustomer;
|
||||
office_folder: OfficeFolder.IOfficeFolder;
|
||||
import Resource from "../Resource";
|
||||
export default class OfficeFolderHasCustomer extends Resource {
|
||||
customer: Customer;
|
||||
office_folder: OfficeFolder;
|
||||
created_at: Date | null;
|
||||
updated_at: Date | null;
|
||||
}
|
||||
}
|
||||
export default OfficeFolderHasCustomer;
|
||||
|
27
dist/Customer/OfficeFolderHasCustomer.js
vendored
27
dist/Customer/OfficeFolderHasCustomer.js
vendored
@ -8,36 +8,33 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
|
||||
var __metadata = (this && this.__metadata) || function (k, v) {
|
||||
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
||||
};
|
||||
var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
const class_validator_1 = require("class-validator");
|
||||
var OfficeFolderHasCustomer;
|
||||
(function (OfficeFolderHasCustomer) {
|
||||
class IOfficeFolderHasCustomer {
|
||||
const Resource_1 = __importDefault(require("../Resource"));
|
||||
class OfficeFolderHasCustomer extends Resource_1.default {
|
||||
constructor() {
|
||||
super(...arguments);
|
||||
this.created_at = null;
|
||||
this.updated_at = null;
|
||||
}
|
||||
}
|
||||
__decorate([
|
||||
(0, class_validator_1.IsNotEmpty)(),
|
||||
__metadata("design:type", String)
|
||||
], IOfficeFolderHasCustomer.prototype, "uuid", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"] }),
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"], message: "Customer is required" }),
|
||||
__metadata("design:type", Function)
|
||||
], IOfficeFolderHasCustomer.prototype, "customer", void 0);
|
||||
], OfficeFolderHasCustomer.prototype, "customer", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"] }),
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"], message: "Office folder is required" }),
|
||||
__metadata("design:type", Function)
|
||||
], IOfficeFolderHasCustomer.prototype, "office_folder", void 0);
|
||||
], OfficeFolderHasCustomer.prototype, "office_folder", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsDate)(),
|
||||
__metadata("design:type", Object)
|
||||
], IOfficeFolderHasCustomer.prototype, "created_at", void 0);
|
||||
], OfficeFolderHasCustomer.prototype, "created_at", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsDate)(),
|
||||
__metadata("design:type", Object)
|
||||
], IOfficeFolderHasCustomer.prototype, "updated_at", void 0);
|
||||
OfficeFolderHasCustomer.IOfficeFolderHasCustomer = IOfficeFolderHasCustomer;
|
||||
})(OfficeFolderHasCustomer || (OfficeFolderHasCustomer = {}));
|
||||
], OfficeFolderHasCustomer.prototype, "updated_at", void 0);
|
||||
exports.default = OfficeFolderHasCustomer;
|
||||
|
11
dist/Customer/OfficeFolderHasStakeholder.d.ts
vendored
11
dist/Customer/OfficeFolderHasStakeholder.d.ts
vendored
@ -1,12 +1,9 @@
|
||||
import type OfficeFolder from "./OfficeFolder";
|
||||
import type User from "../Notary/User";
|
||||
declare namespace OfficeFolderHasStakeholder {
|
||||
class IOfficeFolderHasStakeholder {
|
||||
uuid: string;
|
||||
user_stakeholder: User.IUser;
|
||||
office_folder: OfficeFolder.IOfficeFolder;
|
||||
import Resource from "../Resource";
|
||||
export default class OfficeFolderHasStakeholder extends Resource {
|
||||
user_stakeholder: User;
|
||||
office_folder: OfficeFolder;
|
||||
created_at: Date | null;
|
||||
updated_at: Date | null;
|
||||
}
|
||||
}
|
||||
export default OfficeFolderHasStakeholder;
|
||||
|
27
dist/Customer/OfficeFolderHasStakeholder.js
vendored
27
dist/Customer/OfficeFolderHasStakeholder.js
vendored
@ -8,36 +8,33 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
|
||||
var __metadata = (this && this.__metadata) || function (k, v) {
|
||||
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
||||
};
|
||||
var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
const class_validator_1 = require("class-validator");
|
||||
var OfficeFolderHasStakeholder;
|
||||
(function (OfficeFolderHasStakeholder) {
|
||||
class IOfficeFolderHasStakeholder {
|
||||
const Resource_1 = __importDefault(require("../Resource"));
|
||||
class OfficeFolderHasStakeholder extends Resource_1.default {
|
||||
constructor() {
|
||||
super(...arguments);
|
||||
this.created_at = null;
|
||||
this.updated_at = null;
|
||||
}
|
||||
}
|
||||
__decorate([
|
||||
(0, class_validator_1.IsNotEmpty)(),
|
||||
__metadata("design:type", String)
|
||||
], IOfficeFolderHasStakeholder.prototype, "uuid", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"] }),
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"], message: "User Stakeholder is required" }),
|
||||
__metadata("design:type", Function)
|
||||
], IOfficeFolderHasStakeholder.prototype, "user_stakeholder", void 0);
|
||||
], OfficeFolderHasStakeholder.prototype, "user_stakeholder", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"] }),
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"], message: "Office folder is required" }),
|
||||
__metadata("design:type", Function)
|
||||
], IOfficeFolderHasStakeholder.prototype, "office_folder", void 0);
|
||||
], OfficeFolderHasStakeholder.prototype, "office_folder", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsDate)(),
|
||||
__metadata("design:type", Object)
|
||||
], IOfficeFolderHasStakeholder.prototype, "created_at", void 0);
|
||||
], OfficeFolderHasStakeholder.prototype, "created_at", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsDate)(),
|
||||
__metadata("design:type", Object)
|
||||
], IOfficeFolderHasStakeholder.prototype, "updated_at", void 0);
|
||||
OfficeFolderHasStakeholder.IOfficeFolderHasStakeholder = IOfficeFolderHasStakeholder;
|
||||
})(OfficeFolderHasStakeholder || (OfficeFolderHasStakeholder = {}));
|
||||
], OfficeFolderHasStakeholder.prototype, "updated_at", void 0);
|
||||
exports.default = OfficeFolderHasStakeholder;
|
||||
|
15
dist/Customer/UserHasNotification.d.ts
vendored
15
dist/Customer/UserHasNotification.d.ts
vendored
@ -1,13 +1,14 @@
|
||||
import type Notification from "./Notification";
|
||||
import type User from "../Notary/User";
|
||||
declare namespace UserHasNotification {
|
||||
class IUserHasNotification {
|
||||
uuid: string;
|
||||
user: User.IUser;
|
||||
notification: Notification.INotification;
|
||||
import Resource from "../Resource";
|
||||
export default class UserHasNotification extends Resource {
|
||||
user: User;
|
||||
notification: Notification;
|
||||
created_at: Date | null;
|
||||
updated_at: Date | null;
|
||||
}
|
||||
type ENotificationStatus = "READ" | "UNREAD";
|
||||
export declare type TNotificationStatus = "READ" | "UNREAD";
|
||||
export declare enum ENotificationStatus {
|
||||
READ = "READ",
|
||||
UNREAD = "UNREAD"
|
||||
}
|
||||
export default UserHasNotification;
|
||||
|
33
dist/Customer/UserHasNotification.js
vendored
33
dist/Customer/UserHasNotification.js
vendored
@ -8,36 +8,39 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
|
||||
var __metadata = (this && this.__metadata) || function (k, v) {
|
||||
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
||||
};
|
||||
var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.ENotificationStatus = void 0;
|
||||
const class_validator_1 = require("class-validator");
|
||||
var UserHasNotification;
|
||||
(function (UserHasNotification) {
|
||||
class IUserHasNotification {
|
||||
const Resource_1 = __importDefault(require("../Resource"));
|
||||
class UserHasNotification extends Resource_1.default {
|
||||
constructor() {
|
||||
super(...arguments);
|
||||
this.created_at = null;
|
||||
this.updated_at = null;
|
||||
}
|
||||
}
|
||||
__decorate([
|
||||
(0, class_validator_1.IsNotEmpty)(),
|
||||
__metadata("design:type", String)
|
||||
], IUserHasNotification.prototype, "uuid", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"] }),
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"], message: "User is required" }),
|
||||
__metadata("design:type", Function)
|
||||
], IUserHasNotification.prototype, "user", void 0);
|
||||
], UserHasNotification.prototype, "user", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"] }),
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"], message: "Notification is required" }),
|
||||
__metadata("design:type", Function)
|
||||
], IUserHasNotification.prototype, "notification", void 0);
|
||||
], UserHasNotification.prototype, "notification", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsDate)(),
|
||||
__metadata("design:type", Object)
|
||||
], IUserHasNotification.prototype, "created_at", void 0);
|
||||
], UserHasNotification.prototype, "created_at", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsDate)(),
|
||||
__metadata("design:type", Object)
|
||||
], IUserHasNotification.prototype, "updated_at", void 0);
|
||||
UserHasNotification.IUserHasNotification = IUserHasNotification;
|
||||
})(UserHasNotification || (UserHasNotification = {}));
|
||||
], UserHasNotification.prototype, "updated_at", void 0);
|
||||
exports.default = UserHasNotification;
|
||||
var ENotificationStatus;
|
||||
(function (ENotificationStatus) {
|
||||
ENotificationStatus["READ"] = "READ";
|
||||
ENotificationStatus["UNREAD"] = "UNREAD";
|
||||
})(ENotificationStatus = exports.ENotificationStatus || (exports.ENotificationStatus = {}));
|
||||
|
37
dist/Customer/index.d.ts
vendored
37
dist/Customer/index.d.ts
vendored
@ -1,21 +1,18 @@
|
||||
import type Document from "./Document";
|
||||
import type OfficeFolderHasCustomer from "./OfficeFolderHasCustomer";
|
||||
import type Contact from "./Contact";
|
||||
declare namespace Customer {
|
||||
class ICustomer {
|
||||
uuid: string;
|
||||
status: ECustomerStatus;
|
||||
contact: Contact.IContact;
|
||||
created_at: Date | null;
|
||||
updated_at: Date | null;
|
||||
office_folder_has_customers?: OfficeFolderHasCustomer.IOfficeFolderHasCustomer[];
|
||||
documents?: Document.IDocument[];
|
||||
}
|
||||
enum ECustomerStatus {
|
||||
VALIDATED = "VALIDATED",
|
||||
PENDING = "PENDING",
|
||||
ERRONED = "ERRONED"
|
||||
}
|
||||
type TCustomerStatus = ECustomerStatus.VALIDATED | ECustomerStatus.PENDING | ECustomerStatus.ERRONED;
|
||||
}
|
||||
import Customer from "./Customer";
|
||||
export default Customer;
|
||||
export { default as Address } from "./Address";
|
||||
export { default as Contact } from "./Contact";
|
||||
export { default as Deed } from "./Deed";
|
||||
export { default as DeedHasDocumentType } from "./DeedHasDocumentType";
|
||||
export { default as DeedType } from "./DeedType";
|
||||
export { default as DeedTypeHasDocumentType } from "./DeedTypeHasDocumentType";
|
||||
export { default as Document } from "./Document";
|
||||
export { default as DocumentHistory } from "./DocumentHistory";
|
||||
export { default as DocumentType } from "./DocumentType";
|
||||
export { default as File } from "./File";
|
||||
export { default as Notification } from "./Notification";
|
||||
export { default as Office } from "./Office";
|
||||
export { default as OfficeFolder } from "./OfficeFolder";
|
||||
export { default as OfficeFolderHasCustomer } from "./OfficeFolderHasCustomer";
|
||||
export { default as OfficeFolderHasStakeholder } from "./OfficeFolderHasStakeholder";
|
||||
export { default as UserHasNotification } from "./UserHasNotification";
|
||||
|
91
dist/Customer/index.js
vendored
91
dist/Customer/index.js
vendored
@ -1,57 +1,40 @@
|
||||
"use strict";
|
||||
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
||||
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
||||
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
||||
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;
|
||||
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
||||
};
|
||||
var __metadata = (this && this.__metadata) || function (k, v) {
|
||||
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
||||
var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
const class_validator_1 = require("class-validator");
|
||||
var Customer;
|
||||
(function (Customer) {
|
||||
class ICustomer {
|
||||
constructor() {
|
||||
this.created_at = null;
|
||||
this.updated_at = null;
|
||||
}
|
||||
}
|
||||
__decorate([
|
||||
(0, class_validator_1.IsNotEmpty)(),
|
||||
__metadata("design:type", String)
|
||||
], ICustomer.prototype, "uuid", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"] }),
|
||||
__metadata("design:type", String)
|
||||
], ICustomer.prototype, "status", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsNotEmpty)({ groups: ["create"] }),
|
||||
__metadata("design:type", Function)
|
||||
], ICustomer.prototype, "contact", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsDate)(),
|
||||
__metadata("design:type", Object)
|
||||
], ICustomer.prototype, "created_at", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsDate)(),
|
||||
__metadata("design:type", Object)
|
||||
], ICustomer.prototype, "updated_at", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsOptional)(),
|
||||
__metadata("design:type", Array)
|
||||
], ICustomer.prototype, "office_folder_has_customers", void 0);
|
||||
__decorate([
|
||||
(0, class_validator_1.IsOptional)(),
|
||||
__metadata("design:type", Array)
|
||||
], ICustomer.prototype, "documents", void 0);
|
||||
Customer.ICustomer = ICustomer;
|
||||
let ECustomerStatus;
|
||||
(function (ECustomerStatus) {
|
||||
ECustomerStatus["VALIDATED"] = "VALIDATED";
|
||||
ECustomerStatus["PENDING"] = "PENDING";
|
||||
ECustomerStatus["ERRONED"] = "ERRONED";
|
||||
})(ECustomerStatus = Customer.ECustomerStatus || (Customer.ECustomerStatus = {}));
|
||||
})(Customer || (Customer = {}));
|
||||
exports.default = Customer;
|
||||
exports.UserHasNotification = exports.OfficeFolderHasStakeholder = exports.OfficeFolderHasCustomer = exports.OfficeFolder = exports.Office = exports.Notification = exports.File = exports.DocumentType = exports.DocumentHistory = exports.Document = exports.DeedTypeHasDocumentType = exports.DeedType = exports.DeedHasDocumentType = exports.Deed = exports.Contact = exports.Address = void 0;
|
||||
const Customer_1 = __importDefault(require("./Customer"));
|
||||
exports.default = Customer_1.default;
|
||||
var Address_1 = require("./Address");
|
||||
Object.defineProperty(exports, "Address", { enumerable: true, get: function () { return __importDefault(Address_1).default; } });
|
||||
var Contact_1 = require("./Contact");
|
||||
Object.defineProperty(exports, "Contact", { enumerable: true, get: function () { return __importDefault(Contact_1).default; } });
|
||||
var Deed_1 = require("./Deed");
|
||||
Object.defineProperty(exports, "Deed", { enumerable: true, get: function () { return __importDefault(Deed_1).default; } });
|
||||
var DeedHasDocumentType_1 = require("./DeedHasDocumentType");
|
||||
Object.defineProperty(exports, "DeedHasDocumentType", { enumerable: true, get: function () { return __importDefault(DeedHasDocumentType_1).default; } });
|
||||
var DeedType_1 = require("./DeedType");
|
||||
Object.defineProperty(exports, "DeedType", { enumerable: true, get: function () { return __importDefault(DeedType_1).default; } });
|
||||
var DeedTypeHasDocumentType_1 = require("./DeedTypeHasDocumentType");
|
||||
Object.defineProperty(exports, "DeedTypeHasDocumentType", { enumerable: true, get: function () { return __importDefault(DeedTypeHasDocumentType_1).default; } });
|
||||
var Document_1 = require("./Document");
|
||||
Object.defineProperty(exports, "Document", { enumerable: true, get: function () { return __importDefault(Document_1).default; } });
|
||||
var DocumentHistory_1 = require("./DocumentHistory");
|
||||
Object.defineProperty(exports, "DocumentHistory", { enumerable: true, get: function () { return __importDefault(DocumentHistory_1).default; } });
|
||||
var DocumentType_1 = require("./DocumentType");
|
||||
Object.defineProperty(exports, "DocumentType", { enumerable: true, get: function () { return __importDefault(DocumentType_1).default; } });
|
||||
var File_1 = require("./File");
|
||||
Object.defineProperty(exports, "File", { enumerable: true, get: function () { return __importDefault(File_1).default; } });
|
||||
var Notification_1 = require("./Notification");
|
||||
Object.defineProperty(exports, "Notification", { enumerable: true, get: function () { return __importDefault(Notification_1).default; } });
|
||||
var Office_1 = require("./Office");
|
||||
Object.defineProperty(exports, "Office", { enumerable: true, get: function () { return __importDefault(Office_1).default; } });
|
||||
var OfficeFolder_1 = require("./OfficeFolder");
|
||||
Object.defineProperty(exports, "OfficeFolder", { enumerable: true, get: function () { return __importDefault(OfficeFolder_1).default; } });
|
||||
var OfficeFolderHasCustomer_1 = require("./OfficeFolderHasCustomer");
|
||||
Object.defineProperty(exports, "OfficeFolderHasCustomer", { enumerable: true, get: function () { return __importDefault(OfficeFolderHasCustomer_1).default; } });
|
||||
var OfficeFolderHasStakeholder_1 = require("./OfficeFolderHasStakeholder");
|
||||
Object.defineProperty(exports, "OfficeFolderHasStakeholder", { enumerable: true, get: function () { return __importDefault(OfficeFolderHasStakeholder_1).default; } });
|
||||
var UserHasNotification_1 = require("./UserHasNotification");
|
||||
Object.defineProperty(exports, "UserHasNotification", { enumerable: true, get: function () { return __importDefault(UserHasNotification_1).default; } });
|
||||
|
7
dist/Notary/Address.d.ts
vendored
7
dist/Notary/Address.d.ts
vendored
@ -1,6 +1,3 @@
|
||||
import Address_ from "../Customer/Address";
|
||||
declare namespace Address {
|
||||
class IAddress extends Address_.IAddress {
|
||||
}
|
||||
}
|
||||
export * from "../Customer/Address";
|
||||
import Address from "../Customer/Address";
|
||||
export default Address;
|
||||
|
23
dist/Notary/Address.js
vendored
23
dist/Notary/Address.js
vendored
@ -1,13 +1,22 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
||||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
||||
};
|
||||
var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
__exportStar(require("../Customer/Address"), exports);
|
||||
const Address_1 = __importDefault(require("../Customer/Address"));
|
||||
var Address;
|
||||
(function (Address) {
|
||||
class IAddress extends Address_1.default.IAddress {
|
||||
}
|
||||
Address.IAddress = IAddress;
|
||||
})(Address || (Address = {}));
|
||||
exports.default = Address;
|
||||
exports.default = Address_1.default;
|
||||
|
7
dist/Notary/Contact.d.ts
vendored
7
dist/Notary/Contact.d.ts
vendored
@ -1,6 +1,3 @@
|
||||
import Contact_ from "../Customer/Contact";
|
||||
declare namespace Contact {
|
||||
class IContact extends Contact_.IContact {
|
||||
}
|
||||
}
|
||||
export * from "../Customer/Contact";
|
||||
import Contact from "../Customer/Contact";
|
||||
export default Contact;
|
||||
|
23
dist/Notary/Contact.js
vendored
23
dist/Notary/Contact.js
vendored
@ -1,13 +1,22 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
||||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
||||
};
|
||||
var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
__exportStar(require("../Customer/Contact"), exports);
|
||||
const Contact_1 = __importDefault(require("../Customer/Contact"));
|
||||
var Contact;
|
||||
(function (Contact) {
|
||||
class IContact extends Contact_1.default.IContact {
|
||||
}
|
||||
Contact.IContact = IContact;
|
||||
})(Contact || (Contact = {}));
|
||||
exports.default = Contact;
|
||||
exports.default = Contact_1.default;
|
||||
|
7
dist/Notary/Customer.d.ts
vendored
7
dist/Notary/Customer.d.ts
vendored
@ -1,6 +1,3 @@
|
||||
import Customer_ from "../Customer";
|
||||
declare namespace Customer {
|
||||
class ICustomer extends Customer_.ICustomer {
|
||||
}
|
||||
}
|
||||
export * from "../Customer/Customer";
|
||||
import Customer from "../Customer/Customer";
|
||||
export default Customer;
|
||||
|
25
dist/Notary/Customer.js
vendored
25
dist/Notary/Customer.js
vendored
@ -1,13 +1,22 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
||||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
||||
};
|
||||
var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
const Customer_1 = __importDefault(require("../Customer"));
|
||||
var Customer;
|
||||
(function (Customer) {
|
||||
class ICustomer extends Customer_1.default.ICustomer {
|
||||
}
|
||||
Customer.ICustomer = ICustomer;
|
||||
})(Customer || (Customer = {}));
|
||||
exports.default = Customer;
|
||||
__exportStar(require("../Customer/Customer"), exports);
|
||||
const Customer_1 = __importDefault(require("../Customer/Customer"));
|
||||
exports.default = Customer_1.default;
|
||||
|
7
dist/Notary/Deed.d.ts
vendored
7
dist/Notary/Deed.d.ts
vendored
@ -1,6 +1,3 @@
|
||||
import Deed_ from "../Customer/Deed";
|
||||
declare namespace Deed {
|
||||
class IDeed extends Deed_.IDeed {
|
||||
}
|
||||
}
|
||||
export * from "../Customer/Deed";
|
||||
import Deed from "../Customer/Deed";
|
||||
export default Deed;
|
||||
|
23
dist/Notary/Deed.js
vendored
23
dist/Notary/Deed.js
vendored
@ -1,13 +1,22 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
||||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
||||
};
|
||||
var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
__exportStar(require("../Customer/Deed"), exports);
|
||||
const Deed_1 = __importDefault(require("../Customer/Deed"));
|
||||
var Deed;
|
||||
(function (Deed) {
|
||||
class IDeed extends Deed_1.default.IDeed {
|
||||
}
|
||||
Deed.IDeed = IDeed;
|
||||
})(Deed || (Deed = {}));
|
||||
exports.default = Deed;
|
||||
exports.default = Deed_1.default;
|
||||
|
7
dist/Notary/DeedHasDocumentType.d.ts
vendored
7
dist/Notary/DeedHasDocumentType.d.ts
vendored
@ -1,6 +1,3 @@
|
||||
import DeedHasDocumentType_ from "../Customer/DeedHasDocumentType";
|
||||
declare namespace DeedHasDocumentType {
|
||||
class IDeedHasDocumentType extends DeedHasDocumentType_.IDeedHasDocumentType {
|
||||
}
|
||||
}
|
||||
export * from "../Customer/DeedHasDocumentType";
|
||||
import DeedHasDocumentType from "../Customer/DeedHasDocumentType";
|
||||
export default DeedHasDocumentType;
|
||||
|
23
dist/Notary/DeedHasDocumentType.js
vendored
23
dist/Notary/DeedHasDocumentType.js
vendored
@ -1,13 +1,22 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
||||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
||||
};
|
||||
var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
__exportStar(require("../Customer/DeedHasDocumentType"), exports);
|
||||
const DeedHasDocumentType_1 = __importDefault(require("../Customer/DeedHasDocumentType"));
|
||||
var DeedHasDocumentType;
|
||||
(function (DeedHasDocumentType) {
|
||||
class IDeedHasDocumentType extends DeedHasDocumentType_1.default.IDeedHasDocumentType {
|
||||
}
|
||||
DeedHasDocumentType.IDeedHasDocumentType = IDeedHasDocumentType;
|
||||
})(DeedHasDocumentType || (DeedHasDocumentType = {}));
|
||||
exports.default = DeedHasDocumentType;
|
||||
exports.default = DeedHasDocumentType_1.default;
|
||||
|
7
dist/Notary/DeedType.d.ts
vendored
7
dist/Notary/DeedType.d.ts
vendored
@ -1,6 +1,3 @@
|
||||
import DeedType_ from "../Customer/DeedType";
|
||||
declare namespace DeedType {
|
||||
class IDeedType extends DeedType_.IDeedType {
|
||||
}
|
||||
}
|
||||
export * from "../Customer/DeedType";
|
||||
import DeedType from "../Customer/DeedType";
|
||||
export default DeedType;
|
||||
|
23
dist/Notary/DeedType.js
vendored
23
dist/Notary/DeedType.js
vendored
@ -1,13 +1,22 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
||||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
||||
};
|
||||
var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
__exportStar(require("../Customer/DeedType"), exports);
|
||||
const DeedType_1 = __importDefault(require("../Customer/DeedType"));
|
||||
var DeedType;
|
||||
(function (DeedType) {
|
||||
class IDeedType extends DeedType_1.default.IDeedType {
|
||||
}
|
||||
DeedType.IDeedType = IDeedType;
|
||||
})(DeedType || (DeedType = {}));
|
||||
exports.default = DeedType;
|
||||
exports.default = DeedType_1.default;
|
||||
|
7
dist/Notary/DeedTypeHasDocumentType.d.ts
vendored
7
dist/Notary/DeedTypeHasDocumentType.d.ts
vendored
@ -1,6 +1,3 @@
|
||||
import DeedTypeHasDocumentType_ from "../Customer/DeedTypeHasDocumentType";
|
||||
declare namespace DeedTypeHasDocumentType {
|
||||
class IDeedTypeHasDocumentType extends DeedTypeHasDocumentType_.IDeedTypeHasDocumentType {
|
||||
}
|
||||
}
|
||||
export * from "../Customer/DeedTypeHasDocumentType";
|
||||
import DeedTypeHasDocumentType from "../Customer/DeedTypeHasDocumentType";
|
||||
export default DeedTypeHasDocumentType;
|
||||
|
23
dist/Notary/DeedTypeHasDocumentType.js
vendored
23
dist/Notary/DeedTypeHasDocumentType.js
vendored
@ -1,13 +1,22 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
||||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
||||
};
|
||||
var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
__exportStar(require("../Customer/DeedTypeHasDocumentType"), exports);
|
||||
const DeedTypeHasDocumentType_1 = __importDefault(require("../Customer/DeedTypeHasDocumentType"));
|
||||
var DeedTypeHasDocumentType;
|
||||
(function (DeedTypeHasDocumentType) {
|
||||
class IDeedTypeHasDocumentType extends DeedTypeHasDocumentType_1.default.IDeedTypeHasDocumentType {
|
||||
}
|
||||
DeedTypeHasDocumentType.IDeedTypeHasDocumentType = IDeedTypeHasDocumentType;
|
||||
})(DeedTypeHasDocumentType || (DeedTypeHasDocumentType = {}));
|
||||
exports.default = DeedTypeHasDocumentType;
|
||||
exports.default = DeedTypeHasDocumentType_1.default;
|
||||
|
7
dist/Notary/Document.d.ts
vendored
7
dist/Notary/Document.d.ts
vendored
@ -1,6 +1,3 @@
|
||||
import Document_ from "../Customer/Document";
|
||||
declare namespace Document {
|
||||
class IDocument extends Document_.IDocument {
|
||||
}
|
||||
}
|
||||
export * from "../Customer/Document";
|
||||
import Document from "../Customer/Document";
|
||||
export default Document;
|
||||
|
23
dist/Notary/Document.js
vendored
23
dist/Notary/Document.js
vendored
@ -1,13 +1,22 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
||||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
||||
};
|
||||
var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
__exportStar(require("../Customer/Document"), exports);
|
||||
const Document_1 = __importDefault(require("../Customer/Document"));
|
||||
var Document;
|
||||
(function (Document) {
|
||||
class IDocument extends Document_1.default.IDocument {
|
||||
}
|
||||
Document.IDocument = IDocument;
|
||||
})(Document || (Document = {}));
|
||||
exports.default = Document;
|
||||
exports.default = Document_1.default;
|
||||
|
7
dist/Notary/DocumentHistory.d.ts
vendored
7
dist/Notary/DocumentHistory.d.ts
vendored
@ -1,6 +1,3 @@
|
||||
import DocumentHistory_ from "../Customer/DocumentHistory";
|
||||
declare namespace DocumentHistory {
|
||||
class IDocumentHistory extends DocumentHistory_.IDocumentHistory {
|
||||
}
|
||||
}
|
||||
export * from "../Customer/DocumentHistory";
|
||||
import DocumentHistory from "../Customer/DocumentHistory";
|
||||
export default DocumentHistory;
|
||||
|
23
dist/Notary/DocumentHistory.js
vendored
23
dist/Notary/DocumentHistory.js
vendored
@ -1,13 +1,22 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
||||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
||||
};
|
||||
var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
__exportStar(require("../Customer/DocumentHistory"), exports);
|
||||
const DocumentHistory_1 = __importDefault(require("../Customer/DocumentHistory"));
|
||||
var DocumentHistory;
|
||||
(function (DocumentHistory) {
|
||||
class IDocumentHistory extends DocumentHistory_1.default.IDocumentHistory {
|
||||
}
|
||||
DocumentHistory.IDocumentHistory = IDocumentHistory;
|
||||
})(DocumentHistory || (DocumentHistory = {}));
|
||||
exports.default = DocumentHistory;
|
||||
exports.default = DocumentHistory_1.default;
|
||||
|
7
dist/Notary/DocumentType.d.ts
vendored
7
dist/Notary/DocumentType.d.ts
vendored
@ -1,6 +1,3 @@
|
||||
import DocumentType_ from "../Customer/DocumentType";
|
||||
declare namespace DocumentType {
|
||||
class IDocumentType extends DocumentType_.IDocumentType {
|
||||
}
|
||||
}
|
||||
export * from "../Customer/DocumentType";
|
||||
import DocumentType from "../Customer/DocumentType";
|
||||
export default DocumentType;
|
||||
|
23
dist/Notary/DocumentType.js
vendored
23
dist/Notary/DocumentType.js
vendored
@ -1,13 +1,22 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
||||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
||||
};
|
||||
var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
__exportStar(require("../Customer/DocumentType"), exports);
|
||||
const DocumentType_1 = __importDefault(require("../Customer/DocumentType"));
|
||||
var DocumentType;
|
||||
(function (DocumentType) {
|
||||
class IDocumentType extends DocumentType_1.default.IDocumentType {
|
||||
}
|
||||
DocumentType.IDocumentType = IDocumentType;
|
||||
})(DocumentType || (DocumentType = {}));
|
||||
exports.default = DocumentType;
|
||||
exports.default = DocumentType_1.default;
|
||||
|
7
dist/Notary/File.d.ts
vendored
7
dist/Notary/File.d.ts
vendored
@ -1,6 +1,3 @@
|
||||
import File_ from "../Customer/File";
|
||||
declare namespace File {
|
||||
class IFile extends File_.IFile {
|
||||
}
|
||||
}
|
||||
export * from "../Customer/File";
|
||||
import File from "../Customer/File";
|
||||
export default File;
|
||||
|
23
dist/Notary/File.js
vendored
23
dist/Notary/File.js
vendored
@ -1,13 +1,22 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
||||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
||||
};
|
||||
var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
__exportStar(require("../Customer/File"), exports);
|
||||
const File_1 = __importDefault(require("../Customer/File"));
|
||||
var File;
|
||||
(function (File) {
|
||||
class IFile extends File_1.default.IFile {
|
||||
}
|
||||
File.IFile = IFile;
|
||||
})(File || (File = {}));
|
||||
exports.default = File;
|
||||
exports.default = File_1.default;
|
||||
|
7
dist/Notary/Notification.d.ts
vendored
7
dist/Notary/Notification.d.ts
vendored
@ -1,6 +1,3 @@
|
||||
import Notification_ from "../Customer/Notification";
|
||||
declare namespace Notification {
|
||||
class INotification extends Notification_.INotification {
|
||||
}
|
||||
}
|
||||
export * from "../Customer/Notification";
|
||||
import Notification from "../Customer/Notification";
|
||||
export default Notification;
|
||||
|
23
dist/Notary/Notification.js
vendored
23
dist/Notary/Notification.js
vendored
@ -1,13 +1,22 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
||||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
||||
};
|
||||
var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
__exportStar(require("../Customer/Notification"), exports);
|
||||
const Notification_1 = __importDefault(require("../Customer/Notification"));
|
||||
var Notification;
|
||||
(function (Notification) {
|
||||
class INotification extends Notification_1.default.INotification {
|
||||
}
|
||||
Notification.INotification = INotification;
|
||||
})(Notification || (Notification = {}));
|
||||
exports.default = Notification;
|
||||
exports.default = Notification_1.default;
|
||||
|
7
dist/Notary/Office.d.ts
vendored
7
dist/Notary/Office.d.ts
vendored
@ -1,6 +1,3 @@
|
||||
import Office_ from "../Customer/Office";
|
||||
declare namespace Office {
|
||||
class IOffice extends Office_.IOffice {
|
||||
}
|
||||
}
|
||||
export * from "../Customer/Office";
|
||||
import Office from "../Customer/Office";
|
||||
export default Office;
|
||||
|
23
dist/Notary/Office.js
vendored
23
dist/Notary/Office.js
vendored
@ -1,13 +1,22 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
||||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
||||
};
|
||||
var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
__exportStar(require("../Customer/Office"), exports);
|
||||
const Office_1 = __importDefault(require("../Customer/Office"));
|
||||
var Office;
|
||||
(function (Office) {
|
||||
class IOffice extends Office_1.default.IOffice {
|
||||
}
|
||||
Office.IOffice = IOffice;
|
||||
})(Office || (Office = {}));
|
||||
exports.default = Office;
|
||||
exports.default = Office_1.default;
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user