scheduler-node-models 1.2.140 → 1.2.142

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "scheduler-node-models",
3
- "version": "1.2.140",
3
+ "version": "1.2.142",
4
4
  "main": "index.js",
5
5
  "types": "index.d.ts",
6
6
  "files": [
@@ -16,16 +16,19 @@
16
16
  "description": "",
17
17
  "devDependencies": {
18
18
  "@types/adm-zip": "^0.5.7",
19
- "@types/bcrypt": "^6.0.0",
20
- "@types/exceljs": "^0.5.3",
19
+ "@types/express": "^5.0.6",
20
+ "@types/multer": "^2.0.0",
21
21
  "@types/nodemailer": "^7.0.0",
22
22
  "typescript": "^5.9.2"
23
23
  },
24
24
  "dependencies": {
25
25
  "adm-zip": "^0.5.16",
26
- "bcrypt": "^6.0.0",
26
+ "bcrypt-ts": "^7.1.0",
27
27
  "exceljs": "^4.4.0",
28
- "mongodb": "^6.18.0",
28
+ "express": "^5.2.1",
29
+ "mariadb": "^3.4.5",
30
+ "mongodb": "^7.1.0",
31
+ "multer": "^2.0.2",
29
32
  "nodemailer": "^7.0.5"
30
33
  }
31
34
  }
@@ -0,0 +1,7 @@
1
+ import { InitialResponse } from "../scheduler/web";
2
+ export declare class BuildInitial {
3
+ private employeeID;
4
+ private initialData;
5
+ constructor(empID?: string);
6
+ build(): Promise<InitialResponse>;
7
+ }
@@ -0,0 +1,189 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.BuildInitial = void 0;
4
+ const config_1 = require("../config");
5
+ const mongodb_1 = require("mongodb");
6
+ const employees_1 = require("../scheduler/employees");
7
+ const users_1 = require("../users");
8
+ const teams_1 = require("../scheduler/teams");
9
+ const sites_1 = require("../scheduler/sites");
10
+ class BuildInitial {
11
+ employeeID;
12
+ initialData;
13
+ constructor(empID) {
14
+ this.employeeID = (empID) ? empID : '';
15
+ this.initialData = {};
16
+ }
17
+ async build() {
18
+ let conn;
19
+ try {
20
+ if (this.employeeID === '') {
21
+ throw new Error("Employee not assigned");
22
+ }
23
+ if (config_1.collections.employees) {
24
+ const query = { _id: new mongodb_1.ObjectId(this.employeeID) };
25
+ const iEmp = await config_1.collections.employees.findOne(query);
26
+ if (iEmp) {
27
+ this.initialData.employee = new employees_1.Employee(iEmp);
28
+ if (config_1.collections.users) {
29
+ const iUser = await config_1.collections.users.findOne(query);
30
+ if (iUser) {
31
+ this.initialData.employee.user = new users_1.User(iUser);
32
+ }
33
+ else {
34
+ throw new Error('User not found');
35
+ }
36
+ }
37
+ else {
38
+ throw new Error('User collection unavailable');
39
+ }
40
+ }
41
+ else {
42
+ throw new Error('Employee not found');
43
+ }
44
+ }
45
+ else {
46
+ throw new Error('Employee collection unavailable');
47
+ }
48
+ const now = new Date();
49
+ const start = new Date(Date.UTC(now.getFullYear() - 1, 0, 1));
50
+ const end = new Date(Date.UTC(now.getFullYear() + 1, 0, 1));
51
+ if (this.initialData.employee) {
52
+ if (config_1.collections.teams) {
53
+ const query = { _id: new mongodb_1.ObjectId(this.initialData.employee.team) };
54
+ const iTeam = await config_1.collections.teams.findOne(query);
55
+ if (iTeam) {
56
+ this.initialData.team = new teams_1.Team(iTeam);
57
+ const employeeIDList = [];
58
+ const empTeamQuery = { team: new mongodb_1.ObjectId(this.initialData.employee.team) };
59
+ if (config_1.collections.employees) {
60
+ const empCursor = config_1.collections.employees.find(empTeamQuery);
61
+ const empArray = await empCursor.toArray();
62
+ const empPromises = empArray.map(async (iEmp) => {
63
+ const emp = new employees_1.Employee(iEmp);
64
+ if (emp.isActiveBetween(start, end)) {
65
+ this.initialData.team?.sites.forEach((site, s) => {
66
+ if (site.id.toLowerCase() === emp.site.toLowerCase()) {
67
+ if (!site.employees) {
68
+ site.employees = [];
69
+ }
70
+ if (site.employees) {
71
+ site.employees.push(new employees_1.Employee(emp));
72
+ }
73
+ if (this.initialData.team) {
74
+ this.initialData.team.sites[s] = site;
75
+ }
76
+ }
77
+ });
78
+ employeeIDList.push(emp.id);
79
+ }
80
+ });
81
+ await Promise.allSettled(empPromises);
82
+ }
83
+ if (employeeIDList.length > 0) {
84
+ if (config_1.mdbConnection.pool) {
85
+ conn = await config_1.mdbConnection.pool.getConnection();
86
+ const sql = 'SELECT * FROM employeeWork WHERE employeeID IN (?) and '
87
+ + "dateworked >= ? and dateworked < ? ORDER BY employeeID, dateworked, "
88
+ + "chargenumber, extension, paycode;";
89
+ const listVals = [employeeIDList, start, end];
90
+ const results = await conn.query(sql, listVals);
91
+ const workPromises = results.map(async (row) => {
92
+ if (this.initialData.team) {
93
+ let found = false;
94
+ this.initialData.team.sites.forEach((site, s) => {
95
+ if (!found) {
96
+ if (site.employees) {
97
+ site.employees.forEach((emp, e) => {
98
+ if (!found) {
99
+ if (emp.id && emp.id === row.employeeID) {
100
+ found = true;
101
+ if (!emp.work) {
102
+ emp.work = [];
103
+ }
104
+ if (emp.work) {
105
+ emp.work.push(new employees_1.Work({
106
+ dateworked: new Date(row.dateworked),
107
+ chargenumber: row.chargenumber,
108
+ extension: row.extension,
109
+ paycode: Number(row.paycode),
110
+ modtime: (row.modtime === '1' || row.modtime === 1),
111
+ hours: Number(row.hours)
112
+ }));
113
+ }
114
+ if (site.employees) {
115
+ site.employees[e] = emp;
116
+ }
117
+ }
118
+ }
119
+ });
120
+ if (found && this.initialData.team) {
121
+ this.initialData.team.sites[s] = site;
122
+ }
123
+ }
124
+ }
125
+ });
126
+ }
127
+ });
128
+ await Promise.allSettled(workPromises);
129
+ }
130
+ }
131
+ }
132
+ else {
133
+ throw new Error('Employee Team not found');
134
+ }
135
+ }
136
+ else {
137
+ throw new Error('Team collection unavailable');
138
+ }
139
+ }
140
+ else {
141
+ throw new Error('No initial employee to pull team');
142
+ }
143
+ if (this.initialData.team) {
144
+ let found = false;
145
+ this.initialData.team.sites.forEach(site => {
146
+ if (!found && this.initialData.employee) {
147
+ const tUser = new users_1.User(this.initialData.employee.user);
148
+ if (site.id.toLowerCase() === this.initialData.employee?.site.toLowerCase()) {
149
+ this.initialData.site = new sites_1.Site(site);
150
+ if (site.employees) {
151
+ site.employees.forEach(emp => {
152
+ if (!found && this.initialData.employee
153
+ && emp.id === this.initialData.employee.id) {
154
+ this.initialData.employee = new employees_1.Employee(emp);
155
+ this.initialData.employee.user = tUser;
156
+ found = true;
157
+ }
158
+ });
159
+ }
160
+ }
161
+ }
162
+ });
163
+ }
164
+ if (!this.initialData.questions) {
165
+ this.initialData.questions = [];
166
+ const sql = "SELECT * FROM questions ORDER BY id;";
167
+ const results = await conn?.query(sql);
168
+ results.forEach((row) => {
169
+ if (this.initialData.questions) {
170
+ this.initialData.questions.push(new users_1.SecurityQuestion({
171
+ id: Number(row.id),
172
+ question: row.question
173
+ }));
174
+ }
175
+ });
176
+ }
177
+ }
178
+ catch (err) {
179
+ console.log(err);
180
+ }
181
+ finally {
182
+ if (conn)
183
+ conn.release();
184
+ }
185
+ return this.initialData;
186
+ }
187
+ }
188
+ exports.BuildInitial = BuildInitial;
189
+ //# sourceMappingURL=buildInitial.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"buildInitial.js","sourceRoot":"","sources":["../../src/services/buildInitial.ts"],"names":[],"mappings":";;;AAEA,sCAAuD;AACvD,qCAAmC;AACnC,sDAAmE;AACnE,oCAAyD;AACzD,8CAAiD;AACjD,8CAA0C;AAG1C,MAAa,YAAY;IACf,UAAU,CAAS;IACnB,WAAW,CAAkB;IAErC,YAAY,KAAc;QACxB,IAAI,CAAC,UAAU,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC;QACvC,IAAI,CAAC,WAAW,GAAG,EAAG,CAAC;IACzB,CAAC;IAED,KAAK,CAAC,KAAK;QACT,IAAI,IAAgC,CAAC;QACrC,IAAI,CAAC;YACH,IAAI,IAAI,CAAC,UAAU,KAAK,EAAE,EAAE,CAAC;gBAC3B,MAAM,IAAI,KAAK,CAAC,uBAAuB,CAAC,CAAC;YAC3C,CAAC;YAED,IAAI,oBAAW,CAAC,SAAS,EAAE,CAAC;gBAC1B,MAAM,KAAK,GAAG,EAAE,GAAG,EAAE,IAAI,kBAAQ,CAAC,IAAI,CAAC,UAAU,CAAC,EAAC,CAAC;gBACpD,MAAM,IAAI,GAAG,MAAM,oBAAW,CAAC,SAAS,CAAC,OAAO,CAAY,KAAK,CAAC,CAAC;gBACnE,IAAI,IAAI,EAAE,CAAC;oBACT,IAAI,CAAC,WAAW,CAAC,QAAQ,GAAG,IAAI,oBAAQ,CAAC,IAAI,CAAC,CAAC;oBAE/C,IAAI,oBAAW,CAAC,KAAK,EAAE,CAAC;wBACtB,MAAM,KAAK,GAAG,MAAM,oBAAW,CAAC,KAAK,CAAC,OAAO,CAAQ,KAAK,CAAC,CAAC;wBAC5D,IAAI,KAAK,EAAE,CAAC;4BACV,IAAI,CAAC,WAAW,CAAC,QAAQ,CAAC,IAAI,GAAG,IAAI,YAAI,CAAC,KAAK,CAAC,CAAC;wBACnD,CAAC;6BAAM,CAAC;4BACN,MAAM,IAAI,KAAK,CAAC,gBAAgB,CAAC,CAAC;wBACpC,CAAC;oBACH,CAAC;yBAAM,CAAC;wBACN,MAAM,IAAI,KAAK,CAAC,6BAA6B,CAAC,CAAC;oBACjD,CAAC;gBACH,CAAC;qBAAM,CAAC;oBACN,MAAM,IAAI,KAAK,CAAC,oBAAoB,CAAC,CAAA;gBACvC,CAAC;YACH,CAAC;iBAAM,CAAC;gBACN,MAAM,IAAI,KAAK,CAAC,iCAAiC,CAAC,CAAC;YACrD,CAAC;YAGD,MAAM,GAAG,GAAG,IAAI,IAAI,EAAE,CAAC;YACvB,MAAM,KAAK,GAAG,IAAI,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,GAAG,CAAC,WAAW,EAAE,GAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;YAC5D,MAAM,GAAG,GAAG,IAAI,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,GAAG,CAAC,WAAW,EAAE,GAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;YAG1D,IAAI,IAAI,CAAC,WAAW,CAAC,QAAQ,EAAE,CAAC;gBAC9B,IAAI,oBAAW,CAAC,KAAK,EAAE,CAAC;oBACtB,MAAM,KAAK,GAAG,EAAE,GAAG,EAAE,IAAI,kBAAQ,CAAC,IAAI,CAAC,WAAW,CAAC,QAAQ,CAAC,IAAI,CAAC,EAAC,CAAC;oBACnE,MAAM,KAAK,GAAG,MAAM,oBAAW,CAAC,KAAK,CAAC,OAAO,CAAQ,KAAK,CAAC,CAAC;oBAC5D,IAAI,KAAK,EAAE,CAAC;wBACV,IAAI,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,YAAI,CAAC,KAAK,CAAC,CAAC;wBAExC,MAAM,cAAc,GAAa,EAAE,CAAA;wBACnC,MAAM,YAAY,GAAG,EAAE,IAAI,EAAE,IAAI,kBAAQ,CAAC,IAAI,CAAC,WAAW,CAAC,QAAQ,CAAC,IAAI,CAAC,EAAC,CAAC;wBAC3E,IAAI,oBAAW,CAAC,SAAS,EAAE,CAAC;4BAC1B,MAAM,SAAS,GAAG,oBAAW,CAAC,SAAS,CAAC,IAAI,CAAY,YAAY,CAAC,CAAC;4BACtE,MAAM,QAAQ,GAAG,MAAM,SAAS,CAAC,OAAO,EAAE,CAAC;4BAC3C,MAAM,WAAW,GAAG,QAAQ,CAAC,GAAG,CAAC,KAAK,EAAC,IAAI,EAAE,EAAE;gCAC7C,MAAM,GAAG,GAAG,IAAI,oBAAQ,CAAC,IAAI,CAAC,CAAC;gCAC/B,IAAI,GAAG,CAAC,eAAe,CAAC,KAAK,EAAE,GAAG,CAAC,EAAE,CAAC;oCAGpC,IAAI,CAAC,WAAW,CAAC,IAAI,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC,IAAI,EAAE,CAAC,EAAE,EAAE;wCAC/C,IAAI,IAAI,CAAC,EAAE,CAAC,WAAW,EAAE,KAAK,GAAG,CAAC,IAAI,CAAC,WAAW,EAAE,EAAE,CAAC;4CACrD,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE,CAAC;gDACpB,IAAI,CAAC,SAAS,GAAG,EAAE,CAAC;4CACtB,CAAC;4CACD,IAAI,IAAI,CAAC,SAAS,EAAE,CAAC;gDACnB,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,IAAI,oBAAQ,CAAC,GAAG,CAAC,CAAC,CAAC;4CACzC,CAAC;4CACD,IAAI,IAAI,CAAC,WAAW,CAAC,IAAI,EAAE,CAAC;gDAC1B,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC;4CACxC,CAAC;wCACH,CAAC;oCACH,CAAC,CAAC,CAAC;oCAEH,cAAc,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC;gCAC9B,CAAC;4BACH,CAAC,CAAC,CAAC;4BACH,MAAM,OAAO,CAAC,UAAU,CAAC,WAAW,CAAC,CAAC;wBACxC,CAAC;wBAKD,IAAI,cAAc,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;4BAC9B,IAAI,sBAAa,CAAC,IAAI,EAAE,CAAC;gCACvB,IAAI,GAAG,MAAM,sBAAa,CAAC,IAAI,CAAC,aAAa,EAAE,CAAC;gCAChD,MAAM,GAAG,GAAG,yDAAyD;sCACjE,sEAAsE;sCACtE,mCAAmC,CAAC;gCACxC,MAAM,QAAQ,GAAG,CAAE,cAAc,EAAE,KAAK,EAAE,GAAG,CAAC,CAAC;gCAC/C,MAAM,OAAO,GAAG,MAAM,IAAI,CAAC,KAAK,CAAC,GAAG,EAAE,QAAQ,CAAC,CAAC;gCAChD,MAAM,YAAY,GAAG,OAAO,CAAC,GAAG,CAAC,KAAK,EAAC,GAAQ,EAAE,EAAE;oCACjD,IAAI,IAAI,CAAC,WAAW,CAAC,IAAI,EAAE,CAAC;wCAC1B,IAAI,KAAK,GAAG,KAAK,CAAC;wCAClB,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,IAAI,EAAE,CAAC,EAAE,EAAE;4CAC9C,IAAI,CAAC,KAAK,EAAE,CAAC;gDACX,IAAI,IAAI,CAAC,SAAS,EAAE,CAAC;oDACnB,IAAI,CAAC,SAAS,CAAC,OAAO,CAAC,CAAC,GAAG,EAAE,CAAC,EAAE,EAAE;wDAChC,IAAI,CAAC,KAAK,EAAE,CAAC;4DACX,IAAI,GAAG,CAAC,EAAE,IAAI,GAAG,CAAC,EAAE,KAAK,GAAG,CAAC,UAAU,EAAE,CAAC;gEACxC,KAAK,GAAG,IAAI,CAAC;gEACb,IAAI,CAAC,GAAG,CAAC,IAAI,EAAE,CAAC;oEACd,GAAG,CAAC,IAAI,GAAG,EAAE,CAAC;gEAChB,CAAC;gEACD,IAAI,GAAG,CAAC,IAAI,EAAE,CAAC;oEACb,GAAG,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,gBAAI,CAAC;wEACrB,UAAU,EAAE,IAAI,IAAI,CAAC,GAAG,CAAC,UAAU,CAAC;wEACpC,YAAY,EAAE,GAAG,CAAC,YAAY;wEAC9B,SAAS,EAAE,GAAG,CAAC,SAAS;wEACxB,OAAO,EAAE,MAAM,CAAC,GAAG,CAAC,OAAO,CAAC;wEAC5B,OAAO,EAAE,CAAC,GAAG,CAAC,OAAO,KAAK,GAAG,IAAI,GAAG,CAAC,OAAO,KAAK,CAAC,CAAC;wEACnD,KAAK,EAAE,MAAM,CAAC,GAAG,CAAC,KAAK,CAAC;qEACzB,CAAC,CAAC,CAAC;gEACN,CAAC;gEACD,IAAI,IAAI,CAAC,SAAS,EAAE,CAAC;oEACnB,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC;gEAC1B,CAAC;4DACH,CAAC;wDACH,CAAC;oDACH,CAAC,CAAC,CAAC;oDACH,IAAI,KAAK,IAAI,IAAI,CAAC,WAAW,CAAC,IAAI,EAAE,CAAC;wDACnC,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC;oDACxC,CAAC;gDACH,CAAC;4CACH,CAAC;wCACH,CAAC,CAAC,CAAA;oCACJ,CAAC;gCACH,CAAC,CAAC,CAAC;gCACH,MAAM,OAAO,CAAC,UAAU,CAAC,YAAY,CAAC,CAAC;4BACzC,CAAC;wBACH,CAAC;oBAEH,CAAC;yBAAM,CAAC;wBACN,MAAM,IAAI,KAAK,CAAC,yBAAyB,CAAC,CAAC;oBAC7C,CAAC;gBACH,CAAC;qBAAM,CAAC;oBACN,MAAM,IAAI,KAAK,CAAC,6BAA6B,CAAC,CAAC;gBACjD,CAAC;YACH,CAAC;iBAAM,CAAC;gBACN,MAAM,IAAI,KAAK,CAAC,kCAAkC,CAAC,CAAC;YACtD,CAAC;YAGD,IAAI,IAAI,CAAC,WAAW,CAAC,IAAI,EAAE,CAAC;gBAC1B,IAAI,KAAK,GAAG,KAAK,CAAC;gBAClB,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE;oBACzC,IAAI,CAAC,KAAK,IAAI,IAAI,CAAC,WAAW,CAAC,QAAQ,EAAE,CAAC;wBACxC,MAAM,KAAK,GAAG,IAAI,YAAI,CAAC,IAAI,CAAC,WAAW,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC;wBACvD,IAAI,IAAI,CAAC,EAAE,CAAC,WAAW,EAAE,KAAK,IAAI,CAAC,WAAW,CAAC,QAAQ,EAAE,IAAI,CAAC,WAAW,EAAE,EAAE,CAAC;4BAC5E,IAAI,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,YAAI,CAAC,IAAI,CAAC,CAAC;4BACvC,IAAI,IAAI,CAAC,SAAS,EAAE,CAAC;gCACnB,IAAI,CAAC,SAAS,CAAC,OAAO,CAAC,GAAG,CAAC,EAAE;oCAC3B,IAAI,CAAC,KAAK,IAAI,IAAI,CAAC,WAAW,CAAC,QAAQ;2CAClC,GAAG,CAAC,EAAE,KAAK,IAAI,CAAC,WAAW,CAAC,QAAQ,CAAC,EAAE,EAAE,CAAC;wCAC7C,IAAI,CAAC,WAAW,CAAC,QAAQ,GAAG,IAAI,oBAAQ,CAAC,GAAG,CAAC,CAAC;wCAC9C,IAAI,CAAC,WAAW,CAAC,QAAQ,CAAC,IAAI,GAAG,KAAK,CAAC;wCACvC,KAAK,GAAG,IAAI,CAAC;oCACf,CAAC;gCACH,CAAC,CAAC,CAAC;4BACL,CAAC;wBACH,CAAC;oBACH,CAAC;gBACH,CAAC,CAAC,CAAC;YACL,CAAC;YAGD,IAAI,CAAC,IAAI,CAAC,WAAW,CAAC,SAAS,EAAE,CAAC;gBAChC,IAAI,CAAC,WAAW,CAAC,SAAS,GAAG,EAAE,CAAC;gBAChC,MAAM,GAAG,GAAG,sCAAsC,CAAC;gBACnD,MAAM,OAAO,GAAG,MAAM,IAAI,EAAE,KAAK,CAAC,GAAG,CAAC,CAAC;gBACvC,OAAO,CAAC,OAAO,CAAC,CAAC,GAAQ,EAAE,EAAE;oBAC3B,IAAI,IAAI,CAAC,WAAW,CAAC,SAAS,EAAE,CAAC;wBAC/B,IAAI,CAAC,WAAW,CAAC,SAAS,CAAC,IAAI,CAAC,IAAI,wBAAgB,CAAC;4BACnD,EAAE,EAAE,MAAM,CAAC,GAAG,CAAC,EAAE,CAAC;4BAClB,QAAQ,EAAE,GAAG,CAAC,QAAQ;yBACvB,CAAC,CAAC,CAAC;oBACN,CAAC;gBACH,CAAC,CAAC,CAAC;YACL,CAAC;QACH,CAAC;QAAC,OAAO,GAAG,EAAE,CAAC;YACb,OAAO,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;QACnB,CAAC;gBAAS,CAAC;YACT,IAAI,IAAI;gBAAE,IAAI,CAAC,OAAO,EAAE,CAAC;QAC3B,CAAC;QACD,OAAO,IAAI,CAAC,WAAW,CAAC;IAC1B,CAAC;CACF;AA5LD,oCA4LC"}
@@ -0,0 +1 @@
1
+ export * from './buildInitial';
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./buildInitial"), exports);
18
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/services/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,iDAA+B"}