@nimee/shared-types 1.0.45 → 1.0.47

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 @@
1
+ export * from "./utm";
@@ -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("./utm"), exports);
18
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/analytics/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,wCAAsB"}
@@ -0,0 +1,5 @@
1
+ export declare enum UTMActionTypeEnum {
2
+ UNIQUE_VIEWS = "UNIQUE_VIEWS",
3
+ VIEWS = "VIEWS",
4
+ CLICKS = "CLICKS"
5
+ }
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.UTMActionTypeEnum = void 0;
4
+ var UTMActionTypeEnum;
5
+ (function (UTMActionTypeEnum) {
6
+ UTMActionTypeEnum["UNIQUE_VIEWS"] = "UNIQUE_VIEWS";
7
+ UTMActionTypeEnum["VIEWS"] = "VIEWS";
8
+ UTMActionTypeEnum["CLICKS"] = "CLICKS";
9
+ })(UTMActionTypeEnum = exports.UTMActionTypeEnum || (exports.UTMActionTypeEnum = {}));
10
+ //# sourceMappingURL=utm.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"utm.js","sourceRoot":"","sources":["../../src/analytics/utm.ts"],"names":[],"mappings":";;;AAAA,IAAY,iBAIX;AAJD,WAAY,iBAAiB;IAC3B,kDAA6B,CAAA;IAC7B,oCAAe,CAAA;IACf,sCAAiB,CAAA;AACnB,CAAC,EAJW,iBAAiB,GAAjB,yBAAiB,KAAjB,yBAAiB,QAI5B"}
package/dist/index.d.ts CHANGED
@@ -3,3 +3,4 @@ export * from "./userEvent";
3
3
  export * from "./event";
4
4
  export * from "./payment";
5
5
  export * from "./send-notification";
6
+ export * from "./analytics";
package/dist/index.js CHANGED
@@ -20,4 +20,5 @@ __exportStar(require("./userEvent"), exports);
20
20
  __exportStar(require("./event"), exports);
21
21
  __exportStar(require("./payment"), exports);
22
22
  __exportStar(require("./send-notification"), exports);
23
+ __exportStar(require("./analytics"), exports);
23
24
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,2BAA2B;AAC3B,4CAA0B;AAC1B,8CAA4B;AAC5B,0CAAwB;AACxB,4CAA0B;AAC1B,sDAAoC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,2BAA2B;AAC3B,4CAA0B;AAC1B,8CAA4B;AAC5B,0CAAwB;AACxB,4CAA0B;AAC1B,sDAAoC;AACpC,8CAA4B"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nimee/shared-types",
3
- "version": "1.0.45",
3
+ "version": "1.0.47",
4
4
  "description": "Types and interfaces that any service can access if needed",
5
5
  "main": "dist/index.js",
6
6
  "author": "dan goldberg",
@@ -13,7 +13,7 @@
13
13
  "prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
14
14
  "incVersionAndPublish": "npm version patch && npm run publish-it && npm run i-all-workspaces",
15
15
  "publish-it": "npm run build && npm publish --scope=nimee --access public",
16
- "i-all-workspaces": "version=${npm_package_version} npm i @nimee/shared-types@$version --workspace=@nimee/event --workspace=@nimee/user-event --workspace=@nimee/send-notification --workspace=@nimee/user --workspace=@nimee/payment"
16
+ "i-all-workspaces": "version=${npm_package_version} npm i @nimee/api-clients@$version --workspace=@nimee/event --workspace=@nimee/user-event --workspace=@nimee/send-notification --workspace=@nimee/user --workspace=@nimee/payment --workspace=@nimee/analytics"
17
17
  },
18
18
  "devDependencies": {
19
19
  "@typescript-eslint/eslint-plugin": "^5.18.0",
@@ -0,0 +1 @@
1
+ export * from "./utm";
@@ -0,0 +1,5 @@
1
+ export enum UTMActionTypeEnum {
2
+ UNIQUE_VIEWS = "UNIQUE_VIEWS",
3
+ VIEWS = "VIEWS",
4
+ CLICKS = "CLICKS",
5
+ }
package/src/index.ts CHANGED
@@ -4,3 +4,4 @@ export * from "./userEvent";
4
4
  export * from "./event";
5
5
  export * from "./payment";
6
6
  export * from "./send-notification";
7
+ export * from "./analytics";