@hedia/types 2.1.63-alpha.4 → 2.1.63-alpha.5

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.
@@ -2,7 +2,7 @@ import { Languages } from "../../enums";
2
2
  import { IRpcRoute } from "../../types";
3
3
  export declare namespace FoodService {
4
4
  namespace Enums {
5
- enum Timespans {
5
+ enum MealType {
6
6
  Breakfast = "breakfast",
7
7
  Lunch = "lunch",
8
8
  Dinner = "dinner",
@@ -40,7 +40,7 @@ export declare namespace FoodService {
40
40
  interface IFoodFavorites {
41
41
  id: string;
42
42
  foodItemsId: string;
43
- timespan: Date;
43
+ mealType: Enums.MealType;
44
44
  }
45
45
  interface IFoodItems {
46
46
  id: string;
@@ -5,13 +5,13 @@ var FoodService;
5
5
  (function (FoodService) {
6
6
  let Enums;
7
7
  (function (Enums) {
8
- let Timespans;
9
- (function (Timespans) {
10
- Timespans["Breakfast"] = "breakfast";
11
- Timespans["Lunch"] = "lunch";
12
- Timespans["Dinner"] = "dinner";
13
- Timespans["Night"] = "night";
14
- })(Timespans = Enums.Timespans || (Enums.Timespans = {}));
8
+ let MealType;
9
+ (function (MealType) {
10
+ MealType["Breakfast"] = "breakfast";
11
+ MealType["Lunch"] = "lunch";
12
+ MealType["Dinner"] = "dinner";
13
+ MealType["Night"] = "night";
14
+ })(MealType = Enums.MealType || (Enums.MealType = {}));
15
15
  })(Enums = FoodService.Enums || (FoodService.Enums = {}));
16
16
  })(FoodService = exports.FoodService || (exports.FoodService = {}));
17
17
  //# sourceMappingURL=food.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"food.js","sourceRoot":"","sources":["../../../../types/services/rpc/food.ts"],"names":[],"mappings":";;;AAGA,IAAiB,WAAW,CAyE3B;AAzED,WAAiB,WAAW;IAC3B,IAAiB,KAAK,CAOrB;IAPD,WAAiB,KAAK;QACrB,IAAY,SAKX;QALD,WAAY,SAAS;YACpB,oCAAuB,CAAA;YACvB,4BAAe,CAAA;YACf,8BAAiB,CAAA;YACjB,4BAAe,CAAA;QAChB,CAAC,EALW,SAAS,GAAT,eAAS,KAAT,eAAS,QAKpB;IACF,CAAC,EAPgB,KAAK,GAAL,iBAAK,KAAL,iBAAK,QAOrB;AAiEF,CAAC,EAzEgB,WAAW,GAAX,mBAAW,KAAX,mBAAW,QAyE3B"}
1
+ {"version":3,"file":"food.js","sourceRoot":"","sources":["../../../../types/services/rpc/food.ts"],"names":[],"mappings":";;;AAGA,IAAiB,WAAW,CAyE3B;AAzED,WAAiB,WAAW;IAC3B,IAAiB,KAAK,CAOrB;IAPD,WAAiB,KAAK;QACrB,IAAY,QAKX;QALD,WAAY,QAAQ;YACnB,mCAAuB,CAAA;YACvB,2BAAe,CAAA;YACf,6BAAiB,CAAA;YACjB,2BAAe,CAAA;QAChB,CAAC,EALW,QAAQ,GAAR,cAAQ,KAAR,cAAQ,QAKnB;IACF,CAAC,EAPgB,KAAK,GAAL,iBAAK,KAAL,iBAAK,QAOrB;AAiEF,CAAC,EAzEgB,WAAW,GAAX,mBAAW,KAAX,mBAAW,QAyE3B"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hedia/types",
3
- "version": "2.1.63-alpha.4",
3
+ "version": "2.1.63-alpha.5",
4
4
  "description": "Enums, interfaces, and other common types for use in Hedia's software.",
5
5
  "main": "dist/index.js",
6
6
  "repository": {