@duvdu-v1/duvdu 1.1.46 → 1.1.48

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.
package/build/index.d.ts CHANGED
@@ -46,6 +46,7 @@ export * from './types/folders';
46
46
  export * from './types/pagination-response';
47
47
  export * from './types/portfolio-post-order';
48
48
  export * from './types/cycles';
49
+ export * from './types/booking-states';
49
50
  export * from './models/Bookmark.model';
50
51
  export * from './models/Plan.model';
51
52
  export * from './models/Role.model';
package/build/index.js CHANGED
@@ -62,6 +62,7 @@ __exportStar(require("./types/folders"), exports);
62
62
  __exportStar(require("./types/pagination-response"), exports);
63
63
  __exportStar(require("./types/portfolio-post-order"), exports);
64
64
  __exportStar(require("./types/cycles"), exports);
65
+ __exportStar(require("./types/booking-states"), exports);
65
66
  __exportStar(require("./models/Bookmark.model"), exports);
66
67
  __exportStar(require("./models/Plan.model"), exports);
67
68
  __exportStar(require("./models/Role.model"), exports);
@@ -34,6 +34,7 @@ export interface IstudioBooking {
34
34
  studioEmail: string;
35
35
  desc: string;
36
36
  equipments: {
37
+ id: string;
37
38
  name: string;
38
39
  fees: number;
39
40
  }[];
@@ -68,7 +68,7 @@ exports.studioBooking = (0, mongoose_1.model)(model_names_1.MODELS.studioBooking
68
68
  tags: [{ ar: { type: String, default: null }, en: { type: String, default: null } }],
69
69
  subCategory: {
70
70
  ar: String,
71
- en: String
71
+ en: String,
72
72
  },
73
73
  }, {
74
74
  timestamps: true,
@@ -0,0 +1,7 @@
1
+ export declare enum BookingState {
2
+ canceled = "canceled",
3
+ pending = "pending",
4
+ ongoing = "ongoing",
5
+ completed = "completed",
6
+ rejected = "rejected"
7
+ }
@@ -0,0 +1,11 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.BookingState = void 0;
4
+ var BookingState;
5
+ (function (BookingState) {
6
+ BookingState["canceled"] = "canceled";
7
+ BookingState["pending"] = "pending";
8
+ BookingState["ongoing"] = "ongoing";
9
+ BookingState["completed"] = "completed";
10
+ BookingState["rejected"] = "rejected";
11
+ })(BookingState || (exports.BookingState = BookingState = {}));
@@ -8,12 +8,15 @@ export declare enum MODELS {
8
8
  term = "terms",
9
9
  ticket = "tickets",
10
10
  portfolioPost = "portfolio-post",
11
+ portfolioPostBooking = "portfolio-post-booking",
11
12
  studioBooking = "studio-booking",
13
+ studioBookingBook = "studio-booking-book",
12
14
  report = "report",
13
15
  copyrights = "copyrights",
14
16
  copyrightsBooking = "copyrights-booking",
15
17
  projects = "allProjects",
16
18
  messages = "messages",
17
19
  notifications = "notifications",
18
- teamProject = "teamProjects"
20
+ teamProject = "teamProjects",
21
+ teamProjectBooking = "teamProjects-booking"
19
22
  }
@@ -12,7 +12,9 @@ var MODELS;
12
12
  MODELS["term"] = "terms";
13
13
  MODELS["ticket"] = "tickets";
14
14
  MODELS["portfolioPost"] = "portfolio-post";
15
+ MODELS["portfolioPostBooking"] = "portfolio-post-booking";
15
16
  MODELS["studioBooking"] = "studio-booking";
17
+ MODELS["studioBookingBook"] = "studio-booking-book";
16
18
  MODELS["report"] = "report";
17
19
  MODELS["copyrights"] = "copyrights";
18
20
  MODELS["copyrightsBooking"] = "copyrights-booking";
@@ -20,4 +22,5 @@ var MODELS;
20
22
  MODELS["messages"] = "messages";
21
23
  MODELS["notifications"] = "notifications";
22
24
  MODELS["teamProject"] = "teamProjects";
25
+ MODELS["teamProjectBooking"] = "teamProjects-booking";
23
26
  })(MODELS || (exports.MODELS = MODELS = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@duvdu-v1/duvdu",
3
- "version": "1.1.46",
3
+ "version": "1.1.48",
4
4
  "main": "./build/index.js",
5
5
  "types": "./build/index.d.ts",
6
6
  "files": [