vector-shared 1.0.65 → 1.0.67

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,11 @@
1
+ declare enum AttributeCategory {
2
+ Main = "main",
3
+ Additional = "additional",
4
+ Adverts = "adverts",
5
+ Documents = "documents",
6
+ Service = "service",
7
+ Secret = "secret",
8
+ Rent = "rent",
9
+ Sell = "sell"
10
+ }
11
+ export { AttributeCategory };
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.AttributeCategory = void 0;
4
+ var AttributeCategory;
5
+ (function (AttributeCategory) {
6
+ AttributeCategory["Main"] = "main";
7
+ AttributeCategory["Additional"] = "additional";
8
+ AttributeCategory["Adverts"] = "adverts";
9
+ AttributeCategory["Documents"] = "documents";
10
+ AttributeCategory["Service"] = "service";
11
+ AttributeCategory["Secret"] = "secret";
12
+ AttributeCategory["Rent"] = "rent";
13
+ AttributeCategory["Sell"] = "sell";
14
+ })(AttributeCategory || (exports.AttributeCategory = AttributeCategory = {}));
15
+ //# sourceMappingURL=attribute-category.enum.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"attribute-category.enum.js","sourceRoot":"","sources":["../../../enums/attributes/attribute-category.enum.ts"],"names":[],"mappings":";;;AAAA,IAAK,iBASJ;AATD,WAAK,iBAAiB;IACpB,kCAAa,CAAA;IACb,8CAAyB,CAAA;IACzB,wCAAmB,CAAA;IACnB,4CAAuB,CAAA;IACvB,wCAAmB,CAAA;IACnB,sCAAiB,CAAA;IACjB,kCAAa,CAAA;IACb,kCAAa,CAAA;AACf,CAAC,EATI,iBAAiB,iCAAjB,iBAAiB,QASrB"}
@@ -0,0 +1,5 @@
1
+ declare enum AttributeDestination {
2
+ Buyer = "buyer",
3
+ Seller = "buyer"
4
+ }
5
+ export { AttributeDestination };
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.AttributeDestination = void 0;
4
+ var AttributeDestination;
5
+ (function (AttributeDestination) {
6
+ AttributeDestination["Buyer"] = "buyer";
7
+ AttributeDestination["Seller"] = "buyer";
8
+ })(AttributeDestination || (exports.AttributeDestination = AttributeDestination = {}));
9
+ //# sourceMappingURL=attribute-destination.enum.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"attribute-destination.enum.js","sourceRoot":"","sources":["../../../enums/attributes/attribute-destination.enum.ts"],"names":[],"mappings":";;;AAAA,IAAK,oBAGJ;AAHD,WAAK,oBAAoB;IACvB,uCAAe,CAAA;IACf,wCAAgB,CAAA;AAClB,CAAC,EAHI,oBAAoB,oCAApB,oBAAoB,QAGxB"}
@@ -1,5 +1,5 @@
1
- declare enum HandlingRecipient {
1
+ declare enum Recipient {
2
2
  Agency = 1,
3
3
  Realtor = 2
4
4
  }
5
- export { HandlingRecipient };
5
+ export { Recipient };
@@ -1,9 +1,9 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.HandlingRecipient = void 0;
4
- var HandlingRecipient;
5
- (function (HandlingRecipient) {
6
- HandlingRecipient[HandlingRecipient["Agency"] = 1] = "Agency";
7
- HandlingRecipient[HandlingRecipient["Realtor"] = 2] = "Realtor";
8
- })(HandlingRecipient || (exports.HandlingRecipient = HandlingRecipient = {}));
3
+ exports.Recipient = void 0;
4
+ var Recipient;
5
+ (function (Recipient) {
6
+ Recipient[Recipient["Agency"] = 1] = "Agency";
7
+ Recipient[Recipient["Realtor"] = 2] = "Realtor";
8
+ })(Recipient || (exports.Recipient = Recipient = {}));
9
9
  //# sourceMappingURL=handling-recipient.enum.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"handling-recipient.enum.js","sourceRoot":"","sources":["../../../enums/handling/handling-recipient.enum.ts"],"names":[],"mappings":";;;AAAA,IAAK,iBAGJ;AAHD,WAAK,iBAAiB;IACpB,6DAAU,CAAA;IACV,+DAAO,CAAA;AACT,CAAC,EAHI,iBAAiB,iCAAjB,iBAAiB,QAGrB"}
1
+ {"version":3,"file":"handling-recipient.enum.js","sourceRoot":"","sources":["../../../enums/handling/handling-recipient.enum.ts"],"names":[],"mappings":";;;AAAA,IAAK,SAGJ;AAHD,WAAK,SAAS;IACZ,6CAAU,CAAA;IACV,+CAAO,CAAA;AACT,CAAC,EAHI,SAAS,yBAAT,SAAS,QAGb"}
@@ -5,12 +5,14 @@ import { Language } from "./language/language.enum";
5
5
  import { PropertyType } from "./property/property-type.enum";
6
6
  import { DirectionEnum } from "./direction/direction-type.enum";
7
7
  import { AttributeType } from "./attributes/attribute-type.enum";
8
+ import { AttributeCategory } from "./attributes/attribute-category.enum";
9
+ import { AttributeDestination } from "./attributes/attribute-destination.enum";
8
10
  import { Male } from "./attributes/male.enum";
9
11
  import { ImageCategory } from "./image/image-category.enum";
10
12
  import { NormCategoriesEnum } from "./norm-categories/norm-categories.enum";
11
13
  import { GeoType } from "./geo/geo-type.enum";
12
14
  import { GeoLevel } from "./geo/geo-level.enum";
13
15
  import { HandlingType } from "./handling/handling-type.enum";
14
- import { HandlingRecipient } from "./handling/handling-recipient.enum";
16
+ import { Recipient } from "./handling/handling-recipient.enum";
15
17
  import { QueryBoolean } from "./common/query.boolean";
16
- export { Role, NodeEnvEnum, Permission, BuyerPermissions, HandlingPermissions, RealEstatePermissions, AnalyticPermission, UserPermissions, GeoPermissions, OrganizationPermissions, ImageCategory, Language, PropertyType, AttributeType, GeoType, GeoLevel, DirectionEnum, NormCategoriesEnum, Male, HandlingRecipient, HandlingType, QueryBoolean, };
18
+ export { Role, NodeEnvEnum, Permission, BuyerPermissions, HandlingPermissions, RealEstatePermissions, AnalyticPermission, UserPermissions, GeoPermissions, OrganizationPermissions, ImageCategory, Language, PropertyType, AttributeType, AttributeCategory, AttributeDestination, GeoType, GeoLevel, DirectionEnum, NormCategoriesEnum, Male, Recipient, HandlingType, QueryBoolean, };
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.QueryBoolean = exports.HandlingType = exports.HandlingRecipient = exports.Male = exports.NormCategoriesEnum = exports.DirectionEnum = exports.GeoLevel = exports.GeoType = exports.AttributeType = exports.PropertyType = exports.Language = exports.ImageCategory = exports.OrganizationPermissions = exports.GeoPermissions = exports.UserPermissions = exports.AnalyticPermission = exports.RealEstatePermissions = exports.HandlingPermissions = exports.BuyerPermissions = exports.Permission = exports.NodeEnvEnum = exports.Role = void 0;
3
+ exports.QueryBoolean = exports.HandlingType = exports.Recipient = exports.Male = exports.NormCategoriesEnum = exports.DirectionEnum = exports.GeoLevel = exports.GeoType = exports.AttributeDestination = exports.AttributeCategory = exports.AttributeType = exports.PropertyType = exports.Language = exports.ImageCategory = exports.OrganizationPermissions = exports.GeoPermissions = exports.UserPermissions = exports.AnalyticPermission = exports.RealEstatePermissions = exports.HandlingPermissions = exports.BuyerPermissions = exports.Permission = exports.NodeEnvEnum = exports.Role = void 0;
4
4
  const role_enum_1 = require("./roles/role.enum");
5
5
  Object.defineProperty(exports, "Role", { enumerable: true, get: function () { return role_enum_1.Role; } });
6
6
  const permission_enum_1 = require("./permissions/permission.enum");
@@ -22,6 +22,10 @@ const direction_type_enum_1 = require("./direction/direction-type.enum");
22
22
  Object.defineProperty(exports, "DirectionEnum", { enumerable: true, get: function () { return direction_type_enum_1.DirectionEnum; } });
23
23
  const attribute_type_enum_1 = require("./attributes/attribute-type.enum");
24
24
  Object.defineProperty(exports, "AttributeType", { enumerable: true, get: function () { return attribute_type_enum_1.AttributeType; } });
25
+ const attribute_category_enum_1 = require("./attributes/attribute-category.enum");
26
+ Object.defineProperty(exports, "AttributeCategory", { enumerable: true, get: function () { return attribute_category_enum_1.AttributeCategory; } });
27
+ const attribute_destination_enum_1 = require("./attributes/attribute-destination.enum");
28
+ Object.defineProperty(exports, "AttributeDestination", { enumerable: true, get: function () { return attribute_destination_enum_1.AttributeDestination; } });
25
29
  const male_enum_1 = require("./attributes/male.enum");
26
30
  Object.defineProperty(exports, "Male", { enumerable: true, get: function () { return male_enum_1.Male; } });
27
31
  const image_category_enum_1 = require("./image/image-category.enum");
@@ -35,7 +39,7 @@ Object.defineProperty(exports, "GeoLevel", { enumerable: true, get: function ()
35
39
  const handling_type_enum_1 = require("./handling/handling-type.enum");
36
40
  Object.defineProperty(exports, "HandlingType", { enumerable: true, get: function () { return handling_type_enum_1.HandlingType; } });
37
41
  const handling_recipient_enum_1 = require("./handling/handling-recipient.enum");
38
- Object.defineProperty(exports, "HandlingRecipient", { enumerable: true, get: function () { return handling_recipient_enum_1.HandlingRecipient; } });
42
+ Object.defineProperty(exports, "Recipient", { enumerable: true, get: function () { return handling_recipient_enum_1.Recipient; } });
39
43
  const query_boolean_1 = require("./common/query.boolean");
40
44
  Object.defineProperty(exports, "QueryBoolean", { enumerable: true, get: function () { return query_boolean_1.QueryBoolean; } });
41
45
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../enums/index.ts"],"names":[],"mappings":";;;AAAA,iDAAyC;AA6BvC,qFA7BO,gBAAI,OA6BP;AA5BN,mEASuC;AAqBrC,2FA7BA,4BAAU,OA6BA;AACV,iGA7BA,kCAAgB,OA6BA;AAChB,oGA7BA,qCAAmB,OA6BA;AACnB,sGA7BA,uCAAqB,OA6BA;AAErB,gGA9BA,iCAAe,OA8BA;AADf,mGA5BA,oCAAkB,OA4BA;AAGlB,wGA9BA,yCAAuB,OA8BA;AADvB,+FA5BA,gCAAc,OA4BA;AA1BhB,4DAAuD;AAmBrD,4FAnBO,2BAAW,OAmBP;AAlBb,4DAAoD;AA4BlD,yFA5BO,wBAAQ,OA4BP;AA3BV,sEAA6D;AA4B3D,6FA5BO,iCAAY,OA4BP;AA3Bd,yEAAgE;AA+B9D,8FA/BO,mCAAa,OA+BP;AA9Bf,0EAAiE;AA2B/D,8FA3BO,mCAAa,OA2BP;AA1Bf,sDAA8C;AA+B5C,qFA/BO,gBAAI,OA+BP;AA9BN,qEAA4D;AAsB1D,8FAtBO,mCAAa,OAsBP;AArBf,iFAA4E;AA4B1E,mGA5BO,yCAAkB,OA4BP;AA1BpB,uDAA8C;AAuB5C,wFAvBO,uBAAO,OAuBP;AAtBT,yDAAgD;AAuB9C,yFAvBO,yBAAQ,OAuBP;AArBV,sEAA6D;AA0B3D,6FA1BO,iCAAY,OA0BP;AAzBd,gFAAuE;AAwBrE,kGAxBO,2CAAiB,OAwBP;AAtBnB,0DAAsD;AAwBpD,6FAxBO,4BAAY,OAwBP"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../enums/index.ts"],"names":[],"mappings":";;;AAAA,iDAAyC;AAiCvC,qFAjCO,gBAAI,OAiCP;AAhCN,mEASuC;AAyBrC,2FAjCA,4BAAU,OAiCA;AACV,iGAjCA,kCAAgB,OAiCA;AAChB,oGAjCA,qCAAmB,OAiCA;AACnB,sGAjCA,uCAAqB,OAiCA;AAErB,gGAlCA,iCAAe,OAkCA;AADf,mGAhCA,oCAAkB,OAgCA;AAGlB,wGAlCA,yCAAuB,OAkCA;AADvB,+FAhCA,gCAAc,OAgCA;AA9BhB,4DAAuD;AAuBrD,4FAvBO,2BAAW,OAuBP;AAtBb,4DAAoD;AAgClD,yFAhCO,wBAAQ,OAgCP;AA/BV,sEAA6D;AAgC3D,6FAhCO,iCAAY,OAgCP;AA/Bd,yEAAgE;AAqC9D,8FArCO,mCAAa,OAqCP;AAnCf,0EAAiE;AA8B/D,8FA9BO,mCAAa,OA8BP;AA7Bf,kFAAyE;AA8BvE,kGA9BO,2CAAiB,OA8BP;AA7BnB,wFAA+E;AA8B7E,qGA9BO,iDAAoB,OA8BP;AA7BtB,sDAA8C;AAkC5C,qFAlCO,gBAAI,OAkCP;AAhCN,qEAA4D;AAsB1D,8FAtBO,mCAAa,OAsBP;AArBf,iFAA4E;AA8B1E,mGA9BO,yCAAkB,OA8BP;AA5BpB,uDAA8C;AAyB5C,wFAzBO,uBAAO,OAyBP;AAxBT,yDAAgD;AAyB9C,yFAzBO,yBAAQ,OAyBP;AAvBV,sEAA6D;AA4B3D,6FA5BO,iCAAY,OA4BP;AA3Bd,gFAA+D;AA0B7D,0FA1BO,mCAAS,OA0BP;AAxBX,0DAAsD;AA0BpD,6FA1BO,4BAAY,OA0BP"}
@@ -1 +1 @@
1
- {"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.dom.iterable.d.ts","../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../node_modules/typescript/lib/lib.scripthost.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.date.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../node_modules/typescript/lib/lib.es2017.full.d.ts","../utils/create-service-action.ts","../utils/index.ts","../enums/roles/role.enum.ts","../enums/permissions/user-permissions.enum.ts","../enums/permissions/real-estate-permissions.enum.ts","../enums/permissions/handling-permissions.enum.ts","../enums/permissions/buyer-permissions.enum.ts","../enums/permissions/analytic-permissions.enum.ts","../enums/permissions/advert-permissions.enum.ts","../enums/permissions/organization-permissions.enum.ts","../enums/permissions/geo-permissions.enum.ts","../enums/permissions/rbac-permissions.enum.ts","../enums/permissions/attribute-permissions.enum.ts","../enums/permissions/permission.enum.ts","../enums/node-env/node-env.enum.ts","../enums/language/language.enum.ts","../enums/property/property-type.enum.ts","../enums/direction/direction-type.enum.ts","../enums/attributes/attribute-type.enum.ts","../enums/attributes/male.enum.ts","../enums/image/image-category.enum.ts","../enums/norm-categories/norm-categories.enum.ts","../enums/geo/geo-type.enum.ts","../enums/geo/geo-level.enum.ts","../enums/handling/handling-type.enum.ts","../enums/handling/handling-recipient.enum.ts","../enums/common/query.boolean.ts","../enums/index.ts","../constants/customer-service.constants.ts","../constants/auth-service.constants.ts","../index.ts"],"fileInfos":[{"version":"2ac9cdcfb8f8875c18d14ec5796a8b029c426f73ad6dc3ffb580c228b58d1c44","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d",{"version":"0075fa5ceda385bcdf3488e37786b5a33be730e8bc4aa3cf1e78c63891752ce8","affectsGlobalScope":true},{"version":"35299ae4a62086698444a5aaee27fc7aa377c68cbb90b441c9ace246ffd05c97","affectsGlobalScope":true},{"version":"c5c5565225fce2ede835725a92a28ece149f83542aa4866cfb10290bff7b8996","affectsGlobalScope":true},{"version":"7d2dbc2a0250400af0809b0ad5f84686e84c73526de931f84560e483eb16b03c","affectsGlobalScope":true},{"version":"f296963760430fb65b4e5d91f0ed770a91c6e77455bacf8fa23a1501654ede0e","affectsGlobalScope":true},{"version":"09226e53d1cfda217317074a97724da3e71e2c545e18774484b61562afc53cd2","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"8b41361862022eb72fcc8a7f34680ac842aca802cf4bc1f915e8c620c9ce4331","affectsGlobalScope":true},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"b8deab98702588840be73d67f02412a2d45a417a3c097b2e96f7f3a42ac483d1","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"376d554d042fb409cb55b5cbaf0b2b4b7e669619493c5d18d5fa8bd67273f82a","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"f35a831e4f0fe3b3697f4a0fe0e3caa7624c92b78afbecaf142c0f93abfaf379","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"994c234848afc14a2586b6565777f4c0b05dc479ede0a041bfd5becf6dceb586",{"version":"97e0c5d4d287c9bef9960fb560a5ad89f7663f2a1aac1c6f611e8c58d7f1b4cc","signature":"e8f446bdad493fba459d7b3e29b7f6085044759b305ef36158b51ca6c2c0f47c"},"e1f4713d7fe6da7ab4b2827780059a799f8f02eea217b1b182662e1d734a70a0",{"version":"2d5c2a5173a92790b30a417e2cc22726b274ef04fb1a56ee0c01641e79f1b262","signature":"db3f4d13fa8401a2ee5561dd074a233020aaa19b10575c3f58523f9751eedc90"},{"version":"26512517d5b0057d3fe864ef50fde502292141c2103544bab83ccbed48e3a862","signature":"dadeb116812702e387f3672ec4f7dadcc1171443e278ad926882d53bd8901482"},{"version":"7de3fa0a64ef01a6240ae49540827c21274f3443ed7fcd2f8c7079d6f8e1529e","signature":"eea3ca4dbcd8e832da2774d3463c37495261f0671870c01895a13dddf498ceba"},{"version":"aa9cb6d10677fa388a8ace5bca3296f9daa5a5ab0b78adaedbf8f9ff76b3ab05","signature":"1cb9f424eea43b1236d910ed619ff5502ccb8d25aed5a578a86f13c5b7a59bb4"},{"version":"30c0fb4d4b0c72572f6751a00d7ed6c8d58e931cd38a679a3c6be9a3ba5d48b4","signature":"abbb4fdd674b3b15eb074d63e5383d71264eaa1033e3bcce6899ee5afa01d6c3"},{"version":"4ec488fe73cb9d91d16c70a31dc853558a00d8cad2a46c8e482430f1473d5f73","signature":"17e4fe9135d12ddc7650abf32f4f61529fcc18c23d227d2be3f33c30d4a60824"},{"version":"73fbbe62b33dc37a8748a5aa05a7e2eef78b6ae5d96ae969315d295b13915e96","signature":"6e6e0f9addbbbf78f901f26b0211400aeb82a5c265f55363f54d5c0426d637b7"},{"version":"64c27b14f8386945b5361a4ff4041d63becdcb021fb06dc0bb8c538eabca9fd8","signature":"6b12c042ab39efdca2cbb7c3662b429e5695307188b1963c77a9ec56c9f05977"},{"version":"a23d91ac9ff2afc81e9051d84bc1916549fa64449d08d6d5f0ccaae3ada5328d","signature":"5d5cc567a6efda64c59d4b1d1859ac9c4b5052a12982956e29d26b9e06c98632"},{"version":"59bcadc95629436f485151ad8ea77e6637eb9c99fca12817f85e1c0326be194b","signature":"1bc69e636ca947101a3d2612bcc355456ac9ff89c8ca5c817db44c2ce390745b"},{"version":"bc38ea04d5a9f3c58456ec0321af80c098fc6a95bdbdcf913c225aafa5c889a3","signature":"72913186c4f738c274888369995d93e83fe435da04d75598e24428a7bc3d48a8"},{"version":"33aaf2d21c1de3625afc84f26611b09456bd804efa531c169158d0f2a5c74073","signature":"ef267fe8aff5b3c15993ec9e1bd1583389dc0fe5ddf8475adfc226a81cdb69a1"},{"version":"a519a21637e38092409e6d639603775b8d85eed42977344d09d2da242715534a","signature":"15f7fa5d950237cdc952ff88c8bc22c4329fc565f1d921e9f35727331195717a"},{"version":"b44704e18452c31674c8ade5b3fe2404a92f747ea09e387b6ffc05ae1ca204c4","signature":"87a502fa91ea9e1db43f9ebed1138245026475ce1478f598c83d3b9083407be5"},{"version":"ab6b64a99581d8759b7474737327b0a57bed2138cf4b0ab70e1e6c3f4c1bbb2c","signature":"d2106616e65980d738e9c0b08b24bc28868c25c62833d7dc5bc89f38d2af15d8"},{"version":"f4d7f27d377848ffeb4f2865cc482d7ac17f695e3f400f6a374e56d6cd772359","signature":"f4948ef3dd9f86c8e20232a79bb48adc0014d57507a29bf25a2c6aed78f46aab"},{"version":"71deb71c856fce3941f121677e8607554428bb68592dbe377d48b5e2dc4bc6ad","signature":"c21041473b2e53e6e0239393378ba84a23b71c069d7738426120a928119e2c33"},{"version":"26c7c43a7b3d06381239a78bb30e902b1c5205349ed81bc9362d9e7e25c8c0c3","signature":"e0e3590b1d6fa7efd36b2829e67cdfa7308e4c51722fae26f72b09898f1bf019"},{"version":"3e288032fac1b51f5dff72f1173475899e61a5952741616d1c44e87fee67c770","signature":"2f161bf27252d9f410c9e90cb1008938710011d2e5e006f2a25ac4aea94014fa"},{"version":"6b49dddb3dbb50913e204a73400ced052237c5ebcfd57ca0631c4ecf7283627e","signature":"ed40334d19f6f0ff106454d01081d1c7e466a066bc69f3fb28e47e2dd7e1f2bd"},{"version":"857cdb15461fed6d990f389695c168e635ba466db9d30754851095e20c441e37","signature":"6f41cbe0de07e804bd99695ed71beffb122aacd7b63f44de3a8a208aef2ca192"},{"version":"deb35531e562d15dcc2d33a74e5e63421002b72e22b265cbfc8bb02d8ac3cb93","signature":"919ed76fb3707f28e5c4972183822c6860ae348ea613f6926d65eb869a3caa8d"},{"version":"f7b4fe19929508de3875fe899c16eea9bd547cde035d5a86e387ee5147d8fbf4","signature":"5465a04ed25e670b044f714c35b2d8dc03596d9a48de56b32a21d37db531d38f"},{"version":"666ab36a99d636ae8fbb955ba584c12776f0b31ba0a25604996517329977dfd6","signature":"89635ef3de4151d58a48d2b574405559939ea78d1a9f715aa89370026778577d"},{"version":"b4d87f1a37c126dabe816b23e2730649e04c6aa2407e2e0ee050a00aeec5b595","signature":"c4ff4eaa9b902514ab97bda2425321b62f2837b343f097cdb9f649081b75abeb"},{"version":"48e2dd442afe24e5d2f537b4597c253e27dd275f4ce66fd6b7dcc9b7758da631","signature":"395932d4a45c32cd4ab1963a1e1069be2959347858e08e45aad1b5dbe236d4bf"},{"version":"49a6ac95db6096428d04bb4c799fba3c6b8e858ad48d70ffeb59c17c6d081d78","signature":"5ca81129fd7028743fe7e0a81a97803cf8cfeac48c2bd988eb8fbcc95f944b79"},{"version":"40b49b45c5499a577dc3db37990e6f2b812fdfa677e0f682491e2b00b3c6a72e","signature":"b5f83844d5ee787f00190126b7d6f91522c93e578c5aad57d35166f87cd0c8ab"},{"version":"3d80ab87bca072baa0a20c86338c48195fab82b384ab39917ac55196480f9276","signature":"3234c66b9163361e48fae948b6580c69aed9947c44d949d8869454e2cacf7058"}],"root":[58],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"emitDecoratorMetadata":true,"experimentalDecorators":true,"module":1,"noFallthroughCasesInSwitch":false,"noImplicitAny":false,"outDir":"./","removeComments":true,"skipLibCheck":true,"sourceMap":true,"strictBindCallApply":false,"strictNullChecks":false,"target":4},"fileIdsList":[[29],[30,41,42,43,44,45,46,47,48,49,50,51,52,53,54],[31,32,33,34,35,36,37,38,39,40],[29,55,56,57],[28],[31,32,33,34,35,36,37,38]],"referencedMap":[[57,1],[56,1],[55,2],[41,3],[58,4],[29,5]],"exportedModulesMap":[[55,2],[41,6],[58,4],[29,5]],"semanticDiagnosticsPerFile":[57,56,46,47,54,45,51,50,53,52,48,55,43,42,49,36,35,40,34,38,33,37,41,39,32,31,44,30,58,25,26,5,6,10,9,2,11,12,13,14,15,16,17,18,3,4,19,27,23,20,21,22,24,1,8,7,28,29]},"version":"5.2.2"}
1
+ {"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.dom.iterable.d.ts","../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../node_modules/typescript/lib/lib.scripthost.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.date.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../node_modules/typescript/lib/lib.es2017.full.d.ts","../utils/create-service-action.ts","../utils/index.ts","../enums/roles/role.enum.ts","../enums/permissions/user-permissions.enum.ts","../enums/permissions/real-estate-permissions.enum.ts","../enums/permissions/handling-permissions.enum.ts","../enums/permissions/buyer-permissions.enum.ts","../enums/permissions/analytic-permissions.enum.ts","../enums/permissions/advert-permissions.enum.ts","../enums/permissions/organization-permissions.enum.ts","../enums/permissions/geo-permissions.enum.ts","../enums/permissions/rbac-permissions.enum.ts","../enums/permissions/attribute-permissions.enum.ts","../enums/permissions/permission.enum.ts","../enums/node-env/node-env.enum.ts","../enums/language/language.enum.ts","../enums/property/property-type.enum.ts","../enums/direction/direction-type.enum.ts","../enums/attributes/attribute-type.enum.ts","../enums/attributes/attribute-category.enum.ts","../enums/attributes/attribute-destination.enum.ts","../enums/attributes/male.enum.ts","../enums/image/image-category.enum.ts","../enums/norm-categories/norm-categories.enum.ts","../enums/geo/geo-type.enum.ts","../enums/geo/geo-level.enum.ts","../enums/handling/handling-type.enum.ts","../enums/handling/handling-recipient.enum.ts","../enums/common/query.boolean.ts","../enums/index.ts","../constants/customer-service.constants.ts","../constants/auth-service.constants.ts","../index.ts"],"fileInfos":[{"version":"2ac9cdcfb8f8875c18d14ec5796a8b029c426f73ad6dc3ffb580c228b58d1c44","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d",{"version":"0075fa5ceda385bcdf3488e37786b5a33be730e8bc4aa3cf1e78c63891752ce8","affectsGlobalScope":true},{"version":"35299ae4a62086698444a5aaee27fc7aa377c68cbb90b441c9ace246ffd05c97","affectsGlobalScope":true},{"version":"c5c5565225fce2ede835725a92a28ece149f83542aa4866cfb10290bff7b8996","affectsGlobalScope":true},{"version":"7d2dbc2a0250400af0809b0ad5f84686e84c73526de931f84560e483eb16b03c","affectsGlobalScope":true},{"version":"f296963760430fb65b4e5d91f0ed770a91c6e77455bacf8fa23a1501654ede0e","affectsGlobalScope":true},{"version":"09226e53d1cfda217317074a97724da3e71e2c545e18774484b61562afc53cd2","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"8b41361862022eb72fcc8a7f34680ac842aca802cf4bc1f915e8c620c9ce4331","affectsGlobalScope":true},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"b8deab98702588840be73d67f02412a2d45a417a3c097b2e96f7f3a42ac483d1","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"376d554d042fb409cb55b5cbaf0b2b4b7e669619493c5d18d5fa8bd67273f82a","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"f35a831e4f0fe3b3697f4a0fe0e3caa7624c92b78afbecaf142c0f93abfaf379","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"994c234848afc14a2586b6565777f4c0b05dc479ede0a041bfd5becf6dceb586",{"version":"97e0c5d4d287c9bef9960fb560a5ad89f7663f2a1aac1c6f611e8c58d7f1b4cc","signature":"e8f446bdad493fba459d7b3e29b7f6085044759b305ef36158b51ca6c2c0f47c"},"e1f4713d7fe6da7ab4b2827780059a799f8f02eea217b1b182662e1d734a70a0",{"version":"2d5c2a5173a92790b30a417e2cc22726b274ef04fb1a56ee0c01641e79f1b262","signature":"db3f4d13fa8401a2ee5561dd074a233020aaa19b10575c3f58523f9751eedc90"},{"version":"26512517d5b0057d3fe864ef50fde502292141c2103544bab83ccbed48e3a862","signature":"dadeb116812702e387f3672ec4f7dadcc1171443e278ad926882d53bd8901482"},{"version":"7de3fa0a64ef01a6240ae49540827c21274f3443ed7fcd2f8c7079d6f8e1529e","signature":"eea3ca4dbcd8e832da2774d3463c37495261f0671870c01895a13dddf498ceba"},{"version":"aa9cb6d10677fa388a8ace5bca3296f9daa5a5ab0b78adaedbf8f9ff76b3ab05","signature":"1cb9f424eea43b1236d910ed619ff5502ccb8d25aed5a578a86f13c5b7a59bb4"},{"version":"30c0fb4d4b0c72572f6751a00d7ed6c8d58e931cd38a679a3c6be9a3ba5d48b4","signature":"abbb4fdd674b3b15eb074d63e5383d71264eaa1033e3bcce6899ee5afa01d6c3"},{"version":"4ec488fe73cb9d91d16c70a31dc853558a00d8cad2a46c8e482430f1473d5f73","signature":"17e4fe9135d12ddc7650abf32f4f61529fcc18c23d227d2be3f33c30d4a60824"},{"version":"73fbbe62b33dc37a8748a5aa05a7e2eef78b6ae5d96ae969315d295b13915e96","signature":"6e6e0f9addbbbf78f901f26b0211400aeb82a5c265f55363f54d5c0426d637b7"},{"version":"64c27b14f8386945b5361a4ff4041d63becdcb021fb06dc0bb8c538eabca9fd8","signature":"6b12c042ab39efdca2cbb7c3662b429e5695307188b1963c77a9ec56c9f05977"},{"version":"a23d91ac9ff2afc81e9051d84bc1916549fa64449d08d6d5f0ccaae3ada5328d","signature":"5d5cc567a6efda64c59d4b1d1859ac9c4b5052a12982956e29d26b9e06c98632"},{"version":"59bcadc95629436f485151ad8ea77e6637eb9c99fca12817f85e1c0326be194b","signature":"1bc69e636ca947101a3d2612bcc355456ac9ff89c8ca5c817db44c2ce390745b"},{"version":"bc38ea04d5a9f3c58456ec0321af80c098fc6a95bdbdcf913c225aafa5c889a3","signature":"72913186c4f738c274888369995d93e83fe435da04d75598e24428a7bc3d48a8"},{"version":"33aaf2d21c1de3625afc84f26611b09456bd804efa531c169158d0f2a5c74073","signature":"ef267fe8aff5b3c15993ec9e1bd1583389dc0fe5ddf8475adfc226a81cdb69a1"},{"version":"a519a21637e38092409e6d639603775b8d85eed42977344d09d2da242715534a","signature":"15f7fa5d950237cdc952ff88c8bc22c4329fc565f1d921e9f35727331195717a"},{"version":"b44704e18452c31674c8ade5b3fe2404a92f747ea09e387b6ffc05ae1ca204c4","signature":"87a502fa91ea9e1db43f9ebed1138245026475ce1478f598c83d3b9083407be5"},{"version":"ab6b64a99581d8759b7474737327b0a57bed2138cf4b0ab70e1e6c3f4c1bbb2c","signature":"d2106616e65980d738e9c0b08b24bc28868c25c62833d7dc5bc89f38d2af15d8"},{"version":"f4d7f27d377848ffeb4f2865cc482d7ac17f695e3f400f6a374e56d6cd772359","signature":"f4948ef3dd9f86c8e20232a79bb48adc0014d57507a29bf25a2c6aed78f46aab"},{"version":"71deb71c856fce3941f121677e8607554428bb68592dbe377d48b5e2dc4bc6ad","signature":"c21041473b2e53e6e0239393378ba84a23b71c069d7738426120a928119e2c33"},{"version":"c3b19267338e41d26cc8e71e2990d90cd527664bd45f0204da8312959aca38a0","signature":"b83bf49c23168d1b238810931577b26f1690fd5186f5e331d1df5a25169c2e2d"},{"version":"f9b97288346fcfa202a160671cc2ef820be6351e974e71e345fdf631d3adc30c","signature":"dc73f1fd8ea34cd3a1dac2e9d56f9847581abe8ec8a58a446c2fa16db096dd36"},{"version":"26c7c43a7b3d06381239a78bb30e902b1c5205349ed81bc9362d9e7e25c8c0c3","signature":"e0e3590b1d6fa7efd36b2829e67cdfa7308e4c51722fae26f72b09898f1bf019"},{"version":"3e288032fac1b51f5dff72f1173475899e61a5952741616d1c44e87fee67c770","signature":"2f161bf27252d9f410c9e90cb1008938710011d2e5e006f2a25ac4aea94014fa"},{"version":"6b49dddb3dbb50913e204a73400ced052237c5ebcfd57ca0631c4ecf7283627e","signature":"ed40334d19f6f0ff106454d01081d1c7e466a066bc69f3fb28e47e2dd7e1f2bd"},{"version":"857cdb15461fed6d990f389695c168e635ba466db9d30754851095e20c441e37","signature":"6f41cbe0de07e804bd99695ed71beffb122aacd7b63f44de3a8a208aef2ca192"},{"version":"deb35531e562d15dcc2d33a74e5e63421002b72e22b265cbfc8bb02d8ac3cb93","signature":"919ed76fb3707f28e5c4972183822c6860ae348ea613f6926d65eb869a3caa8d"},{"version":"f7b4fe19929508de3875fe899c16eea9bd547cde035d5a86e387ee5147d8fbf4","signature":"5465a04ed25e670b044f714c35b2d8dc03596d9a48de56b32a21d37db531d38f"},{"version":"d8a955d4a4d12dbef05a50c434df40986f48cb11d0af556fcaab3882f944efba","signature":"58bcf8086c02d8e20e8644b1e64a1b2c07998186c822343ab6a4c832ef3de4f5"},{"version":"b4d87f1a37c126dabe816b23e2730649e04c6aa2407e2e0ee050a00aeec5b595","signature":"c4ff4eaa9b902514ab97bda2425321b62f2837b343f097cdb9f649081b75abeb"},{"version":"874871d6e94e1aad8cd6ea9279855fd12084382ab5ffae3c3b14b93faeae8f92","signature":"e80e7f1e1b6c6bbe879754a8dccf11c61eebfcb7867a349fa5d3cdb3dbe6fd27"},{"version":"49a6ac95db6096428d04bb4c799fba3c6b8e858ad48d70ffeb59c17c6d081d78","signature":"5ca81129fd7028743fe7e0a81a97803cf8cfeac48c2bd988eb8fbcc95f944b79"},{"version":"40b49b45c5499a577dc3db37990e6f2b812fdfa677e0f682491e2b00b3c6a72e","signature":"b5f83844d5ee787f00190126b7d6f91522c93e578c5aad57d35166f87cd0c8ab"},{"version":"3d80ab87bca072baa0a20c86338c48195fab82b384ab39917ac55196480f9276","signature":"3234c66b9163361e48fae948b6580c69aed9947c44d949d8869454e2cacf7058"}],"root":[60],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"emitDecoratorMetadata":true,"experimentalDecorators":true,"module":1,"noFallthroughCasesInSwitch":false,"noImplicitAny":false,"outDir":"./","removeComments":true,"skipLibCheck":true,"sourceMap":true,"strictBindCallApply":false,"strictNullChecks":false,"target":4},"fileIdsList":[[29],[30,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56],[31,32,33,34,35,36,37,38,39,40],[29,57,58,59],[28],[31,32,33,34,35,36,37,38]],"referencedMap":[[59,1],[58,1],[57,2],[41,3],[60,4],[29,5]],"exportedModulesMap":[[57,2],[41,6],[60,4],[29,5]],"semanticDiagnosticsPerFile":[59,58,47,48,46,49,56,45,53,52,55,54,50,57,43,42,51,36,35,40,34,38,33,37,41,39,32,31,44,30,60,25,26,5,6,10,9,2,11,12,13,14,15,16,17,18,3,4,19,27,23,20,21,22,24,1,8,7,28,29]},"version":"5.2.2"}
@@ -0,0 +1,12 @@
1
+ enum AttributeCategory {
2
+ Main = "main",
3
+ Additional = "additional",
4
+ Adverts = "adverts",
5
+ Documents = "documents",
6
+ Service = "service",
7
+ Secret = "secret",
8
+ Rent = "rent",
9
+ Sell = "sell",
10
+ }
11
+
12
+ export { AttributeCategory };
@@ -0,0 +1,6 @@
1
+ enum AttributeDestination {
2
+ Buyer = "buyer",
3
+ Seller = "buyer",
4
+ }
5
+
6
+ export { AttributeDestination };
@@ -1,6 +1,6 @@
1
- enum HandlingRecipient {
1
+ enum Recipient {
2
2
  Agency = 1,
3
3
  Realtor,
4
4
  }
5
5
 
6
- export { HandlingRecipient };
6
+ export { Recipient };
package/enums/index.ts CHANGED
@@ -13,8 +13,12 @@ import { NodeEnvEnum } from "./node-env/node-env.enum";
13
13
  import { Language } from "./language/language.enum";
14
14
  import { PropertyType } from "./property/property-type.enum";
15
15
  import { DirectionEnum } from "./direction/direction-type.enum";
16
+
16
17
  import { AttributeType } from "./attributes/attribute-type.enum";
18
+ import { AttributeCategory } from "./attributes/attribute-category.enum";
19
+ import { AttributeDestination } from "./attributes/attribute-destination.enum";
17
20
  import { Male } from "./attributes/male.enum";
21
+
18
22
  import { ImageCategory } from "./image/image-category.enum";
19
23
  import { NormCategoriesEnum } from "./norm-categories/norm-categories.enum";
20
24
 
@@ -22,7 +26,7 @@ import { GeoType } from "./geo/geo-type.enum";
22
26
  import { GeoLevel } from "./geo/geo-level.enum";
23
27
 
24
28
  import { HandlingType } from "./handling/handling-type.enum";
25
- import { HandlingRecipient } from "./handling/handling-recipient.enum";
29
+ import { Recipient } from "./handling/handling-recipient.enum";
26
30
 
27
31
  import { QueryBoolean } from "./common/query.boolean";
28
32
 
@@ -41,12 +45,14 @@ export {
41
45
  Language,
42
46
  PropertyType,
43
47
  AttributeType,
48
+ AttributeCategory,
49
+ AttributeDestination,
44
50
  GeoType,
45
51
  GeoLevel,
46
52
  DirectionEnum,
47
53
  NormCategoriesEnum,
48
54
  Male,
49
- HandlingRecipient,
55
+ Recipient,
50
56
  HandlingType,
51
57
  QueryBoolean,
52
58
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vector-shared",
3
- "version": "1.0.65",
3
+ "version": "1.0.67",
4
4
  "description": "Private shared package",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -1,4 +0,0 @@
1
- export declare enum NodeEnvEnum {
2
- Development = "development",
3
- Production = "production"
4
- }
@@ -1,9 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.NodeEnvEnum = void 0;
4
- var NodeEnvEnum;
5
- (function (NodeEnvEnum) {
6
- NodeEnvEnum["Development"] = "development";
7
- NodeEnvEnum["Production"] = "production";
8
- })(NodeEnvEnum || (exports.NodeEnvEnum = NodeEnvEnum = {}));
9
- //# sourceMappingURL=node-env.enum.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"node-env.enum.js","sourceRoot":"","sources":["../../enums/node-env.enum.ts"],"names":[],"mappings":";;;AAAA,IAAY,WAGX;AAHD,WAAY,WAAW;IACrB,0CAA2B,CAAA;IAC3B,wCAAyB,CAAA;AAC3B,CAAC,EAHW,WAAW,2BAAX,WAAW,QAGtB"}
@@ -1,10 +0,0 @@
1
- export declare enum Role {
2
- Admin = "admin",
3
- BIMS = "BIMS",
4
- Accountant = "accountant",
5
- Secretary = "secretary",
6
- Manager = "manager",
7
- Director = "director",
8
- Realtor = "realtor",
9
- Guest = "guest"
10
- }
@@ -1,15 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.Role = void 0;
4
- var Role;
5
- (function (Role) {
6
- Role["Admin"] = "admin";
7
- Role["BIMS"] = "BIMS";
8
- Role["Accountant"] = "accountant";
9
- Role["Secretary"] = "secretary";
10
- Role["Manager"] = "manager";
11
- Role["Director"] = "director";
12
- Role["Realtor"] = "realtor";
13
- Role["Guest"] = "guest";
14
- })(Role || (exports.Role = Role = {}));
15
- //# sourceMappingURL=role.enum.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"role.enum.js","sourceRoot":"","sources":["../../enums/role.enum.ts"],"names":[],"mappings":";;;AAAA,IAAY,IASX;AATD,WAAY,IAAI;IACd,uBAAe,CAAA;IACf,qBAAa,CAAA;IACb,iCAAyB,CAAA;IACzB,+BAAuB,CAAA;IACvB,2BAAmB,CAAA;IACnB,6BAAqB,CAAA;IACrB,2BAAmB,CAAA;IACnB,uBAAe,CAAA;AACjB,CAAC,EATW,IAAI,oBAAJ,IAAI,QASf"}