heartraite 1.0.102 → 1.0.104
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,3 +1,3 @@
|
|
|
1
|
-
import { PersonalityTrait, SACategoryID } from "
|
|
1
|
+
import { PersonalityTrait, SACategoryID } from "../enum";
|
|
2
2
|
export declare const SA_TRIAL_CATEGORIES: SACategoryID[];
|
|
3
|
-
export declare const
|
|
3
|
+
export declare const SA_TRIAL_SECTIONS: PersonalityTrait[];
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
const enum_1 = require("
|
|
3
|
+
exports.SA_TRIAL_SECTIONS = exports.SA_TRIAL_CATEGORIES = void 0;
|
|
4
|
+
const enum_1 = require("../enum");
|
|
5
5
|
exports.SA_TRIAL_CATEGORIES = [enum_1.SACategoryID.PERSONALITY];
|
|
6
|
-
exports.
|
|
6
|
+
exports.SA_TRIAL_SECTIONS = [
|
|
7
7
|
enum_1.PersonalityTrait.OPENNESS,
|
|
8
8
|
enum_1.PersonalityTrait.CONSCIENTIOUSNESS,
|
|
9
9
|
];
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { PersonalityTrait, SACategoryID } from "
|
|
1
|
+
import { PersonalityTrait, SACategoryID } from "../enum";
|
|
2
2
|
|
|
3
3
|
export const SA_TRIAL_CATEGORIES = [SACategoryID.PERSONALITY];
|
|
4
4
|
|
|
5
|
-
export const
|
|
5
|
+
export const SA_TRIAL_SECTIONS = [
|
|
6
6
|
PersonalityTrait.OPENNESS,
|
|
7
7
|
PersonalityTrait.CONSCIENTIOUSNESS,
|
|
8
8
|
];
|