@futdevpro/nts-dynamo 1.5.51 → 1.5.53

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.
Files changed (34) hide show
  1. package/lib/_models/dynamo-nts-endpoint-params.js +3 -2
  2. package/lib/_models/dynamo-nts-endpoint-params.js.map +1 -1
  3. package/lib/_services/dynamo-nts-app-extended.d.ts +87 -7
  4. package/lib/_services/dynamo-nts-app-extended.d.ts.map +1 -1
  5. package/lib/_services/dynamo-nts-app-extended.js +87 -7
  6. package/lib/_services/dynamo-nts-app-extended.js.map +1 -1
  7. package/lib/_services/dynamo-nts-app.d.ts +131 -22
  8. package/lib/_services/dynamo-nts-app.d.ts.map +1 -1
  9. package/lib/_services/dynamo-nts-app.js +104 -1
  10. package/lib/_services/dynamo-nts-app.js.map +1 -1
  11. package/lib/_services/dynamo-nts-auth.service.d.ts +78 -5
  12. package/lib/_services/dynamo-nts-auth.service.d.ts.map +1 -1
  13. package/lib/_services/dynamo-nts-auth.service.js.map +1 -1
  14. package/lib/_services/dynamo-nts-data.service.d.ts +28 -1
  15. package/lib/_services/dynamo-nts-data.service.d.ts.map +1 -1
  16. package/lib/_services/dynamo-nts-data.service.js +109 -75
  17. package/lib/_services/dynamo-nts-data.service.js.map +1 -1
  18. package/lib/_services/dynamo-nts-db.service.d.ts +165 -115
  19. package/lib/_services/dynamo-nts-db.service.d.ts.map +1 -1
  20. package/lib/_services/dynamo-nts-db.service.js +301 -277
  21. package/lib/_services/dynamo-nts-db.service.js.map +1 -1
  22. package/lib/_services/dynamo-nts-routing-module.service.d.ts +39 -0
  23. package/lib/_services/dynamo-nts-routing-module.service.d.ts.map +1 -1
  24. package/lib/_services/dynamo-nts-routing-module.service.js +39 -0
  25. package/lib/_services/dynamo-nts-routing-module.service.js.map +1 -1
  26. package/lib/tsconfig.tsbuildinfo +1 -1
  27. package/package.json +15 -12
  28. package/src/_models/dynamo-nts-endpoint-params.ts +2 -2
  29. package/src/_services/dynamo-nts-app-extended.ts +87 -7
  30. package/src/_services/dynamo-nts-app.ts +131 -22
  31. package/src/_services/dynamo-nts-auth.service.ts +79 -5
  32. package/src/_services/dynamo-nts-data.service.ts +110 -73
  33. package/src/_services/dynamo-nts-db.service.ts +323 -279
  34. package/src/_services/dynamo-nts-routing-module.service.ts +39 -0
@@ -59,18 +59,6 @@ export declare class DynamoNTS_DBService<T extends Dynamo_Metadata> {
59
59
  * @returns dataList
60
60
  */
61
61
  searchData(searchBy: object, narrowByDependencyIds?: string[]): Promise<T[]>;
62
- /**
63
- * find data by any of its parameters, throws error if not found
64
- * @param data
65
- * (always use unique parameters for find!)
66
- * etc.: by email:
67
- * @example { email: email }
68
- * or by id that is in list:
69
- * @example { userIds: { $in: this.userId } }
70
- * or by number or Date that is greater than OR less than:
71
- * @example { points: { $gte: 2, $lte: 14 } }
72
- * @returns data
73
- */
74
62
  /**
75
63
  * returns all data from database, throws error if not found
76
64
  * @returns dataList
@@ -87,67 +75,91 @@ export declare class DynamoNTS_DBService<T extends Dynamo_Metadata> {
87
75
  */
88
76
  deleteDataByDependencyId(dependencyId: string): Promise<void>;
89
77
  /**
90
- * find the data first by any of its parameters, throws error if not found
91
- * @param filter
92
- * (always use unique parameters for find!)
93
- * etc.: by email:
94
- * @example { email: email }
95
- * or by id that is in list:
96
- * @example { userIds: { $in: this.userId } }
97
- * or by number or Date that is GREATER THAN OR LESS THAN:
98
- * @example { points: { $gt: 2, $lt: 14 } }
99
- * further tools (syntax matches with $gt):
100
- * $eq: Matches values that are EQUAL to a specified value.
101
- * $gte: Matches values that are GREATER THAN or EQUAL to a specified value.
102
- * $lte: Matches values that are LESS THAN or EQUAL to a specified value.
103
- * $ne: Matches all values that are NOT EQUAL to a specified value.
104
- * $nin: Matches NONE of the values specified IN an array.
78
+ * Find the data first by any of its parameters, throws error if not found
79
+ * @param filter if you can, use unique parameters for find!
105
80
  *
106
- * @returns data
81
+ * @example
82
+ * // by email:
83
+ * { email: email }
84
+ * //
85
+ * @example
86
+ * // or by id that is in list:
87
+ * { userIds: { $in: this.userId } }
88
+ * //
89
+ * @example
90
+ * // or by number or Date that is Greater Than AND Less Than:
91
+ * { points: { $gt: 2, $lt: 14 } }
92
+ * // further tools (syntax matches with $gt):
93
+ * $eq: // Matches values that are EQual to a specified value.
94
+ * $gte: // Matches values that are Greater Than OR Equal to a specified value.
95
+ * $lte: // Matches values that are Less Than or Equal to a specified value.
96
+ * $ne: // Matches all values that are Not Equal to a specified value.
97
+ * $nin: // Matches None of the values specified IN an array.
98
+ * //
99
+ * @returns {T} data: T
107
100
  */
108
101
  findOne(filter: any): Promise<T>;
109
102
  /**
110
- * find all data by any of its parameters, throws error if not found
111
- * @param filter
112
- * etc.: by email:
113
- * @example { email: email }
114
- * or by id that is in list:
115
- * @example { userIds: { $in: this.userId } }
116
- * or by number or Date that is GREATER THAN OR LESS THAN:
117
- * @example { points: { $gt: 2, $lt: 14 } }
118
- * further tools (syntax matches with $gt):
119
- * $eq: Matches values that are EQUAL to a specified value.
120
- * $gte: Matches values that are GREATER THAN or EQUAL to a specified value.
121
- * $lte: Matches values that are LESS THAN or EQUAL to a specified value.
122
- * $ne: Matches all values that are NOT EQUAL to a specified value.
123
- * $nin: Matches NONE of the values specified IN an array.
103
+ * #MONGOOSE FUNCTION
104
+ * Find the data first by any of its parameters, throws error if not found
105
+ * @param filter if you can, use unique parameters for find!
124
106
  *
125
- * @returns dataList
107
+ * @example
108
+ * // by email:
109
+ * { email: email }
110
+ * //
111
+ * @example
112
+ * // or by id that is in list:
113
+ * { userIds: { $in: this.userId } }
114
+ * //
115
+ * @example
116
+ * // or by number or Date that is Greater Than AND Less Than:
117
+ * { points: { $gt: 2, $lt: 14 } }
118
+ * // further tools (syntax matches with $gt):
119
+ * $eq: // Matches values that are EQual to a specified value.
120
+ * $gte: // Matches values that are Greater Than OR Equal to a specified value.
121
+ * $lte: // Matches values that are Less Than or Equal to a specified value.
122
+ * $ne: // Matches all values that are Not Equal to a specified value.
123
+ * $nin: // Matches None of the values specified IN an array.
124
+ * //
125
+ * @returns {T[]} dataList: T[]
126
126
  */
127
127
  find(filter: any): Promise<T[]>;
128
128
  /**
129
- * find all data by any of its parameters, throws error if not found
130
- * @param filter
131
- * etc.: by email:
132
- * @example { email: email }
133
- * or by id that is in list:
134
- * @example { userIds: { $in: this.userId } }
135
- * or by number or Date that is GREATER THAN OR LESS THAN:
136
- * @example { points: { $gt: 2, $lt: 14 } }
137
- * further tools (syntax matches with $gt):
138
- * $eq: Matches values that are EQUAL to a specified value.
139
- * $gte: Matches values that are GREATER THAN or EQUAL to a specified value.
140
- * $lte: Matches values that are LESS THAN or EQUAL to a specified value.
141
- * $ne: Matches all values that are NOT EQUAL to a specified value.
142
- * $nin: Matches NONE of the values specified IN an array.
129
+ * #MONGOOSE FUNCTION
130
+ * Find the data first by any of its parameters, throws error if not found
131
+ * @param filter if you can, use unique parameters for find!
143
132
  *
133
+ * @example
134
+ * // by email:
135
+ * { email: email }
136
+ * //
137
+ * @example
138
+ * // or by id that is in list:
139
+ * { userIds: { $in: this.userId } }
140
+ * //
141
+ * @example
142
+ * // or by number or Date that is Greater Than AND Less Than:
143
+ * { points: { $gt: 2, $lt: 14 } }
144
+ * // further tools (syntax matches with $gt):
145
+ * $eq: // Matches values that are EQual to a specified value.
146
+ * $gte: // Matches values that are Greater Than OR Equal to a specified value.
147
+ * $lte: // Matches values that are Less Than or Equal to a specified value.
148
+ * $ne: // Matches all values that are Not Equal to a specified value.
149
+ * $nin: // Matches None of the values specified IN an array.
150
+ * //
144
151
  * @param page page
145
152
  * @param pageSize pageSize
146
- * @param sort etc. by dateTime: { dateTime: -1 }
147
- * @returns dataList
153
+ * @param sort
154
+ * @example
155
+ * // by dateTime (this uses the basic sort function):
156
+ * { dateTime: -1 }
157
+ * //
158
+ * @returns {T[]} dataList: T[]
148
159
  */
149
160
  findWithPaging(filter: any, page: number, pageSize: number, sort?: any): Promise<T[]>;
150
161
  /**
162
+ * #MONGOOSE FUNCTION
151
163
  * Find data by _id and update
152
164
  * @param id id
153
165
  * @param update update
@@ -155,68 +167,106 @@ export declare class DynamoNTS_DBService<T extends Dynamo_Metadata> {
155
167
  */
156
168
  findByIdAndUpdate(id: string, update: any, modifier: string): Promise<T>;
157
169
  /**
158
- * update one parameter by a specific
159
- * @param updateBy
160
- * (always use unique parameters for find!)
161
- * etc.: by email:
162
- * @example { email: email }
163
- * or by id that is in list:
164
- * @example { userIds: { $in: this.userId } }
165
- * or by number or Date that is GREATER THAN OR LESS THAN:
166
- * @example { points: { $gt: 2, $lt: 14 } }
167
- * further tools (syntax matches with $gt):
168
- * $eq: Matches values that are EQUAL to a specified value.
169
- * $gte: Matches values that are GREATER THAN or EQUAL to a specified value.
170
- * $lte: Matches values that are LESS THAN or EQUAL to a specified value.
171
- * $ne: Matches all values that are NOT EQUAL to a specified value.
172
- * $nin: Matches NONE of the values specified IN an array.
170
+ * #MONGOOSE FUNCTION
171
+ * Find the data first by any of its parameters, throws error if not found
172
+ * @param filter This uses the basic Mongoose updateOne.
173
+ * If you can, use unique parameters for find!
174
+ * @example
175
+ * // by email:
176
+ * { email: email }
177
+ * //
178
+ * @example
179
+ * // or by id that is in list:
180
+ * { userIds: { $in: this.userId } }
181
+ * //
182
+ * @example
183
+ * // or by number or Date that is Greater Than AND Less Than:
184
+ * { points: { $gt: 2, $lt: 14 } }
185
+ * // further tools (syntax matches with $gt):
186
+ * $eq: // Matches values that are EQual to a specified value.
187
+ * $gte: // Matches values that are Greater Than OR Equal to a specified value.
188
+ * $lte: // Matches values that are Less Than or Equal to a specified value.
189
+ * $ne: // Matches all values that are Not Equal to a specified value.
190
+ * $nin: // Matches None of the values specified IN an array.
191
+ * //
173
192
  *
174
- * @param update
175
- * etc.: increase a specific value:
176
- * @example { $inc: { popularity: 15 } }
177
- * or add element to a list:
178
- * @example { $push: { reactions: this.newReaction }
179
- * or all at once
180
- * @example { $inc: { popularity: this.newVote.amount }, emailVerified: true, $push: { reactions: this.newReaction } }
181
- * further tools (syntax matches with $inc):
182
- * $currentDate: Sets the value of a field to current date, either as a Date or a Timestamp.
183
- * $min: Only updates the field if the specified value is less than the existing field value.
184
- * $max: Only updates the field if the specified value is greater than the existing field value.
185
- * $mul: Multiplies the value of the field by the specified amount.
186
- * $rename: Renames a field.
187
- * $unset: Removes the specified field from a document. (set: "" to value)
193
+ * @param update this uses the basic Mongoose updateOne
194
+ * @example
195
+ * // increase a specific value (here by 15):
196
+ * { $inc: { popularity: 15 } }
197
+ * //
198
+ * @example
199
+ * // or add element to a list:
200
+ * { $push: { reactions: this.newReaction }
201
+ * // or add multiple elements to a list
202
+ * { $push: { schedule: {$each: [ monday, tuesday, wednesday ] } } }
203
+ * //
204
+ * @example
205
+ * // or all at once
206
+ * {
207
+ * $inc: { popularity: this.newVote.amount },
208
+ * emailVerified: true,
209
+ * $push: { reactions: this.newReaction }
210
+ * }
211
+ * // further tools (syntax matches with $inc):
212
+ * $currentDate: // Sets the value of a field to current date, either as a Date or a Timestamp.
213
+ * $min: // Only updates the field if the specified value is less than the existing field value.
214
+ * $max: // Only updates the field if the specified value is greater than the existing field value.
215
+ * $mul: // Multiplies the value of the field by the specified amount.
216
+ * $rename: // Renames a field.
217
+ * $unset: // Removes the specified field from a document. (set: "" to value)
218
+ * //
188
219
  */
189
220
  updateOne(updateBy: any, update: any, modifier: string): Promise<void>;
190
221
  /**
222
+ * #MONGOOSE FUNCTION
191
223
  * update one parameter by a specific
192
- * @param updateBy
193
- * etc.: by email:
194
- * @example { email: email }
195
- * or by id that is in list:
196
- * @example { userIds: { $in: this.userId } }
197
- * or by number or Date that is GREATER THAN OR LESS THAN:
198
- * @example { points: { $gt: 2, $lt: 14 } }
199
- * further tools (syntax matches with $gt):
200
- * $eq: Matches values that are EQUAL to a specified value.
201
- * $gte: Matches values that are GREATER THAN or EQUAL to a specified value.
202
- * $lte: Matches values that are LESS THAN or EQUAL to a specified value.
203
- * $ne: Matches all values that are NOT EQUAL to a specified value.
204
- * $nin: Matches NONE of the values specified IN an array.
224
+ * @param filter This uses the basic Mongoose updateMany.
225
+ * @example
226
+ * // by email:
227
+ * { email: email }
228
+ * //
229
+ * @example
230
+ * // or by id that is in list:
231
+ * { userIds: { $in: this.userId } }
232
+ * //
233
+ * @example
234
+ * // or by number or Date that is Greater Than AND Less Than:
235
+ * { points: { $gt: 2, $lt: 14 } }
236
+ * // further tools (syntax matches with $gt):
237
+ * $eq: // Matches values that are EQual to a specified value.
238
+ * $gte: // Matches values that are Greater Than OR Equal to a specified value.
239
+ * $lte: // Matches values that are Less Than or Equal to a specified value.
240
+ * $ne: // Matches all values that are Not Equal to a specified value.
241
+ * $nin: // Matches None of the values specified IN an array.
242
+ * //
205
243
  *
206
- * @param update
207
- * etc.: increase a specific value:
208
- * @example { $inc: { popularity: 15 } }
209
- * or add element to a list:
210
- * @example { $push: { reactions: this.newReaction }
211
- * or all at once
212
- * @example { $inc: { popularity: this.newVote.amount }, emailVerified: true, $push: { reactions: this.newReaction } }
213
- * further tools (syntax matches with $inc):
214
- * $currentDate: Sets the value of a field to current date, either as a Date or a Timestamp.
215
- * $min: Only updates the field if the specified value is less than the existing field value.
216
- * $max: Only updates the field if the specified value is greater than the existing field value.
217
- * $mul: Multiplies the value of the field by the specified amount.
218
- * $rename: Renames a field.
219
- * $unset: Removes the specified field from a document. (set: "" to value)
244
+ * @param update this uses the basic Mongoose updateOne
245
+ * @example
246
+ * // increase a specific value (here by 15):
247
+ * { $inc: { popularity: 15 } }
248
+ * //
249
+ * @example
250
+ * // or add element to a list:
251
+ * { $push: { reactions: this.newReaction }
252
+ * // or add multiple elements to a list
253
+ * { $push: { schedule: {$each: [ monday, tuesday, wednesday ] } } }
254
+ * //
255
+ * @example
256
+ * // or all at once
257
+ * {
258
+ * $inc: { popularity: this.newVote.amount },
259
+ * emailVerified: true,
260
+ * $push: { reactions: this.newReaction }
261
+ * }
262
+ * // further tools (syntax matches with $inc):
263
+ * $currentDate: // Sets the value of a field to current date, either as a Date or a Timestamp.
264
+ * $min: // Only updates the field if the specified value is less than the existing field value.
265
+ * $max: // Only updates the field if the specified value is greater than the existing field value.
266
+ * $mul: // Multiplies the value of the field by the specified amount.
267
+ * $rename: // Renames a field.
268
+ * $unset: // Removes the specified field from a document. (set: "" to value)
269
+ * //
220
270
  */
221
271
  updateMany(updateBy: any, update: any, modifier: string): Promise<void>;
222
272
  /**
@@ -1 +1 @@
1
- {"version":3,"file":"dynamo-nts-db.service.d.ts","sourceRoot":"","sources":["../../src/_services/dynamo-nts-db.service.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,QAAQ,MAAM,UAAU,CAAC;AAErC,OAAO,EAAE,eAAe,EAAE,oBAAoB,EAA8C,MAAM,uBAAuB,CAAC;AAE1H;;GAEG;AACH,qBAAa,mBAAmB,CAAC,CAAC,SAAS,eAAe;IAc/C,UAAU,EAAE,oBAAoB;IAbzC,SAAS,6DAA4D;IAErE,OAAO,CAAC,WAAW,CAAS;IAE5B,mBAAmB,SAA2F;IAE9G;;;;;OAKG;gBAEM,UAAU,EAAE,oBAAoB;IAKzC;;;;OAIG;IACG,UAAU,CAAC,IAAI,EAAE,CAAC,EAAE,OAAO,EAAE,MAAM,GAAG,OAAO,CAAC,CAAC,CAAC;IAyCtD;;;;OAIG;IACG,UAAU,CAAC,IAAI,EAAE,CAAC,EAAE,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,CAAC,CAAC;IAmCvD;;;;OAIG;IACG,WAAW,CAAC,EAAE,EAAE,MAAM,GAAG,OAAO,CAAC,CAAC,CAAC;IA2BzC;;;;OAIG;IACG,qBAAqB,CAAC,YAAY,EAAE,MAAM,GAAG,OAAO,CAAC,CAAC,CAAC;IAkC7D;;;;OAIG;IACG,yBAAyB,CAAC,YAAY,EAAE,MAAM,GAAG,OAAO,CAAC,CAAC,EAAE,CAAC;IAkCnE;;;;OAIG;IACG,0BAA0B,CAAC,GAAG,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC,CAAC,EAAE,CAAC;IA6B7D;;;;;;OAMG;IACG,UAAU,CAAC,QAAQ,EAAE,MAAM,EAAE,qBAAqB,CAAC,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC,CAAC,EAAE,CAAC;IAgFlF;;;;;;;;;;;OAWG;IAqBH;;;OAGG;IACG,MAAM,IAAI,OAAO,CAAC,CAAC,EAAE,CAAC;IA2B5B;;;OAGG;IACG,cAAc,CAAC,EAAE,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IAa/C;;;OAGG;IACG,wBAAwB,CAAC,YAAY,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IA4BnE;;;;;;;;;;;;;;;;;;OAkBG;IACG,OAAO,CAAC,MAAM,EAAE,GAAG,GAAG,OAAO,CAAC,CAAC,CAAC;IAwBtC;;;;;;;;;;;;;;;;;OAiBG;IACG,IAAI,CAAC,MAAM,EAAE,GAAG,GAAG,OAAO,CAAC,CAAC,EAAE,CAAC;IA2BrC;;;;;;;;;;;;;;;;;;;;OAoBG;IACG,cAAc,CAAC,MAAM,EAAE,GAAG,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,GAAG,GAAG,OAAO,CAAC,CAAC,EAAE,CAAC;IA8B3F;;;;;OAKG;IACG,iBAAiB,CAAC,EAAE,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAE,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,CAAC,CAAC;IA+B9E;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA+BG;IACG,SAAS,CAAC,QAAQ,EAAE,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IAe5E;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA8BG;IACG,UAAU,CAAC,QAAQ,EAAE,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IAqB7E;;;OAGG;IACH,OAAO,CAAC,SAAS;IAajB;;;;OAIG;IACH,OAAO,CAAC,gCAAgC;IAoCxC,OAAO,CAAC,SAAS;IAuBjB;;;;OAIG;IACH,OAAO,CAAC,0BAA0B;IASlC;;OAEG;IACH,OAAO,CAAC,6BAA6B;CAOtC"}
1
+ {"version":3,"file":"dynamo-nts-db.service.d.ts","sourceRoot":"","sources":["../../src/_services/dynamo-nts-db.service.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,QAAQ,MAAM,UAAU,CAAC;AAErC,OAAO,EAAE,eAAe,EAAE,oBAAoB,EAA8C,MAAM,uBAAuB,CAAC;AAE1H;;GAEG;AACH,qBAAa,mBAAmB,CAAC,CAAC,SAAS,eAAe;IAc/C,UAAU,EAAE,oBAAoB;IAbzC,SAAS,6DAA4D;IAErE,OAAO,CAAC,WAAW,CAAS;IAE5B,mBAAmB,SAA2F;IAE9G;;;;;OAKG;gBAEM,UAAU,EAAE,oBAAoB;IAKzC;;;;OAIG;IACG,UAAU,CAAC,IAAI,EAAE,CAAC,EAAE,OAAO,EAAE,MAAM,GAAG,OAAO,CAAC,CAAC,CAAC;IAuCtD;;;;OAIG;IACG,UAAU,CAAC,IAAI,EAAE,CAAC,EAAE,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,CAAC,CAAC;IAqCvD;;;;OAIG;IACG,WAAW,CAAC,EAAE,EAAE,MAAM,GAAG,OAAO,CAAC,CAAC,CAAC;IAyBzC;;;;OAIG;IACG,qBAAqB,CAAC,YAAY,EAAE,MAAM,GAAG,OAAO,CAAC,CAAC,CAAC;IAmC7D;;;;OAIG;IACG,yBAAyB,CAAC,YAAY,EAAE,MAAM,GAAG,OAAO,CAAC,CAAC,EAAE,CAAC;IAmCnE;;;;OAIG;IACG,0BAA0B,CAAC,GAAG,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC,CAAC,EAAE,CAAC;IAmC7D;;;;;;OAMG;IACG,UAAU,CAAC,QAAQ,EAAE,MAAM,EAAE,qBAAqB,CAAC,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC,CAAC,EAAE,CAAC;IAwFlF;;;OAGG;IACG,MAAM,IAAI,OAAO,CAAC,CAAC,EAAE,CAAC;IAuB5B;;;OAGG;IACG,cAAc,CAAC,EAAE,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IAa/C;;;OAGG;IACG,wBAAwB,CAAC,YAAY,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IA6BnE;;;;;;;;;;;;;;;;;;;;;;;OAuBG;IACG,OAAO,CAAC,MAAM,EAAE,GAAG,GAAG,OAAO,CAAC,CAAC,CAAC;IAyBtC;;;;;;;;;;;;;;;;;;;;;;;;OAwBG;IACG,IAAI,CAAC,MAAM,EAAE,GAAG,GAAG,OAAO,CAAC,CAAC,EAAE,CAAC;IAyBrC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA+BG;IACG,cAAc,CAAC,MAAM,EAAE,GAAG,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,GAAG,GAAG,OAAO,CAAC,CAAC,EAAE,CAAC;IA4B3F;;;;;;OAMG;IACG,iBAAiB,CAAC,EAAE,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAE,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,CAAC,CAAC;IAkC9E;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAkDG;IACG,SAAS,CAAC,QAAQ,EAAE,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IAiB5E;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAiDG;IACG,UAAU,CAAC,QAAQ,EAAE,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IAsB7E;;;OAGG;IACH,OAAO,CAAC,SAAS;IAajB;;;;OAIG;IACH,OAAO,CAAC,gCAAgC;IAoCxC,OAAO,CAAC,SAAS;IAuBjB;;;;OAIG;IACH,OAAO,CAAC,0BAA0B;IASlC;;OAEG;IACH,OAAO,CAAC,6BAA6B;CAOtC"}