blixify-server 0.2.14 → 0.2.16
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/dist/apis/authWrapper.d.ts +4 -2
- package/dist/apis/authWrapper.d.ts.map +1 -1
- package/dist/apis/authWrapper.js +67 -2
- package/dist/apis/mongoWrapper.d.ts.map +1 -1
- package/dist/apis/mongoWrapper.js +79 -84
- package/dist/model/QueryModel.d.ts +0 -7
- package/dist/model/QueryModel.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -9,10 +9,12 @@ export declare class AuthWrapper {
|
|
|
9
9
|
lib: WrapperLib;
|
|
10
10
|
constructor(fbAdmin: any, isProd: boolean, lib: WrapperLib);
|
|
11
11
|
initCheckAuthMethod: (req: any, res: any) => Promise<void>;
|
|
12
|
-
|
|
13
|
-
|
|
12
|
+
initCreateAccount: (req: any, res: any, workflow?: () => Promise<any>) => Promise<void>;
|
|
13
|
+
initDisableAccount: (req: any, res: any, workflow?: () => Promise<any>) => Promise<void>;
|
|
14
|
+
initUpdatePassword: (req: any, res: any, workflow?: () => Promise<any>) => Promise<void>;
|
|
14
15
|
initUpdateEmail: (req: any, res: any, workflow?: () => Promise<any>) => Promise<void>;
|
|
15
16
|
initUpdateMobileNo: (req: any, res: any, workflow?: () => Promise<any>) => Promise<void>;
|
|
17
|
+
initDeleteAccount: (req: any, res: any, workflow?: () => Promise<any>) => Promise<void>;
|
|
16
18
|
init: () => any;
|
|
17
19
|
}
|
|
18
20
|
//# sourceMappingURL=authWrapper.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"authWrapper.d.ts","sourceRoot":"","sources":["../../src/apis/authWrapper.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAC;AAE5C;;;GAGG;AACH,qBAAa,WAAW;IACtB,OAAO,EAAE,GAAG,CAAM;IAClB,MAAM,UAAS;IACf,GAAG,EAAE,UAAU,CAAC;gBAEJ,OAAO,EAAE,GAAG,EAAE,MAAM,EAAE,OAAO,EAAE,GAAG,EAAE,UAAU;IAM1D,mBAAmB,QAAe,GAAG,OAAO,GAAG,mBAyB7C;IAEF,kBAAkB,
|
|
1
|
+
{"version":3,"file":"authWrapper.d.ts","sourceRoot":"","sources":["../../src/apis/authWrapper.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAC;AAE5C;;;GAGG;AACH,qBAAa,WAAW;IACtB,OAAO,EAAE,GAAG,CAAM;IAClB,MAAM,UAAS;IACf,GAAG,EAAE,UAAU,CAAC;gBAEJ,OAAO,EAAE,GAAG,EAAE,MAAM,EAAE,OAAO,EAAE,GAAG,EAAE,UAAU;IAM1D,mBAAmB,QAAe,GAAG,OAAO,GAAG,mBAyB7C;IAEF,iBAAiB,QACV,GAAG,OACH,GAAG,aACG,MAAM,QAAQ,GAAG,CAAC,mBAwB7B;IAEF,kBAAkB,QACX,GAAG,OACH,GAAG,aACG,MAAM,QAAQ,GAAG,CAAC,mBAa7B;IAEF,kBAAkB,QACX,GAAG,OACH,GAAG,aACG,MAAM,QAAQ,GAAG,CAAC,mBAa7B;IAEF,eAAe,QACR,GAAG,OACH,GAAG,aACG,MAAM,QAAQ,GAAG,CAAC,mBAiB7B;IAEF,kBAAkB,QACX,GAAG,OACH,GAAG,aACG,MAAM,QAAQ,GAAG,CAAC,mBAa7B;IAEF,iBAAiB,QACV,GAAG,OACH,GAAG,aACG,MAAM,QAAQ,GAAG,CAAC,mBAY7B;IAEF,IAAI,YAsEF;CACH"}
|
package/dist/apis/authWrapper.js
CHANGED
|
@@ -47,7 +47,34 @@ class AuthWrapper {
|
|
|
47
47
|
res.status(400).json({ err: err });
|
|
48
48
|
}
|
|
49
49
|
});
|
|
50
|
-
this.
|
|
50
|
+
this.initCreateAccount = (req, res, workflow) => __awaiter(this, void 0, void 0, function* () {
|
|
51
|
+
const adminAuth = this.fbAdmin.auth();
|
|
52
|
+
try {
|
|
53
|
+
const userId = req.body.userId;
|
|
54
|
+
const phoneNumber = req.body.phoneNumber;
|
|
55
|
+
const email = req.body.email;
|
|
56
|
+
const password = req.body.password;
|
|
57
|
+
if (!userId)
|
|
58
|
+
throw "Invalid Configuration";
|
|
59
|
+
const userData = {
|
|
60
|
+
uid: userId,
|
|
61
|
+
};
|
|
62
|
+
if (phoneNumber)
|
|
63
|
+
userData["phoneNumber"] = phoneNumber;
|
|
64
|
+
if (email)
|
|
65
|
+
userData["email"] = email;
|
|
66
|
+
if (password)
|
|
67
|
+
userData["password"] = password;
|
|
68
|
+
const createdCredentials = yield adminAuth.createUser(userData);
|
|
69
|
+
if (workflow)
|
|
70
|
+
yield workflow();
|
|
71
|
+
res.send({ success: createdCredentials.uid });
|
|
72
|
+
}
|
|
73
|
+
catch (err) {
|
|
74
|
+
res.status(400).json({ err: err });
|
|
75
|
+
}
|
|
76
|
+
});
|
|
77
|
+
this.initDisableAccount = (req, res, workflow) => __awaiter(this, void 0, void 0, function* () {
|
|
51
78
|
const adminAuth = this.fbAdmin.auth();
|
|
52
79
|
try {
|
|
53
80
|
const userId = req.body.userId;
|
|
@@ -55,13 +82,15 @@ class AuthWrapper {
|
|
|
55
82
|
if (!userId)
|
|
56
83
|
throw "Invalid Configuration";
|
|
57
84
|
yield adminAuth.updateUser(userId, { disabled: disable ? true : false });
|
|
85
|
+
if (workflow)
|
|
86
|
+
yield workflow();
|
|
58
87
|
res.send({ success: true });
|
|
59
88
|
}
|
|
60
89
|
catch (err) {
|
|
61
90
|
res.status(400).json({ err: err });
|
|
62
91
|
}
|
|
63
92
|
});
|
|
64
|
-
this.initUpdatePassword = (req, res) => __awaiter(this, void 0, void 0, function* () {
|
|
93
|
+
this.initUpdatePassword = (req, res, workflow) => __awaiter(this, void 0, void 0, function* () {
|
|
65
94
|
const adminAuth = this.fbAdmin.auth();
|
|
66
95
|
try {
|
|
67
96
|
const userId = req.body.userId;
|
|
@@ -69,6 +98,8 @@ class AuthWrapper {
|
|
|
69
98
|
if (!userId || !password)
|
|
70
99
|
throw "Invalid Configuration";
|
|
71
100
|
yield adminAuth.updateUser(userId, { password: password });
|
|
101
|
+
if (workflow)
|
|
102
|
+
yield workflow();
|
|
72
103
|
res.send({ success: true });
|
|
73
104
|
}
|
|
74
105
|
catch (err) {
|
|
@@ -111,6 +142,21 @@ class AuthWrapper {
|
|
|
111
142
|
res.status(400).json({ err: err });
|
|
112
143
|
}
|
|
113
144
|
});
|
|
145
|
+
this.initDeleteAccount = (req, res, workflow) => __awaiter(this, void 0, void 0, function* () {
|
|
146
|
+
const adminAuth = this.fbAdmin.auth();
|
|
147
|
+
try {
|
|
148
|
+
const userId = req.body.userId;
|
|
149
|
+
if (!userId)
|
|
150
|
+
throw "Invalid Configuration";
|
|
151
|
+
yield adminAuth.deleteUser(userId);
|
|
152
|
+
if (workflow)
|
|
153
|
+
yield workflow();
|
|
154
|
+
res.send({ success: true });
|
|
155
|
+
}
|
|
156
|
+
catch (err) {
|
|
157
|
+
res.status(400).json({ err: err });
|
|
158
|
+
}
|
|
159
|
+
});
|
|
114
160
|
this.init = () => {
|
|
115
161
|
const router = this.lib.express.Router();
|
|
116
162
|
/**
|
|
@@ -128,6 +174,17 @@ class AuthWrapper {
|
|
|
128
174
|
router.post("/method", (req, res) => {
|
|
129
175
|
this.initCheckAuthMethod(req, res);
|
|
130
176
|
});
|
|
177
|
+
/**
|
|
178
|
+
* @Input
|
|
179
|
+
* userId - string
|
|
180
|
+
* phoneNumber? - string
|
|
181
|
+
* email? - string
|
|
182
|
+
* password? - string
|
|
183
|
+
*
|
|
184
|
+
*/
|
|
185
|
+
router.post("/create", (req, res) => {
|
|
186
|
+
this.initCreateAccount(req, res);
|
|
187
|
+
});
|
|
131
188
|
/**
|
|
132
189
|
* @Input
|
|
133
190
|
* userId - string
|
|
@@ -153,6 +210,14 @@ class AuthWrapper {
|
|
|
153
210
|
router.post("/mobile", (req, res) => {
|
|
154
211
|
this.initUpdateMobileNo(req, res);
|
|
155
212
|
});
|
|
213
|
+
/**
|
|
214
|
+
* @Input
|
|
215
|
+
* userId - string
|
|
216
|
+
*
|
|
217
|
+
*/
|
|
218
|
+
router.post("/delete", (req, res) => {
|
|
219
|
+
this.initDeleteAccount(req, res);
|
|
220
|
+
});
|
|
156
221
|
return router;
|
|
157
222
|
};
|
|
158
223
|
this.fbAdmin = fbAdmin;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"mongoWrapper.d.ts","sourceRoot":"","sources":["../../src/apis/mongoWrapper.ts"],"names":[],"mappings":"AASA,OAAO,cAAc,MAAM,yBAAyB,CAAC;AAGrD,MAAM,WAAW,UAAU;IACzB,OAAO,CAAC,EAAE,GAAG,CAAC;CACf;
|
|
1
|
+
{"version":3,"file":"mongoWrapper.d.ts","sourceRoot":"","sources":["../../src/apis/mongoWrapper.ts"],"names":[],"mappings":"AASA,OAAO,cAAc,MAAM,yBAAyB,CAAC;AAGrD,MAAM,WAAW,UAAU;IACzB,OAAO,CAAC,EAAE,GAAG,CAAC;CACf;AA4GD;;;;GAIG;AACH,qBAAa,YAAY;IACvB,OAAO,EAAE,GAAG,CAAM;IAClB,UAAU,SAAM;IAChB,MAAM,UAAS;IACf,MAAM,EAAE,cAAc,CAQpB;IACF,GAAG,EAAE,UAAU,CAAC;IAChB,OAAO,SAAM;IACb,KAAK,SAAM;IACX,WAAW,EAAE,GAAG,CAAC;IACjB,KAAK,EAAE,GAAG,CAAC;IAEX,YAAY,QAAS,GAAG,aAEtB;gBAGA,OAAO,EAAE,GAAG,EACZ,UAAU,EAAE,MAAM,EAClB,MAAM,EAAE,OAAO,EACf,MAAM,EAAE,cAAc,EACtB,YAAY,EAAE,CAAC,GAAG,EAAE,GAAG,EAAE,MAAM,CAAC,EAAE,OAAO,KAAK,OAAO,EACrD,GAAG,EAAE,UAAU,EACf,OAAO,CAAC,EAAE,MAAM,EAChB,KAAK,CAAC,EAAE,MAAM,EACd,WAAW,CAAC,EAAE,CAAC,IAAI,EAAE,GAAG,KAAK,OAAO,CAAC,GAAG,CAAC,EACzC,KAAK,CAAC,EAAE,CAAC,OAAO,EAAE,GAAG,EAAE,OAAO,EAAE,GAAG,EAAE,MAAM,EAAE,GAAG,KAAK,IAAI;IAe3D,UAAU,SAAU,GAAG,SAIrB;IAEF,aAAa,YACF,GAAG,QACN,QAAQ,GAAG,QAAQ,GAAG,QAAQ,OAC/B,GAAG,UACA;QACN,GAAG,CAAC,EAAE,GAAG,CAAC;QACV,GAAG,CAAC,EAAE,GAAG,CAAC;KACX,mBA8CD;IAEF,eAAe,QACR,GAAG,OACH,GAAG,yBACc,GAAG,EAAE,KAAK,QAAQ,GAAG,CAAC;;mBAyE5C;IAEF,UAAU,QACH,GAAG,OACH,GAAG,qBACU,GAAG,KAAK,QAAQ,GAAG,CAAC;;mBAkDtC;IAEF,OAAO,QAAe,GAAG,OAAO,GAAG;;mBAuCjC;IAEF,eAAe,QACR,GAAG,OACH,GAAG,qBACU,GAAG,KAAK,QAAQ,GAAG,CAAC;;mBAgKtC;IAEF,UAAU,QACH,GAAG,OACH,GAAG,qBACU,GAAG,KAAK,QAAQ,GAAG,CAAC;;mBAqGtC;IAEF,eAAe,QACR,GAAG,OACH,GAAG,yBACc,GAAG,EAAE,KAAK,QAAQ,GAAG,CAAC;;mBA0I5C;IAEF,UAAU,QACH,GAAG,OACH,GAAG,qBACU,GAAG,KAAK,QAAQ,GAAG,CAAC;;mBAwCtC;IAEF,mBAAmB,CAAC,GAAG,EAAE,GAAG;IAiL5B,QAAQ,QAAe,GAAG,OAAO,GAAG;;;;;mBAgQlC;IAEF,IAAI,YA+EF;CACH"}
|
|
@@ -19,98 +19,111 @@ const QueryModel_1 = require("../model/QueryModel");
|
|
|
19
19
|
const utils_1 = require("./utils");
|
|
20
20
|
const handleParseQueryFilter = (queryList, prefix) => {
|
|
21
21
|
const queryFilter = {};
|
|
22
|
+
const queryGroupValues = {};
|
|
22
23
|
if (queryList && queryList.length > 0) {
|
|
23
|
-
queryList.
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
if (eachQuery.searchIds && eachQuery.searchIds.length > 0) {
|
|
27
|
-
eachQuery.searchIds.forEach((eachField) => {
|
|
28
|
-
const mainField = prefix ? `${prefix}.${eachField}` : eachField;
|
|
29
|
-
orConditions.push({
|
|
30
|
-
[mainField]: {
|
|
31
|
-
$regex: eachQuery.value
|
|
32
|
-
.toString()
|
|
33
|
-
.replace(/[.*+?^${}()|[\]\\]/g, "\\$&"),
|
|
34
|
-
$options: "i",
|
|
35
|
-
},
|
|
36
|
-
});
|
|
37
|
-
});
|
|
38
|
-
}
|
|
39
|
-
if (eachQuery.foreign &&
|
|
40
|
-
eachQuery.foreign.searchFields &&
|
|
41
|
-
eachQuery.foreign.searchFields.length > 0) {
|
|
42
|
-
let foreignAlias = eachQuery.foreign.alias;
|
|
43
|
-
if (!foreignAlias) {
|
|
44
|
-
foreignAlias = eachQuery.foreign.localField;
|
|
45
|
-
}
|
|
46
|
-
if (prefix) {
|
|
47
|
-
foreignAlias = `${prefix}.${foreignAlias}`;
|
|
48
|
-
}
|
|
49
|
-
eachQuery.foreign.searchFields.forEach((foreignField) => {
|
|
50
|
-
orConditions.push({
|
|
51
|
-
[`${foreignAlias}.${foreignField}`]: {
|
|
52
|
-
$regex: eachQuery.value
|
|
53
|
-
.toString()
|
|
54
|
-
.replace(/[.*+?^${}()|[\]\\]/g, "\\$&"),
|
|
55
|
-
$options: "i",
|
|
56
|
-
},
|
|
57
|
-
});
|
|
58
|
-
});
|
|
59
|
-
}
|
|
60
|
-
}
|
|
61
|
-
// For non-"search" types (like "=" or ">" etc.), use queryId.
|
|
62
|
-
let queryId = eachQuery.queryId || "";
|
|
24
|
+
queryList.map((eachQuery) => {
|
|
25
|
+
var _a;
|
|
26
|
+
let queryId = (_a = eachQuery.queryId) !== null && _a !== void 0 ? _a : "";
|
|
63
27
|
if (prefix)
|
|
64
28
|
queryId = `${prefix}.${queryId}`;
|
|
29
|
+
const value = eachQuery.value;
|
|
30
|
+
const queryValues = {};
|
|
31
|
+
let orOption = false;
|
|
65
32
|
switch (eachQuery.type) {
|
|
33
|
+
case "search":
|
|
34
|
+
if (eachQuery.searchIds && eachQuery.searchIds.length > 0) {
|
|
35
|
+
eachQuery.searchIds.map((eachSearchId) => {
|
|
36
|
+
orOption = true;
|
|
37
|
+
queryValues[eachSearchId] = {
|
|
38
|
+
$regex: `${(0, utils_1.handleSpecialWordsEscapeRegex)(value)}`,
|
|
39
|
+
$options: "i",
|
|
40
|
+
};
|
|
41
|
+
});
|
|
42
|
+
}
|
|
43
|
+
break;
|
|
66
44
|
case "=":
|
|
67
|
-
|
|
45
|
+
queryValues[queryId] = value;
|
|
68
46
|
break;
|
|
69
47
|
case "!=":
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
queryFilter[queryId] = { $in: eachQuery.value };
|
|
48
|
+
queryValues[queryId] = {
|
|
49
|
+
$ne: value,
|
|
50
|
+
};
|
|
74
51
|
break;
|
|
75
52
|
case ">":
|
|
76
|
-
|
|
53
|
+
queryValues[queryId] = {
|
|
54
|
+
$gt: value,
|
|
55
|
+
};
|
|
77
56
|
break;
|
|
78
57
|
case "<":
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
queryFilter[queryId] = { $nin: eachQuery.value };
|
|
58
|
+
queryValues[queryId] = {
|
|
59
|
+
$lt: value,
|
|
60
|
+
};
|
|
83
61
|
break;
|
|
84
62
|
case "><":
|
|
85
|
-
if (Array.isArray(
|
|
86
|
-
|
|
87
|
-
[
|
|
88
|
-
|
|
89
|
-
$lte: eachQuery.value[1],
|
|
90
|
-
},
|
|
63
|
+
if (Array.isArray(value) && value.length >= 2) {
|
|
64
|
+
queryValues[queryId] = {
|
|
65
|
+
$gte: value[0],
|
|
66
|
+
$lte: value[1],
|
|
91
67
|
};
|
|
92
68
|
}
|
|
93
69
|
break;
|
|
70
|
+
case "in":
|
|
71
|
+
queryValues[queryId] = {
|
|
72
|
+
$in: value,
|
|
73
|
+
};
|
|
74
|
+
break;
|
|
75
|
+
case "!in":
|
|
76
|
+
queryFilter[queryId] = {
|
|
77
|
+
$nin: value,
|
|
78
|
+
};
|
|
79
|
+
break;
|
|
94
80
|
case "exists":
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
81
|
+
// Check if field exists or not
|
|
82
|
+
queryValues[queryId] = {
|
|
83
|
+
$exists: value, // `true` if field should exist, `false` if field should not exist
|
|
84
|
+
};
|
|
98
85
|
break;
|
|
99
|
-
// Handle other cases as needed.
|
|
100
86
|
default:
|
|
101
87
|
break;
|
|
102
88
|
}
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
89
|
+
if (eachQuery.orQuery)
|
|
90
|
+
orOption = true;
|
|
91
|
+
//INFO : Delete Query Values as it's added outside
|
|
92
|
+
if (eachQuery.orQueryGroupId) {
|
|
93
|
+
const groupValue = queryValues[queryId];
|
|
94
|
+
if (groupValue) {
|
|
95
|
+
if (queryGroupValues[eachQuery.orQueryGroupId]) {
|
|
96
|
+
queryGroupValues[eachQuery.orQueryGroupId]["$and"].push({
|
|
97
|
+
[queryId]: queryValues[queryId],
|
|
98
|
+
});
|
|
99
|
+
}
|
|
100
|
+
else {
|
|
101
|
+
queryGroupValues[eachQuery.orQueryGroupId] = {
|
|
102
|
+
$and: [{ [queryId]: queryValues[queryId] }],
|
|
103
|
+
};
|
|
104
|
+
}
|
|
105
|
+
delete queryValues[queryId];
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
Object.keys(queryValues).map((eachKey) => {
|
|
109
|
+
if (orOption) {
|
|
110
|
+
if (queryFilter["$or"])
|
|
111
|
+
queryFilter["$or"].push({ [eachKey]: queryValues[eachKey] });
|
|
112
|
+
else
|
|
113
|
+
queryFilter["$or"] = [{ [eachKey]: queryValues[eachKey] }];
|
|
107
114
|
}
|
|
108
115
|
else {
|
|
109
|
-
queryFilter[
|
|
116
|
+
queryFilter[eachKey] = queryValues[eachKey];
|
|
110
117
|
}
|
|
111
|
-
}
|
|
118
|
+
});
|
|
112
119
|
});
|
|
113
120
|
}
|
|
121
|
+
Object.keys(queryGroupValues).map((eachKey) => {
|
|
122
|
+
if (queryFilter["$or"])
|
|
123
|
+
queryFilter["$or"].push(queryGroupValues[eachKey]);
|
|
124
|
+
else
|
|
125
|
+
queryFilter["$or"] = [queryGroupValues[eachKey]];
|
|
126
|
+
});
|
|
114
127
|
return queryFilter;
|
|
115
128
|
};
|
|
116
129
|
/**
|
|
@@ -1140,24 +1153,6 @@ class MongoWrapper {
|
|
|
1140
1153
|
}
|
|
1141
1154
|
});
|
|
1142
1155
|
}
|
|
1143
|
-
if (query && query.length > 0) {
|
|
1144
|
-
query.forEach((q) => {
|
|
1145
|
-
if (q.foreign) {
|
|
1146
|
-
const alias = q.foreign.alias || q.foreign.localField;
|
|
1147
|
-
if (!addedForeignLookups.has(alias)) {
|
|
1148
|
-
pipelineList.push({
|
|
1149
|
-
$lookup: {
|
|
1150
|
-
from: q.foreign.collection,
|
|
1151
|
-
localField: q.foreign.localField,
|
|
1152
|
-
foreignField: q.foreign.foreignField,
|
|
1153
|
-
as: alias,
|
|
1154
|
-
},
|
|
1155
|
-
});
|
|
1156
|
-
addedForeignLookups.set(alias, true);
|
|
1157
|
-
}
|
|
1158
|
-
}
|
|
1159
|
-
});
|
|
1160
|
-
}
|
|
1161
1156
|
if (query && query.length > 0) {
|
|
1162
1157
|
const filter = handleParseQueryFilter(query);
|
|
1163
1158
|
pipelineList.push({ $match: filter });
|
|
@@ -15,13 +15,6 @@ export interface Query {
|
|
|
15
15
|
value: any;
|
|
16
16
|
queryId?: string;
|
|
17
17
|
searchIds?: string[];
|
|
18
|
-
foreign?: {
|
|
19
|
-
collection: string;
|
|
20
|
-
localField: string;
|
|
21
|
-
foreignField: string;
|
|
22
|
-
searchFields: string[];
|
|
23
|
-
alias?: string;
|
|
24
|
-
};
|
|
25
18
|
orQuery?: boolean;
|
|
26
19
|
orQueryGroupId?: string;
|
|
27
20
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"QueryModel.d.ts","sourceRoot":"","sources":["../../src/model/QueryModel.ts"],"names":[],"mappings":"AAAA,OAAO,cAAc,MAAM,kBAAkB,CAAC;AAE9C;;;;;;;;;;GAUG;AACH,MAAM,WAAW,KAAK;IACpB,IAAI,EAAE,QAAQ,GAAG,GAAG,GAAG,IAAI,GAAG,GAAG,GAAG,GAAG,GAAG,IAAI,GAAG,IAAI,GAAG,KAAK,GAAG,QAAQ,CAAC;IACzE,KAAK,EAAE,GAAG,CAAC;IACX,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,SAAS,CAAC,EAAE,MAAM,EAAE,CAAC;IACrB,OAAO,CAAC,EAAE
|
|
1
|
+
{"version":3,"file":"QueryModel.d.ts","sourceRoot":"","sources":["../../src/model/QueryModel.ts"],"names":[],"mappings":"AAAA,OAAO,cAAc,MAAM,kBAAkB,CAAC;AAE9C;;;;;;;;;;GAUG;AACH,MAAM,WAAW,KAAK;IACpB,IAAI,EAAE,QAAQ,GAAG,GAAG,GAAG,IAAI,GAAG,GAAG,GAAG,GAAG,GAAG,IAAI,GAAG,IAAI,GAAG,KAAK,GAAG,QAAQ,CAAC;IACzE,KAAK,EAAE,GAAG,CAAC;IACX,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,SAAS,CAAC,EAAE,MAAM,EAAE,CAAC;IACrB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,cAAc,CAAC,EAAE,MAAM,CAAC;CACzB;AAED,UAAU,iBAAiB;IACzB,IAAI,EAAE,GAAG,GAAG,IAAI,GAAG,GAAG,GAAG,GAAG,GAAG,IAAI,GAAG,IAAI,GAAG,KAAK,CAAC;IACnD,YAAY,EAAE,MAAM,CAAC;IACrB,UAAU,EAAE,MAAM,CAAC;CACpB;AAED;;;;;;;;;GASG;AACH,MAAM,WAAW,QAAQ;IACvB,SAAS,EAAE,iBAAiB,EAAE,CAAC;IAC/B,mBAAmB,EAAE,MAAM,EAAE,CAAC;IAC9B,gBAAgB,EAAE,MAAM,CAAC;IACzB,gBAAgB,EAAE,MAAM,CAAC;IACzB,IAAI,EAAE,IAAI,CAAC;CACZ;AAED;;;;;;;;;;;;;;;GAeG;AACH,MAAM,WAAW,SAAS;IACxB,IAAI,EAAE,OAAO,GAAG,KAAK,GAAG,KAAK,GAAG,OAAO,CAAC;IACxC,OAAO,EAAE,MAAM,CAAC;IAChB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,KAAK,CAAC,EAAE,MAAM,EAAE,CAAC;IACjB,MAAM,CAAC,EAAE;QACP,UAAU,EAAE,MAAM,CAAC;QACnB,YAAY,EAAE,MAAM,CAAC;QACrB,KAAK,EAAE,KAAK,EAAE,CAAC;QACf,MAAM,CAAC,EAAE;YACP,IAAI,EAAE,OAAO,GAAG,OAAO,CAAC;YACxB,IAAI,CAAC,EAAE,OAAO,CAAC;SAChB,CAAC;KACH,EAAE,CAAC;CACL;AAED,MAAM,WAAW,IAAI;IACnB,MAAM,EAAE,MAAM,CAAC;IACf,IAAI,EAAE,KAAK,GAAG,MAAM,CAAC;CACtB;AAED;;;;;;GAMG;AACH,eAAO,MAAM,eAAe,WAAY,cAAc,OAAO,GAAG,YAmC/D,CAAC;AAEF;;;;;;;GAOG;AACH,eAAO,MAAM,cAAc,WACjB,cAAc,QAChB,MAAM,GAAG,QAAQ,GAAG,QAAQ,GAAG,QAAQ,OACxC,GAAG,OACH,GAAG,YAyDT,CAAC"}
|