@brighterly/lib-core-types 0.16.1 → 0.17.1

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.
@@ -10,5 +10,6 @@ export declare enum ExperimentsCode {
10
10
  Exp105 = "exp-105_new-activation-flow",
11
11
  Exp106 = "exp-106_no-1m-sub-on-pad",
12
12
  Exp86 = "exp-86_lesson-info-and-duration",
13
- Exp108 = "exp-108_student-app-link"
13
+ Exp108 = "exp-108_student-app-link",
14
+ Exp109 = "exp-109_premium-tutor-compliance"
14
15
  }
@@ -12,4 +12,5 @@ export var ExperimentsCode;
12
12
  ExperimentsCode["Exp106"] = "exp-106_no-1m-sub-on-pad";
13
13
  ExperimentsCode["Exp86"] = "exp-86_lesson-info-and-duration";
14
14
  ExperimentsCode["Exp108"] = "exp-108_student-app-link";
15
+ ExperimentsCode["Exp109"] = "exp-109_premium-tutor-compliance";
15
16
  })(ExperimentsCode || (ExperimentsCode = {}));
@@ -13,4 +13,5 @@ export interface Experiments {
13
13
  [ExperimentsCode.Exp106]: ExperimentValue;
14
14
  [ExperimentsCode.Exp86]: ExperimentValue;
15
15
  [ExperimentsCode.Exp108]: ExperimentValue;
16
+ [ExperimentsCode.Exp109]: ExperimentValue;
16
17
  }
@@ -41,6 +41,7 @@ export interface Order {
41
41
  price_per_lesson: number;
42
42
  disciplines?: DisciplineInfo[];
43
43
  zip_code: string | null;
44
+ parent_order?: Order | null;
44
45
  }
45
46
  export interface Lessons {
46
47
  math: number;
@@ -59,7 +59,8 @@ export declare enum CancelReason {
59
59
  Other = "OTHER",
60
60
  PreferInPersonTutor = "PREFER_IN_PERSON_TUTOR",
61
61
  TooExpensive = "TOO_EXPENSIVE",
62
- TryDifferentTutor = "TRY_DIFFERENT_TUTOR"
62
+ TryDifferentTutor = "TRY_DIFFERENT_TUTOR",
63
+ NoReason = "NO_REASON"
63
64
  }
64
65
  export declare enum CancelSubReason {
65
66
  Cancel = "CANCEL",
@@ -69,6 +69,7 @@ export var CancelReason;
69
69
  CancelReason["PreferInPersonTutor"] = "PREFER_IN_PERSON_TUTOR";
70
70
  CancelReason["TooExpensive"] = "TOO_EXPENSIVE";
71
71
  CancelReason["TryDifferentTutor"] = "TRY_DIFFERENT_TUTOR";
72
+ CancelReason["NoReason"] = "NO_REASON";
72
73
  })(CancelReason || (CancelReason = {}));
73
74
  export var CancelSubReason;
74
75
  (function (CancelSubReason) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brighterly/lib-core-types",
3
- "version": "0.16.1",
3
+ "version": "0.17.1",
4
4
  "description": "Official Brighterly lib-core-types",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",