heartraite 1.0.100 → 1.0.102

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.
@@ -1,2 +1,3 @@
1
1
  export * from "./user.constants";
2
2
  export * from "./matchmaking.constants";
3
+ export * from "./sa.constants";
@@ -16,3 +16,4 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./user.constants"), exports);
18
18
  __exportStar(require("./matchmaking.constants"), exports);
19
+ __exportStar(require("./sa.constants"), exports);
@@ -0,0 +1,3 @@
1
+ import { PersonalityTrait, SACategoryID } from "src/enum";
2
+ export declare const SA_TRIAL_CATEGORIES: SACategoryID[];
3
+ export declare const SA_TRIAL_PERSONALITY_SECTIONS: PersonalityTrait[];
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.SA_TRIAL_PERSONALITY_SECTIONS = exports.SA_TRIAL_CATEGORIES = void 0;
4
+ const enum_1 = require("src/enum");
5
+ exports.SA_TRIAL_CATEGORIES = [enum_1.SACategoryID.PERSONALITY];
6
+ exports.SA_TRIAL_PERSONALITY_SECTIONS = [
7
+ enum_1.PersonalityTrait.OPENNESS,
8
+ enum_1.PersonalityTrait.CONSCIENTIOUSNESS,
9
+ ];
@@ -8,8 +8,7 @@ export declare enum CAStatus {
8
8
  NOT_STARTED = "not_started",
9
9
  IN_PROGRESS = "in_progress",
10
10
  ERROR = "error",
11
- SUCCESS = "success",
12
- DISABLED = "disabled"
11
+ SUCCESS = "success"
13
12
  }
14
13
  export declare enum PersonalityTrait {
15
14
  OPENNESS = "openness",
@@ -14,7 +14,6 @@ var CAStatus;
14
14
  CAStatus["IN_PROGRESS"] = "in_progress";
15
15
  CAStatus["ERROR"] = "error";
16
16
  CAStatus["SUCCESS"] = "success";
17
- CAStatus["DISABLED"] = "disabled";
18
17
  })(CAStatus || (exports.CAStatus = CAStatus = {}));
19
18
  var PersonalityTrait;
20
19
  (function (PersonalityTrait) {
@@ -15,3 +15,4 @@ export * from "./state.enum";
15
15
  export * from "./matchmaking.enum";
16
16
  export * from "./notification.enum";
17
17
  export * from "./user.enum";
18
+ export * from "./sa.enum";
@@ -31,3 +31,4 @@ __exportStar(require("./state.enum"), exports);
31
31
  __exportStar(require("./matchmaking.enum"), exports);
32
32
  __exportStar(require("./notification.enum"), exports);
33
33
  __exportStar(require("./user.enum"), exports);
34
+ __exportStar(require("./sa.enum"), exports);
@@ -0,0 +1,7 @@
1
+ export declare enum SACategoryID {
2
+ PERSONALITY = "self_awareness_personality",
3
+ FAMILY = "self_awareness_family",
4
+ LIFESTYLE = "self_awareness_lifestyle",
5
+ LOVE_LANGUAGE = "self_awareness_love_language",
6
+ VALUES = "self_awareness_values"
7
+ }
@@ -0,0 +1,11 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.SACategoryID = void 0;
4
+ var SACategoryID;
5
+ (function (SACategoryID) {
6
+ SACategoryID["PERSONALITY"] = "self_awareness_personality";
7
+ SACategoryID["FAMILY"] = "self_awareness_family";
8
+ SACategoryID["LIFESTYLE"] = "self_awareness_lifestyle";
9
+ SACategoryID["LOVE_LANGUAGE"] = "self_awareness_love_language";
10
+ SACategoryID["VALUES"] = "self_awareness_values";
11
+ })(SACategoryID || (exports.SACategoryID = SACategoryID = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "heartraite",
3
- "version": "1.0.100",
3
+ "version": "1.0.102",
4
4
  "description": "Heartraite npm package for common functionality",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -1,2 +1,3 @@
1
1
  export * from "./user.constants";
2
2
  export * from "./matchmaking.constants";
3
+ export * from "./sa.constants";
@@ -0,0 +1,8 @@
1
+ import { PersonalityTrait, SACategoryID } from "src/enum";
2
+
3
+ export const SA_TRIAL_CATEGORIES = [SACategoryID.PERSONALITY];
4
+
5
+ export const SA_TRIAL_PERSONALITY_SECTIONS = [
6
+ PersonalityTrait.OPENNESS,
7
+ PersonalityTrait.CONSCIENTIOUSNESS,
8
+ ];
@@ -10,7 +10,6 @@ export enum CAStatus {
10
10
  IN_PROGRESS = "in_progress",
11
11
  ERROR = "error",
12
12
  SUCCESS = "success",
13
- DISABLED = "disabled",
14
13
  }
15
14
 
16
15
  export enum PersonalityTrait {
package/src/enum/index.ts CHANGED
@@ -15,3 +15,4 @@ export * from "./state.enum";
15
15
  export * from "./matchmaking.enum";
16
16
  export * from "./notification.enum";
17
17
  export * from "./user.enum";
18
+ export * from "./sa.enum";
@@ -0,0 +1,7 @@
1
+ export enum SACategoryID {
2
+ PERSONALITY = "self_awareness_personality",
3
+ FAMILY = "self_awareness_family",
4
+ LIFESTYLE = "self_awareness_lifestyle",
5
+ LOVE_LANGUAGE = "self_awareness_love_language",
6
+ VALUES = "self_awareness_values",
7
+ }