@intelact/bright 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (43) hide show
  1. package/LICENSE +24 -0
  2. package/README.md +39 -0
  3. package/lib/enums/account.enum.d.ts +12 -0
  4. package/lib/enums/account.enum.js +18 -0
  5. package/lib/enums/account.enum.js.map +1 -0
  6. package/lib/enums/asset.enum.d.ts +14 -0
  7. package/lib/enums/asset.enum.js +20 -0
  8. package/lib/enums/asset.enum.js.map +1 -0
  9. package/lib/enums/index.d.ts +11 -0
  10. package/lib/enums/index.js +33 -0
  11. package/lib/enums/index.js.map +1 -0
  12. package/lib/enums/module.enum.d.ts +25 -0
  13. package/lib/enums/module.enum.js +31 -0
  14. package/lib/enums/module.enum.js.map +1 -0
  15. package/lib/enums/notification.enum.d.ts +12 -0
  16. package/lib/enums/notification.enum.js +18 -0
  17. package/lib/enums/notification.enum.js.map +1 -0
  18. package/lib/enums/post.enum.d.ts +9 -0
  19. package/lib/enums/post.enum.js +14 -0
  20. package/lib/enums/post.enum.js.map +1 -0
  21. package/lib/enums/setting.enum.d.ts +6 -0
  22. package/lib/enums/setting.enum.js +11 -0
  23. package/lib/enums/setting.enum.js.map +1 -0
  24. package/lib/enums/social.enum.d.ts +13 -0
  25. package/lib/enums/social.enum.js +19 -0
  26. package/lib/enums/social.enum.js.map +1 -0
  27. package/lib/enums/sort.enum.d.ts +8 -0
  28. package/lib/enums/sort.enum.js +13 -0
  29. package/lib/enums/sort.enum.js.map +1 -0
  30. package/lib/enums/status.enum.d.ts +7 -0
  31. package/lib/enums/status.enum.js +12 -0
  32. package/lib/enums/status.enum.js.map +1 -0
  33. package/lib/enums/tracks.enum.d.ts +23 -0
  34. package/lib/enums/tracks.enum.js +30 -0
  35. package/lib/enums/tracks.enum.js.map +1 -0
  36. package/lib/enums/verification.enum.d.ts +5 -0
  37. package/lib/enums/verification.enum.js +10 -0
  38. package/lib/enums/verification.enum.js.map +1 -0
  39. package/lib/index.d.ts +1 -0
  40. package/lib/index.js +18 -0
  41. package/lib/index.js.map +1 -0
  42. package/lib/tsconfig.tsbuildinfo +1 -0
  43. package/package.json +37 -0
package/LICENSE ADDED
@@ -0,0 +1,24 @@
1
+ This is free and unencumbered software released into the public domain.
2
+
3
+ Anyone is free to copy, modify, publish, use, compile, sell, or
4
+ distribute this software, either in source code form or as a compiled
5
+ binary, for any purpose, commercial or non-commercial, and by any
6
+ means.
7
+
8
+ In jurisdictions that recognize copyright laws, the author or authors
9
+ of this software dedicate any and all copyright interest in the
10
+ software to the public domain. We make this dedication for the benefit
11
+ of the public at large and to the detriment of our heirs and
12
+ successors. We intend this dedication to be an overt act of
13
+ relinquishment in perpetuity of all present and future rights to this
14
+ software under copyright law.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
19
+ IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
20
+ OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21
+ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22
+ OTHER DEALINGS IN THE SOFTWARE.
23
+
24
+ For more information, please refer to <https://unlicense.org>
package/README.md ADDED
@@ -0,0 +1,39 @@
1
+ <p align="center">
2
+ <a href="https://oneblog.live/" target="blank"><img src="https://intelact-bright.s3.eu-north-1.amazonaws.com/oneblog/assets/images/logo.png" width="200" /></a>
3
+ </p>
4
+
5
+ ## Description
6
+ This is a private property of the Intelact company and is allowed to be used only within Intelact Solutions products.
7
+
8
+ ## Installation
9
+
10
+ ```bash
11
+ $ npm install
12
+ ```
13
+
14
+ ## Build
15
+
16
+ ```bash
17
+ $ npm run build
18
+ ```
19
+
20
+ ## Publish
21
+
22
+ ```bash
23
+ $ npm login
24
+ $ npm publish
25
+ ```
26
+
27
+ ## Support
28
+
29
+ Any change in the this library should result in a upgrade of the semantic version. The versioning strategy is defined by the CTO.
30
+
31
+ ## Stay in touch
32
+
33
+ - Author - [Admir Serifi](https://twitter.com/admirsherifi)
34
+ - Website - [https://oneblog.live](https://oneblog.live)
35
+ - Owner - [Intelact Solutions Ltd](https://intelact.co)
36
+
37
+ ## License
38
+
39
+ Intelact Bright is prvate common libraray and is no licensed.
@@ -0,0 +1,12 @@
1
+ export declare enum AccountStatusType {
2
+ Invited = "INVITED",
3
+ Active = "ACTIVE",
4
+ Disabled = "DISABLED",
5
+ Blocked = "BLOCKED",
6
+ Closed = "CLOSED"
7
+ }
8
+ export declare enum AccountType {
9
+ Owner = "OWNER",
10
+ Brand = "BRAND",
11
+ Publisher = "PUBLISHER"
12
+ }
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.AccountType = exports.AccountStatusType = void 0;
4
+ var AccountStatusType;
5
+ (function (AccountStatusType) {
6
+ AccountStatusType["Invited"] = "INVITED";
7
+ AccountStatusType["Active"] = "ACTIVE";
8
+ AccountStatusType["Disabled"] = "DISABLED";
9
+ AccountStatusType["Blocked"] = "BLOCKED";
10
+ AccountStatusType["Closed"] = "CLOSED";
11
+ })(AccountStatusType || (exports.AccountStatusType = AccountStatusType = {}));
12
+ var AccountType;
13
+ (function (AccountType) {
14
+ AccountType["Owner"] = "OWNER";
15
+ AccountType["Brand"] = "BRAND";
16
+ AccountType["Publisher"] = "PUBLISHER";
17
+ })(AccountType || (exports.AccountType = AccountType = {}));
18
+ //# sourceMappingURL=account.enum.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"account.enum.js","sourceRoot":"","sources":["../../src/enums/account.enum.ts"],"names":[],"mappings":";;;AAGA,IAAY,iBAyBX;AAzBD,WAAY,iBAAiB;IAI5B,wCAAmB,CAAA;IAKnB,sCAAiB,CAAA;IAKjB,0CAAqB,CAAA;IAKrB,wCAAmB,CAAA;IAKnB,sCAAiB,CAAA;AAClB,CAAC,EAzBW,iBAAiB,iCAAjB,iBAAiB,QAyB5B;AAED,IAAY,WAgBX;AAhBD,WAAY,WAAW;IAKtB,8BAAe,CAAA;IAKf,8BAAe,CAAA;IAKf,sCAAuB,CAAA;AACxB,CAAC,EAhBW,WAAW,2BAAX,WAAW,QAgBtB"}
@@ -0,0 +1,14 @@
1
+ export declare enum AssetType {
2
+ Image = "IMAGE",
3
+ Video = "VIDEO",
4
+ Audio = "AUDIO",
5
+ Doc = "DOC"
6
+ }
7
+ export declare enum AssetCategoryType {
8
+ Download = "DOWNLOAD",
9
+ Cover = "COVER",
10
+ Feed = "FEED",
11
+ Media = "MEDIA",
12
+ Podcast = "PODCAST",
13
+ Embed = "EMBED"
14
+ }
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.AssetCategoryType = exports.AssetType = void 0;
4
+ var AssetType;
5
+ (function (AssetType) {
6
+ AssetType["Image"] = "IMAGE";
7
+ AssetType["Video"] = "VIDEO";
8
+ AssetType["Audio"] = "AUDIO";
9
+ AssetType["Doc"] = "DOC";
10
+ })(AssetType || (exports.AssetType = AssetType = {}));
11
+ var AssetCategoryType;
12
+ (function (AssetCategoryType) {
13
+ AssetCategoryType["Download"] = "DOWNLOAD";
14
+ AssetCategoryType["Cover"] = "COVER";
15
+ AssetCategoryType["Feed"] = "FEED";
16
+ AssetCategoryType["Media"] = "MEDIA";
17
+ AssetCategoryType["Podcast"] = "PODCAST";
18
+ AssetCategoryType["Embed"] = "EMBED";
19
+ })(AssetCategoryType || (exports.AssetCategoryType = AssetCategoryType = {}));
20
+ //# sourceMappingURL=asset.enum.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"asset.enum.js","sourceRoot":"","sources":["../../src/enums/asset.enum.ts"],"names":[],"mappings":";;;AAGA,IAAY,SAqBX;AArBD,WAAY,SAAS;IAKpB,4BAAe,CAAA;IAKf,4BAAe,CAAA;IAKf,4BAAe,CAAA;IAKf,wBAAW,CAAA;AACZ,CAAC,EArBW,SAAS,yBAAT,SAAS,QAqBpB;AAED,IAAY,iBAqCX;AArCD,WAAY,iBAAiB;IAM5B,0CAAqB,CAAA;IAMrB,oCAAe,CAAA;IAMf,kCAAa,CAAA;IAMb,oCAAe,CAAA;IAMf,wCAAmB,CAAA;IAMnB,oCAAe,CAAA;AAChB,CAAC,EArCW,iBAAiB,iCAAjB,iBAAiB,QAqC5B"}
@@ -0,0 +1,11 @@
1
+ export { AccountStatusType, AccountType } from './account.enum';
2
+ export { AssetType, AssetCategoryType } from './asset.enum';
3
+ export { NotificationChannelType, NotificationType } from './notification.enum';
4
+ export { ModuleType, FeatureType } from './module.enum';
5
+ export { PostType } from './post.enum';
6
+ export { SettingType } from './setting.enum';
7
+ export { SortType } from './sort.enum';
8
+ export { SocialLoginType, SocialShareType } from './social.enum';
9
+ export { StatusType } from './status.enum';
10
+ export { ContentActionType, SurveyActionType, AuthActionType } from './tracks.enum';
11
+ export { VerificationType } from './verification.enum';
@@ -0,0 +1,33 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.VerificationType = exports.AuthActionType = exports.SurveyActionType = exports.ContentActionType = exports.StatusType = exports.SocialShareType = exports.SocialLoginType = exports.SortType = exports.SettingType = exports.PostType = exports.FeatureType = exports.ModuleType = exports.NotificationType = exports.NotificationChannelType = exports.AssetCategoryType = exports.AssetType = exports.AccountType = exports.AccountStatusType = void 0;
4
+ var account_enum_1 = require("./account.enum");
5
+ Object.defineProperty(exports, "AccountStatusType", { enumerable: true, get: function () { return account_enum_1.AccountStatusType; } });
6
+ Object.defineProperty(exports, "AccountType", { enumerable: true, get: function () { return account_enum_1.AccountType; } });
7
+ var asset_enum_1 = require("./asset.enum");
8
+ Object.defineProperty(exports, "AssetType", { enumerable: true, get: function () { return asset_enum_1.AssetType; } });
9
+ Object.defineProperty(exports, "AssetCategoryType", { enumerable: true, get: function () { return asset_enum_1.AssetCategoryType; } });
10
+ var notification_enum_1 = require("./notification.enum");
11
+ Object.defineProperty(exports, "NotificationChannelType", { enumerable: true, get: function () { return notification_enum_1.NotificationChannelType; } });
12
+ Object.defineProperty(exports, "NotificationType", { enumerable: true, get: function () { return notification_enum_1.NotificationType; } });
13
+ var module_enum_1 = require("./module.enum");
14
+ Object.defineProperty(exports, "ModuleType", { enumerable: true, get: function () { return module_enum_1.ModuleType; } });
15
+ Object.defineProperty(exports, "FeatureType", { enumerable: true, get: function () { return module_enum_1.FeatureType; } });
16
+ var post_enum_1 = require("./post.enum");
17
+ Object.defineProperty(exports, "PostType", { enumerable: true, get: function () { return post_enum_1.PostType; } });
18
+ var setting_enum_1 = require("./setting.enum");
19
+ Object.defineProperty(exports, "SettingType", { enumerable: true, get: function () { return setting_enum_1.SettingType; } });
20
+ var sort_enum_1 = require("./sort.enum");
21
+ Object.defineProperty(exports, "SortType", { enumerable: true, get: function () { return sort_enum_1.SortType; } });
22
+ var social_enum_1 = require("./social.enum");
23
+ Object.defineProperty(exports, "SocialLoginType", { enumerable: true, get: function () { return social_enum_1.SocialLoginType; } });
24
+ Object.defineProperty(exports, "SocialShareType", { enumerable: true, get: function () { return social_enum_1.SocialShareType; } });
25
+ var status_enum_1 = require("./status.enum");
26
+ Object.defineProperty(exports, "StatusType", { enumerable: true, get: function () { return status_enum_1.StatusType; } });
27
+ var tracks_enum_1 = require("./tracks.enum");
28
+ Object.defineProperty(exports, "ContentActionType", { enumerable: true, get: function () { return tracks_enum_1.ContentActionType; } });
29
+ Object.defineProperty(exports, "SurveyActionType", { enumerable: true, get: function () { return tracks_enum_1.SurveyActionType; } });
30
+ Object.defineProperty(exports, "AuthActionType", { enumerable: true, get: function () { return tracks_enum_1.AuthActionType; } });
31
+ var verification_enum_1 = require("./verification.enum");
32
+ Object.defineProperty(exports, "VerificationType", { enumerable: true, get: function () { return verification_enum_1.VerificationType; } });
33
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/enums/index.ts"],"names":[],"mappings":";;;AAAA,+CAAgE;AAAvD,iHAAA,iBAAiB,OAAA;AAAE,2GAAA,WAAW,OAAA;AACvC,2CAA4D;AAAnD,uGAAA,SAAS,OAAA;AAAE,+GAAA,iBAAiB,OAAA;AACrC,yDAAgF;AAAvE,4HAAA,uBAAuB,OAAA;AAAE,qHAAA,gBAAgB,OAAA;AAClD,6CAAwD;AAA/C,yGAAA,UAAU,OAAA;AAAE,0GAAA,WAAW,OAAA;AAChC,yCAAuC;AAA9B,qGAAA,QAAQ,OAAA;AACjB,+CAA6C;AAApC,2GAAA,WAAW,OAAA;AACpB,yCAAuC;AAA9B,qGAAA,QAAQ,OAAA;AACjB,6CAAiE;AAAxD,8GAAA,eAAe,OAAA;AAAE,8GAAA,eAAe,OAAA;AACzC,6CAA2C;AAAlC,yGAAA,UAAU,OAAA;AACnB,6CAAoF;AAA3E,gHAAA,iBAAiB,OAAA;AAAE,+GAAA,gBAAgB,OAAA;AAAE,6GAAA,cAAc,OAAA;AAC5D,yDAAuD;AAA9C,qHAAA,gBAAgB,OAAA"}
@@ -0,0 +1,25 @@
1
+ export declare enum ModuleType {
2
+ Home = "HOME",
3
+ Browse = "BROWSE",
4
+ Library = "LIBRARY",
5
+ Question = "QUESTION"
6
+ }
7
+ export declare enum FeatureType {
8
+ Dashboard = "dashboard",
9
+ Post = "post",
10
+ Question = "question",
11
+ Collection = "colleaction",
12
+ Author = "author",
13
+ Report = "report",
14
+ Feedback = "feedback",
15
+ Survey = "survey",
16
+ Feed = "feed",
17
+ Publisher = "publisher",
18
+ Promotion = "Promotion",
19
+ Topic = "topic",
20
+ Asset = "asset",
21
+ Team = "team",
22
+ Setting = "setting",
23
+ Profile = "profile",
24
+ Boost = "boost"
25
+ }
@@ -0,0 +1,31 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.FeatureType = exports.ModuleType = void 0;
4
+ var ModuleType;
5
+ (function (ModuleType) {
6
+ ModuleType["Home"] = "HOME";
7
+ ModuleType["Browse"] = "BROWSE";
8
+ ModuleType["Library"] = "LIBRARY";
9
+ ModuleType["Question"] = "QUESTION";
10
+ })(ModuleType || (exports.ModuleType = ModuleType = {}));
11
+ var FeatureType;
12
+ (function (FeatureType) {
13
+ FeatureType["Dashboard"] = "dashboard";
14
+ FeatureType["Post"] = "post";
15
+ FeatureType["Question"] = "question";
16
+ FeatureType["Collection"] = "colleaction";
17
+ FeatureType["Author"] = "author";
18
+ FeatureType["Report"] = "report";
19
+ FeatureType["Feedback"] = "feedback";
20
+ FeatureType["Survey"] = "survey";
21
+ FeatureType["Feed"] = "feed";
22
+ FeatureType["Publisher"] = "publisher";
23
+ FeatureType["Promotion"] = "Promotion";
24
+ FeatureType["Topic"] = "topic";
25
+ FeatureType["Asset"] = "asset";
26
+ FeatureType["Team"] = "team";
27
+ FeatureType["Setting"] = "setting";
28
+ FeatureType["Profile"] = "profile";
29
+ FeatureType["Boost"] = "boost";
30
+ })(FeatureType || (exports.FeatureType = FeatureType = {}));
31
+ //# sourceMappingURL=module.enum.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"module.enum.js","sourceRoot":"","sources":["../../src/enums/module.enum.ts"],"names":[],"mappings":";;;AAGA,IAAY,UAqBX;AArBD,WAAY,UAAU;IAIrB,2BAAa,CAAA;IAKb,+BAAiB,CAAA;IAKjB,iCAAmB,CAAA;IAMnB,mCAAqB,CAAA;AACtB,CAAC,EArBW,UAAU,0BAAV,UAAU,QAqBrB;AAED,IAAY,WAkBX;AAlBD,WAAY,WAAW;IACtB,sCAAuB,CAAA;IACvB,4BAAa,CAAA;IACb,oCAAqB,CAAA;IACrB,yCAA0B,CAAA;IAC1B,gCAAiB,CAAA;IACjB,gCAAiB,CAAA;IACjB,oCAAqB,CAAA;IACrB,gCAAiB,CAAA;IACjB,4BAAa,CAAA;IACb,sCAAuB,CAAA;IACvB,sCAAuB,CAAA;IACvB,8BAAe,CAAA;IACf,8BAAe,CAAA;IACf,4BAAa,CAAA;IACb,kCAAmB,CAAA;IACnB,kCAAmB,CAAA;IACnB,8BAAe,CAAA;AAChB,CAAC,EAlBW,WAAW,2BAAX,WAAW,QAkBtB"}
@@ -0,0 +1,12 @@
1
+ export declare enum NotificationType {
2
+ Info = "INFO",
3
+ Success = "SUCCESS",
4
+ Warning = "WARNING",
5
+ Error = "ERROR"
6
+ }
7
+ export declare enum NotificationChannelType {
8
+ Push = "PUSH",
9
+ SMS = "SMS",
10
+ InApp = "INAPP",
11
+ Email = "EMAIL"
12
+ }
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.NotificationChannelType = exports.NotificationType = void 0;
4
+ var NotificationType;
5
+ (function (NotificationType) {
6
+ NotificationType["Info"] = "INFO";
7
+ NotificationType["Success"] = "SUCCESS";
8
+ NotificationType["Warning"] = "WARNING";
9
+ NotificationType["Error"] = "ERROR";
10
+ })(NotificationType || (exports.NotificationType = NotificationType = {}));
11
+ var NotificationChannelType;
12
+ (function (NotificationChannelType) {
13
+ NotificationChannelType["Push"] = "PUSH";
14
+ NotificationChannelType["SMS"] = "SMS";
15
+ NotificationChannelType["InApp"] = "INAPP";
16
+ NotificationChannelType["Email"] = "EMAIL";
17
+ })(NotificationChannelType || (exports.NotificationChannelType = NotificationChannelType = {}));
18
+ //# sourceMappingURL=notification.enum.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"notification.enum.js","sourceRoot":"","sources":["../../src/enums/notification.enum.ts"],"names":[],"mappings":";;;AAKA,IAAY,gBAqBX;AArBD,WAAY,gBAAgB;IAK3B,iCAAa,CAAA;IAKb,uCAAmB,CAAA;IAKnB,uCAAmB,CAAA;IAKnB,mCAAe,CAAA;AAChB,CAAC,EArBW,gBAAgB,gCAAhB,gBAAgB,QAqB3B;AAOD,IAAY,uBAqBX;AArBD,WAAY,uBAAuB;IAKlC,wCAAa,CAAA;IAKb,sCAAW,CAAA;IAKX,0CAAe,CAAA;IAKf,0CAAe,CAAA;AAChB,CAAC,EArBW,uBAAuB,uCAAvB,uBAAuB,QAqBlC"}
@@ -0,0 +1,9 @@
1
+ export declare enum PostType {
2
+ Article = "ARTICLE",
3
+ Book = "BOOK",
4
+ Video = "VIDEO",
5
+ Audio = "AUDIO",
6
+ Event = "EVENT",
7
+ News = "NEWS",
8
+ Quote = "QUOTE"
9
+ }
@@ -0,0 +1,14 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.PostType = void 0;
4
+ var PostType;
5
+ (function (PostType) {
6
+ PostType["Article"] = "ARTICLE";
7
+ PostType["Book"] = "BOOK";
8
+ PostType["Video"] = "VIDEO";
9
+ PostType["Audio"] = "AUDIO";
10
+ PostType["Event"] = "EVENT";
11
+ PostType["News"] = "NEWS";
12
+ PostType["Quote"] = "QUOTE";
13
+ })(PostType || (exports.PostType = PostType = {}));
14
+ //# sourceMappingURL=post.enum.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"post.enum.js","sourceRoot":"","sources":["../../src/enums/post.enum.ts"],"names":[],"mappings":";;;AAGA,IAAY,QAoCX;AApCD,WAAY,QAAQ;IAKnB,+BAAmB,CAAA;IAKnB,yBAAa,CAAA;IAKb,2BAAe,CAAA;IAKf,2BAAe,CAAA;IAKf,2BAAe,CAAA;IAKf,yBAAa,CAAA;IAKb,2BAAe,CAAA;AAChB,CAAC,EApCW,QAAQ,wBAAR,QAAQ,QAoCnB"}
@@ -0,0 +1,6 @@
1
+ export declare enum SettingType {
2
+ Config = "CONFIG",
3
+ Legal = "LEGAL",
4
+ Social = "SOCIAL",
5
+ Other = "OTHER"
6
+ }
@@ -0,0 +1,11 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.SettingType = void 0;
4
+ var SettingType;
5
+ (function (SettingType) {
6
+ SettingType["Config"] = "CONFIG";
7
+ SettingType["Legal"] = "LEGAL";
8
+ SettingType["Social"] = "SOCIAL";
9
+ SettingType["Other"] = "OTHER";
10
+ })(SettingType || (exports.SettingType = SettingType = {}));
11
+ //# sourceMappingURL=setting.enum.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"setting.enum.js","sourceRoot":"","sources":["../../src/enums/setting.enum.ts"],"names":[],"mappings":";;;AAGA,IAAY,WAqBX;AArBD,WAAY,WAAW;IAKtB,gCAAiB,CAAA;IAKjB,8BAAe,CAAA;IAKf,gCAAiB,CAAA;IAKjB,8BAAe,CAAA;AAChB,CAAC,EArBW,WAAW,2BAAX,WAAW,QAqBtB"}
@@ -0,0 +1,13 @@
1
+ export declare enum SocialLoginType {
2
+ Google = "GOOGLE",
3
+ Twitter = "TWITTER",
4
+ Facebook = "FACEBOOK",
5
+ Linkedin = "LINKEDIN",
6
+ Apple = "APPLE"
7
+ }
8
+ export declare enum SocialShareType {
9
+ Twitter = "TWITTER",
10
+ Facebook = "FACEBOOK",
11
+ Linkedin = "LINKEDIN",
12
+ Whatsup = "WHATSAPP"
13
+ }
@@ -0,0 +1,19 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.SocialShareType = exports.SocialLoginType = void 0;
4
+ var SocialLoginType;
5
+ (function (SocialLoginType) {
6
+ SocialLoginType["Google"] = "GOOGLE";
7
+ SocialLoginType["Twitter"] = "TWITTER";
8
+ SocialLoginType["Facebook"] = "FACEBOOK";
9
+ SocialLoginType["Linkedin"] = "LINKEDIN";
10
+ SocialLoginType["Apple"] = "APPLE";
11
+ })(SocialLoginType || (exports.SocialLoginType = SocialLoginType = {}));
12
+ var SocialShareType;
13
+ (function (SocialShareType) {
14
+ SocialShareType["Twitter"] = "TWITTER";
15
+ SocialShareType["Facebook"] = "FACEBOOK";
16
+ SocialShareType["Linkedin"] = "LINKEDIN";
17
+ SocialShareType["Whatsup"] = "WHATSAPP";
18
+ })(SocialShareType || (exports.SocialShareType = SocialShareType = {}));
19
+ //# sourceMappingURL=social.enum.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"social.enum.js","sourceRoot":"","sources":["../../src/enums/social.enum.ts"],"names":[],"mappings":";;;AAGA,IAAY,eA0BX;AA1BD,WAAY,eAAe;IAK1B,oCAAiB,CAAA;IAKjB,sCAAmB,CAAA;IAKnB,wCAAqB,CAAA;IAKrB,wCAAqB,CAAA;IAKrB,kCAAe,CAAA;AAChB,CAAC,EA1BW,eAAe,+BAAf,eAAe,QA0B1B;AAKD,IAAY,eAqBX;AArBD,WAAY,eAAe;IAK1B,sCAAmB,CAAA;IAKnB,wCAAqB,CAAA;IAKrB,wCAAqB,CAAA;IAKrB,uCAAoB,CAAA;AACrB,CAAC,EArBW,eAAe,+BAAf,eAAe,QAqB1B"}
@@ -0,0 +1,8 @@
1
+ export declare enum SortType {
2
+ Newest = "newest",
3
+ Relevant = "relevant",
4
+ Popular = "popular",
5
+ Liked = "liked",
6
+ Downloaded = "downloaded",
7
+ Oldest = "oldest"
8
+ }
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.SortType = void 0;
4
+ var SortType;
5
+ (function (SortType) {
6
+ SortType["Newest"] = "newest";
7
+ SortType["Relevant"] = "relevant";
8
+ SortType["Popular"] = "popular";
9
+ SortType["Liked"] = "liked";
10
+ SortType["Downloaded"] = "downloaded";
11
+ SortType["Oldest"] = "oldest";
12
+ })(SortType || (exports.SortType = SortType = {}));
13
+ //# sourceMappingURL=sort.enum.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"sort.enum.js","sourceRoot":"","sources":["../../src/enums/sort.enum.ts"],"names":[],"mappings":";;;AAIA,IAAY,QA8BX;AA9BD,WAAY,QAAQ;IAInB,6BAAiB,CAAA;IAKjB,iCAAqB,CAAA;IAKrB,+BAAmB,CAAA;IAKnB,2BAAe,CAAA;IAKf,qCAAyB,CAAA;IAKzB,6BAAiB,CAAA;AAClB,CAAC,EA9BW,QAAQ,wBAAR,QAAQ,QA8BnB"}
@@ -0,0 +1,7 @@
1
+ export declare enum StatusType {
2
+ Draft = "DRAFT",
3
+ ReadyForPublish = "READY",
4
+ Published = "PUBLISHED",
5
+ Archived = "ARCHIVED",
6
+ Blocked = "BLOCKED"
7
+ }
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.StatusType = void 0;
4
+ var StatusType;
5
+ (function (StatusType) {
6
+ StatusType["Draft"] = "DRAFT";
7
+ StatusType["ReadyForPublish"] = "READY";
8
+ StatusType["Published"] = "PUBLISHED";
9
+ StatusType["Archived"] = "ARCHIVED";
10
+ StatusType["Blocked"] = "BLOCKED";
11
+ })(StatusType || (exports.StatusType = StatusType = {}));
12
+ //# sourceMappingURL=status.enum.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"status.enum.js","sourceRoot":"","sources":["../../src/enums/status.enum.ts"],"names":[],"mappings":";;;AAGA,IAAY,UA4BX;AA5BD,WAAY,UAAU;IAKrB,6BAAe,CAAA;IAKf,uCAAyB,CAAA;IAMzB,qCAAuB,CAAA;IAMvB,mCAAqB,CAAA;IAKrB,iCAAmB,CAAA;AACpB,CAAC,EA5BW,UAAU,0BAAV,UAAU,QA4BrB"}
@@ -0,0 +1,23 @@
1
+ export declare enum ContentActionType {
2
+ Seen = "SEEN",
3
+ Open = "OPEN",
4
+ Like = "LIKE",
5
+ Bookmark = "BOOKMARK",
6
+ Share = "SHARE",
7
+ Download = "DOWNLOAD",
8
+ Feedback = "FEEDBACK"
9
+ }
10
+ export declare enum SurveyActionType {
11
+ Start = "START",
12
+ Completed = "COMPLETED",
13
+ Reject = "REJECT"
14
+ }
15
+ export declare enum AuthActionType {
16
+ Signin = "SIGNIN",
17
+ Signup = "SIGNUP",
18
+ Signout = "SIGNOUT",
19
+ Anonymous = "ANONYMOUS",
20
+ Takeovered = "TAKEOVERED",
21
+ Deleted = "DELETED",
22
+ Suspended = "SUSPENDED"
23
+ }
@@ -0,0 +1,30 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.AuthActionType = exports.SurveyActionType = exports.ContentActionType = void 0;
4
+ var ContentActionType;
5
+ (function (ContentActionType) {
6
+ ContentActionType["Seen"] = "SEEN";
7
+ ContentActionType["Open"] = "OPEN";
8
+ ContentActionType["Like"] = "LIKE";
9
+ ContentActionType["Bookmark"] = "BOOKMARK";
10
+ ContentActionType["Share"] = "SHARE";
11
+ ContentActionType["Download"] = "DOWNLOAD";
12
+ ContentActionType["Feedback"] = "FEEDBACK";
13
+ })(ContentActionType || (exports.ContentActionType = ContentActionType = {}));
14
+ var SurveyActionType;
15
+ (function (SurveyActionType) {
16
+ SurveyActionType["Start"] = "START";
17
+ SurveyActionType["Completed"] = "COMPLETED";
18
+ SurveyActionType["Reject"] = "REJECT";
19
+ })(SurveyActionType || (exports.SurveyActionType = SurveyActionType = {}));
20
+ var AuthActionType;
21
+ (function (AuthActionType) {
22
+ AuthActionType["Signin"] = "SIGNIN";
23
+ AuthActionType["Signup"] = "SIGNUP";
24
+ AuthActionType["Signout"] = "SIGNOUT";
25
+ AuthActionType["Anonymous"] = "ANONYMOUS";
26
+ AuthActionType["Takeovered"] = "TAKEOVERED";
27
+ AuthActionType["Deleted"] = "DELETED";
28
+ AuthActionType["Suspended"] = "SUSPENDED";
29
+ })(AuthActionType || (exports.AuthActionType = AuthActionType = {}));
30
+ //# sourceMappingURL=tracks.enum.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"tracks.enum.js","sourceRoot":"","sources":["../../src/enums/tracks.enum.ts"],"names":[],"mappings":";;;AAGA,IAAY,iBA6BX;AA7BD,WAAY,iBAAiB;IAI5B,kCAAa,CAAA;IAIb,kCAAa,CAAA;IAIb,kCAAa,CAAA;IAIb,0CAAqB,CAAA;IAIrB,oCAAe,CAAA;IAIf,0CAAqB,CAAA;IAIrB,0CAAqB,CAAA;AACtB,CAAC,EA7BW,iBAAiB,iCAAjB,iBAAiB,QA6B5B;AAKD,IAAY,gBAeX;AAfD,WAAY,gBAAgB;IAI3B,mCAAe,CAAA;IAKf,2CAAuB,CAAA;IAKvB,qCAAiB,CAAA;AAClB,CAAC,EAfW,gBAAgB,gCAAhB,gBAAgB,QAe3B;AAED,IAAY,cAmCX;AAnCD,WAAY,cAAc;IAIzB,mCAAiB,CAAA;IAKjB,mCAAiB,CAAA;IAKjB,qCAAmB,CAAA;IAKnB,yCAAuB,CAAA;IAKvB,2CAAyB,CAAA;IAKzB,qCAAmB,CAAA;IAKnB,yCAAuB,CAAA;AACxB,CAAC,EAnCW,cAAc,8BAAd,cAAc,QAmCzB"}
@@ -0,0 +1,5 @@
1
+ export declare enum VerificationType {
2
+ Ownership = "OWNERSHIP",
3
+ Email = "EMAIL",
4
+ Phone = "PHONE"
5
+ }
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.VerificationType = void 0;
4
+ var VerificationType;
5
+ (function (VerificationType) {
6
+ VerificationType["Ownership"] = "OWNERSHIP";
7
+ VerificationType["Email"] = "EMAIL";
8
+ VerificationType["Phone"] = "PHONE";
9
+ })(VerificationType || (exports.VerificationType = VerificationType = {}));
10
+ //# sourceMappingURL=verification.enum.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"verification.enum.js","sourceRoot":"","sources":["../../src/enums/verification.enum.ts"],"names":[],"mappings":";;;AAGA,IAAY,gBAgBX;AAhBD,WAAY,gBAAgB;IAK3B,2CAAuB,CAAA;IAKvB,mCAAe,CAAA;IAKf,mCAAe,CAAA;AAChB,CAAC,EAhBW,gBAAgB,gCAAhB,gBAAgB,QAgB3B"}
package/lib/index.d.ts ADDED
@@ -0,0 +1 @@
1
+ export * from './enums';
package/lib/index.js ADDED
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./enums"), exports);
18
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,0CAAwB"}
@@ -0,0 +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.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.es2021.d.ts","../node_modules/typescript/lib/lib.es2022.d.ts","../node_modules/typescript/lib/lib.es2023.d.ts","../node_modules/typescript/lib/lib.esnext.d.ts","../node_modules/typescript/lib/lib.dom.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.es2016.intl.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.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/typescript/lib/lib.es2021.intl.d.ts","../node_modules/typescript/lib/lib.es2022.array.d.ts","../node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/typescript/lib/lib.es2022.intl.d.ts","../node_modules/typescript/lib/lib.es2022.object.d.ts","../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2022.string.d.ts","../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../node_modules/typescript/lib/lib.es2023.array.d.ts","../node_modules/typescript/lib/lib.es2023.collection.d.ts","../node_modules/typescript/lib/lib.esnext.collection.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../node_modules/typescript/lib/lib.esnext.promise.d.ts","../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../node_modules/typescript/lib/lib.esnext.object.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../src/enums/account.enum.ts","../src/enums/asset.enum.ts","../src/enums/notification.enum.ts","../src/enums/module.enum.ts","../src/enums/post.enum.ts","../src/enums/setting.enum.ts","../src/enums/sort.enum.ts","../src/enums/social.enum.ts","../src/enums/status.enum.ts","../src/enums/tracks.enum.ts","../src/enums/verification.enum.ts","../src/enums/index.ts","../src/index.ts"],"fileInfos":[{"version":"824cb491a40f7e8fdeb56f1df5edf91b23f3e3ee6b4cde84d4a99be32338faee","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","1c0cdb8dc619bc549c3e5020643e7cf7ae7940058e8c7e5aefa5871b6d86f44b","886e50ef125efb7878f744e86908884c0133e7a6d9d80013f421b0cd8fb2af94",{"version":"87d693a4920d794a73384b3c779cadcb8548ac6945aa7a925832fe2418c9527a","affectsGlobalScope":true},{"version":"138fb588d26538783b78d1e3b2c2cc12d55840b97bf5e08bca7f7a174fbe2f17","affectsGlobalScope":true},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true},{"version":"b20fe0eca9a4e405f1a5ae24a2b3290b37cf7f21eba6cbe4fc3fab979237d4f3","affectsGlobalScope":true},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"49ed889be54031e1044af0ad2c603d627b8bda8b50c1a68435fe85583901d072","affectsGlobalScope":true},{"version":"e93d098658ce4f0c8a0779e6cab91d0259efb88a318137f686ad76f8410ca270","affectsGlobalScope":true},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"5e07ed3809d48205d5b985642a59f2eba47c402374a7cf8006b686f79efadcbd","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"8073890e29d2f46fdbc19b8d6d2eb9ea58db9a2052f8640af20baff9afbc8640","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"51e547984877a62227042850456de71a5c45e7fe86b7c975c6e68896c86fa23b","affectsGlobalScope":true},{"version":"956d27abdea9652e8368ce029bb1e0b9174e9678a273529f426df4b3d90abd60","affectsGlobalScope":true},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true},{"version":"d8670852241d4c6e03f2b89d67497a4bbefe29ecaa5a444e2c11a9b05e6fccc6","affectsGlobalScope":true},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true},{"version":"08a58483392df5fcc1db57d782e87734f77ae9eab42516028acbfe46f29a3ef7","affectsGlobalScope":true},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","affectsGlobalScope":true},{"version":"13f6e6380c78e15e140243dc4be2fa546c287c6d61f4729bc2dd7cf449605471","affectsGlobalScope":true},{"version":"15b98a533864d324e5f57cd3cfc0579b231df58c1c0f6063ea0fcb13c3c74ff9","affectsGlobalScope":true},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},{"version":"fb02a609aa8fa79f21a89466daa9d5ed00a18392bb6ba1d7c2153ad6fec26590","signature":"fc5eba98804bf5f9da653059068838d6e82645ed73de7d4232f5c5e85b22bca0"},{"version":"ee7847eafdb326dca8286c9a09683417edef231da9355aa960fb4e9ea6739c57","signature":"5f555d0f04a98661202485b19b3d3b929f20b99330282faf54ae13620db79f3b"},{"version":"d0dd53639c8a944356189474635df7db89f49fced4608751002beef2bf7841e0","signature":"5ccd5ab99835d3570f330bc85c854c59cd8cfce2dfe047b00efae1f9256ed80b"},{"version":"8b3626b18447ece8974f9e591a9cb0ad8e327898e76d657878971d776494d391","signature":"d9e8cf4f82bdd8eb087cb57ae70a60887b9837c744e10b3c58eeed6ee84ed069"},{"version":"1d5ea3ac3b39afdc2780c8510b1b9a7d419456a24663e89613ce48415fc405fd","signature":"c100c54e3896057f767717cac8bc3b5dd70cce5083d1f31bf52405c57ed93cdc"},{"version":"b8acbc2e6b52adeaf1b9a63c58ca56cb3a9c0bc8aeb8d8fa18f505ed97003cfa","signature":"fdc998b813f118044d3dd6f723d8e1475da52201161f9080533312d0740d49db"},{"version":"2c14fadad696fb30af83fe460d0704b09e353548820a6333da5a69e95c939bc7","signature":"29151465cfe168f64cd7fbb53f11e8fd4948c38588cbdd4de954ef24a4915e7d"},{"version":"76544cd01c35ae635107a5da44f5ab089e3f901d12266732b2142e4e6564c07e","signature":"e52c64de384c495cd4b3320fd644b4aa1aab51708e9b8d4fb07dca75d63b0e5b"},{"version":"e53acba5c94a2a7265e2fc091327543fb898be4a30ed0e43d74163a7d5fbb0ee","signature":"f04650859602c94295cc3d2797fff3cd6e9e5b72543f0f30a5c1df61a00e5258"},{"version":"90abb825d46c39c92574d2e496aa748a52e824725e4f3df9d428c64086c33b00","signature":"44494ed2bfd489722b6272b0e2d8640b5ddb6a7b8ce05fe140f2d9ebc9029db4"},{"version":"415417d5b1548811e5be01c596e754fb24c16e6791ca1fbbe0374b7cf537e57c","signature":"14ad6ca7b3fa9d126f7d964278cf69f9030a7dbba4c486adf53442f477dfcff9"},{"version":"419366607b4383079bc06784f8475c8387e6804638d5a6f3218225e99ac7b0f8","signature":"f20908bbe45f749d1477cb154fd50161b915591d1f66edbd94ff60bb43e19cd3"},{"version":"80a3c717add0fc393d4878a3c026c482ae8a2271c22e78900c2c2e0204329c52","signature":"433a429dfb7deb4b784299c30dbf42c64088f6a002b4fff8bf4c4fe1286aab88"}],"root":[[69,81]],"options":{"allowJs":true,"allowSyntheticDefaultImports":true,"declaration":true,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"importHelpers":false,"inlineSourceMap":false,"module":1,"noFallthroughCasesInSwitch":false,"noImplicitAny":false,"outDir":"./","removeComments":true,"skipLibCheck":true,"sourceMap":true,"strictBindCallApply":false,"strictNullChecks":false,"target":99},"fileIdsList":[[69,70,71,72,73,74,75,76,77,78,79],[80]],"referencedMap":[[80,1],[81,2]],"exportedModulesMap":[[80,1],[81,2]],"semanticDiagnosticsPerFile":[67,68,12,14,13,2,15,16,17,18,19,20,21,22,3,23,4,24,28,25,26,27,29,30,31,5,32,33,34,35,6,39,36,37,38,40,7,41,46,47,42,43,44,45,8,51,48,49,50,52,9,53,54,55,58,56,57,59,60,10,1,61,11,65,63,62,66,64,69,70,80,72,71,73,74,76,75,77,78,79,81]},"version":"5.4.3"}
package/package.json ADDED
@@ -0,0 +1,37 @@
1
+ {
2
+ "name": "@intelact/bright",
3
+ "version": "0.1.0",
4
+ "description": "Bright common library",
5
+ "author": "Intelact Solutions Ltd.",
6
+ "main": "lib/index.js",
7
+ "module": "lib/index.js",
8
+ "typings": "lib/index.d.ts",
9
+ "exports": {
10
+ ".": "./lib/index.js",
11
+ "./enums": "./lib/enums/index.js"
12
+ },
13
+ "scripts": {
14
+ "build": "tsc"
15
+ },
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "https://github.com/Intelact-Solutions/bright-common.git"
19
+ },
20
+ "files": ["lib/**/*"],
21
+ "engines": {
22
+ "node": ">=18"
23
+ },
24
+ "dependencies": {
25
+ "class-validator": "^0.14.1",
26
+ "nestjs-seeder": "^0.3.2",
27
+ "typeorm": "^0.3.20"
28
+ },
29
+ "peerDependencies": {
30
+ "class-validator": "^0.14.1",
31
+ "nestjs-seeder": "^0.3.2",
32
+ "typeorm": "^0.3.20"
33
+ },
34
+ "devDependencies": {
35
+ "typescript": "^5.4.3"
36
+ }
37
+ }