@vertikalx/vtx-core-common 3.0.0-dev-max.17 → 3.0.0-dev-max.18

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vertikalx/vtx-core-common",
3
- "version": "3.0.0-dev-max.17",
3
+ "version": "3.0.0-dev-max.18",
4
4
  "description": "VertikalX Core Common",
5
5
  "author": "Daniel Castañeda <daniel@kwantec.com>",
6
6
  "license": "SEE LICENSE IN LICENSE.MD",
@@ -0,0 +1,7 @@
1
+ export declare enum ContentType {
2
+ POST = "POST",
3
+ REEL = "REEL",
4
+ LIVE = "LIVE",
5
+ SHORT = "SHORT",
6
+ VIDEO = "VIDEO"
7
+ }
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ContentType = void 0;
4
+ var ContentType;
5
+ (function (ContentType) {
6
+ ContentType["POST"] = "POST";
7
+ ContentType["REEL"] = "REEL";
8
+ ContentType["LIVE"] = "LIVE";
9
+ ContentType["SHORT"] = "SHORT";
10
+ ContentType["VIDEO"] = "VIDEO";
11
+ })(ContentType || (exports.ContentType = ContentType = {}));
12
+ //# sourceMappingURL=ContentType.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ContentType.js","sourceRoot":"","sources":["../../../../../libs/vtx-core-common/src/enums/ContentType.ts"],"names":[],"mappings":";;;AAEA,IAAY,WAMX;AAND,WAAY,WAAW;IACrB,4BAAa,CAAA;IACb,4BAAa,CAAA;IACb,4BAAa,CAAA;IACb,8BAAe,CAAA;IACf,8BAAe,CAAA;AACjB,CAAC,EANW,WAAW,2BAAX,WAAW,QAMtB"}
@@ -0,0 +1,4 @@
1
+ export declare enum EngagementRateSource {
2
+ FOLLOWERS = "FOLLOWERS",
3
+ REACH = "REACH"
4
+ }
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.EngagementRateSource = void 0;
4
+ var EngagementRateSource;
5
+ (function (EngagementRateSource) {
6
+ EngagementRateSource["FOLLOWERS"] = "FOLLOWERS";
7
+ EngagementRateSource["REACH"] = "REACH";
8
+ })(EngagementRateSource || (exports.EngagementRateSource = EngagementRateSource = {}));
9
+ //# sourceMappingURL=EngagementRateSource.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"EngagementRateSource.js","sourceRoot":"","sources":["../../../../../libs/vtx-core-common/src/enums/EngagementRateSource.ts"],"names":[],"mappings":";;;AAEA,IAAY,oBAGX;AAHD,WAAY,oBAAoB;IAC9B,+CAAuB,CAAA;IACvB,uCAAe,CAAA;AACjB,CAAC,EAHW,oBAAoB,oCAApB,oBAAoB,QAG/B"}
@@ -0,0 +1,4 @@
1
+ export declare enum PeriodType {
2
+ DAILY = "DAILY",
3
+ WEEKLY = "WEEKLY"
4
+ }
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.PeriodType = void 0;
4
+ var PeriodType;
5
+ (function (PeriodType) {
6
+ PeriodType["DAILY"] = "DAILY";
7
+ PeriodType["WEEKLY"] = "WEEKLY";
8
+ })(PeriodType || (exports.PeriodType = PeriodType = {}));
9
+ //# sourceMappingURL=PeriodType.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PeriodType.js","sourceRoot":"","sources":["../../../../../libs/vtx-core-common/src/enums/PeriodType.ts"],"names":[],"mappings":";;;AAEA,IAAY,UAGX;AAHD,WAAY,UAAU;IACpB,6BAAe,CAAA;IACf,+BAAiB,CAAA;AACnB,CAAC,EAHW,UAAU,0BAAV,UAAU,QAGrB"}
@@ -0,0 +1,5 @@
1
+ export declare enum Platform {
2
+ INSTAGRAM = "INSTAGRAM",
3
+ TIKTOK = "TIKTOK",
4
+ YOUTUBE = "YOUTUBE"
5
+ }
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.Platform = void 0;
4
+ var Platform;
5
+ (function (Platform) {
6
+ Platform["INSTAGRAM"] = "INSTAGRAM";
7
+ Platform["TIKTOK"] = "TIKTOK";
8
+ Platform["YOUTUBE"] = "YOUTUBE";
9
+ })(Platform || (exports.Platform = Platform = {}));
10
+ //# sourceMappingURL=Platform.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Platform.js","sourceRoot":"","sources":["../../../../../libs/vtx-core-common/src/enums/Platform.ts"],"names":[],"mappings":";;;AAEA,IAAY,QAIX;AAJD,WAAY,QAAQ;IAClB,mCAAuB,CAAA;IACvB,6BAAiB,CAAA;IACjB,+BAAmB,CAAA;AACrB,CAAC,EAJW,QAAQ,wBAAR,QAAQ,QAInB"}
@@ -0,0 +1,6 @@
1
+ export declare enum RefreshStatus {
2
+ SUCCESS = "SUCCESS",
3
+ FAILED = "FAILED",
4
+ RATE_LIMITED = "RATE_LIMITED",
5
+ SKIPPED = "SKIPPED"
6
+ }
@@ -0,0 +1,11 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.RefreshStatus = void 0;
4
+ var RefreshStatus;
5
+ (function (RefreshStatus) {
6
+ RefreshStatus["SUCCESS"] = "SUCCESS";
7
+ RefreshStatus["FAILED"] = "FAILED";
8
+ RefreshStatus["RATE_LIMITED"] = "RATE_LIMITED";
9
+ RefreshStatus["SKIPPED"] = "SKIPPED";
10
+ })(RefreshStatus || (exports.RefreshStatus = RefreshStatus = {}));
11
+ //# sourceMappingURL=RefreshStatus.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RefreshStatus.js","sourceRoot":"","sources":["../../../../../libs/vtx-core-common/src/enums/RefreshStatus.ts"],"names":[],"mappings":";;;AAEA,IAAY,aAKX;AALD,WAAY,aAAa;IACvB,oCAAmB,CAAA;IACnB,kCAAiB,CAAA;IACjB,8CAA6B,CAAA;IAC7B,oCAAmB,CAAA;AACrB,CAAC,EALW,aAAa,6BAAb,aAAa,QAKxB"}
package/src/index.d.ts CHANGED
@@ -51,3 +51,8 @@ export * from './enums/OfferStatus';
51
51
  export * from './enums/OfferClaimStatus';
52
52
  export * from './enums/TimeRange';
53
53
  export * from './enums/ActivityCategory';
54
+ export * from './enums/Platform';
55
+ export * from './enums/ContentType';
56
+ export * from './enums/PeriodType';
57
+ export * from './enums/EngagementRateSource';
58
+ export * from './enums/RefreshStatus';
package/src/index.js CHANGED
@@ -67,4 +67,9 @@ __exportStar(require("./enums/OfferStatus"), exports);
67
67
  __exportStar(require("./enums/OfferClaimStatus"), exports);
68
68
  __exportStar(require("./enums/TimeRange"), exports);
69
69
  __exportStar(require("./enums/ActivityCategory"), exports);
70
+ __exportStar(require("./enums/Platform"), exports);
71
+ __exportStar(require("./enums/ContentType"), exports);
72
+ __exportStar(require("./enums/PeriodType"), exports);
73
+ __exportStar(require("./enums/EngagementRateSource"), exports);
74
+ __exportStar(require("./enums/RefreshStatus"), exports);
70
75
  //# sourceMappingURL=index.js.map
package/src/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../libs/vtx-core-common/src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,8CAA4B;AAC5B,2DAAyC;AACzC,+DAA6C;AAC7C,mEAAiD;AACjD,4DAA0C;AAC1C,8DAA4C;AAC5C,qDAAmC;AACnC,+DAA6C;AAC7C,0DAAwC;AACxC,6DAA2C;AAC3C,sDAAoC;AACpC,gEAA8C;AAC9C,6DAA2C;AAC3C,uDAAqC;AACrC,oDAAkC;AAClC,qDAAmC;AACnC,yDAAuC;AACvC,oDAAkC;AAClC,oEAAkD;AAClD,sDAAoC;AACpC,0DAAwC;AACxC,qDAAmC;AACnC,mDAAiC;AACjC,4DAA0C;AAC1C,gEAA8C;AAC9C,oDAAkC;AAClC,gEAA8C;AAC9C,+DAA6C;AAC7C,yEAAuD;AACvD,gEAA8C;AAC9C,0DAAwC;AACxC,8DAA4C;AAC5C,oDAAkC;AAClC,2DAAyC;AACzC,+DAA6C;AAC7C,4DAA0C;AAC1C,+DAA6C;AAC7C,gEAA8C;AAC9C,0DAAwC;AACxC,4DAA0C;AAC1C,sDAAoC;AACpC,wDAAsC;AACtC,sDAAoC;AACpC,0DAAwC;AACxC,yDAAuC;AACvC,sDAAoC;AACpC,4EAA0D;AAC1D,oDAAkC;AAClC,uDAAqC;AACrC,sDAAoC;AACpC,2DAAyC;AACzC,oDAAkC;AAClC,2DAAyC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../libs/vtx-core-common/src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,8CAA4B;AAC5B,2DAAyC;AACzC,+DAA6C;AAC7C,mEAAiD;AACjD,4DAA0C;AAC1C,8DAA4C;AAC5C,qDAAmC;AACnC,+DAA6C;AAC7C,0DAAwC;AACxC,6DAA2C;AAC3C,sDAAoC;AACpC,gEAA8C;AAC9C,6DAA2C;AAC3C,uDAAqC;AACrC,oDAAkC;AAClC,qDAAmC;AACnC,yDAAuC;AACvC,oDAAkC;AAClC,oEAAkD;AAClD,sDAAoC;AACpC,0DAAwC;AACxC,qDAAmC;AACnC,mDAAiC;AACjC,4DAA0C;AAC1C,gEAA8C;AAC9C,oDAAkC;AAClC,gEAA8C;AAC9C,+DAA6C;AAC7C,yEAAuD;AACvD,gEAA8C;AAC9C,0DAAwC;AACxC,8DAA4C;AAC5C,oDAAkC;AAClC,2DAAyC;AACzC,+DAA6C;AAC7C,4DAA0C;AAC1C,+DAA6C;AAC7C,gEAA8C;AAC9C,0DAAwC;AACxC,4DAA0C;AAC1C,sDAAoC;AACpC,wDAAsC;AACtC,sDAAoC;AACpC,0DAAwC;AACxC,yDAAuC;AACvC,sDAAoC;AACpC,4EAA0D;AAC1D,oDAAkC;AAClC,uDAAqC;AACrC,sDAAoC;AACpC,2DAAyC;AACzC,oDAAkC;AAClC,2DAAyC;AACzC,mDAAiC;AACjC,sDAAoC;AACpC,qDAAmC;AACnC,+DAA6C;AAC7C,wDAAsC"}