@futdevpro/nts-dynamo 1.5.51 → 1.5.52

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 +23 -1
  15. package/lib/_services/dynamo-nts-data.service.d.ts.map +1 -1
  16. package/lib/_services/dynamo-nts-data.service.js +73 -53
  17. package/lib/_services/dynamo-nts-data.service.js.map +1 -1
  18. package/lib/_services/dynamo-nts-db.service.d.ts +164 -119
  19. package/lib/_services/dynamo-nts-db.service.d.ts.map +1 -1
  20. package/lib/_services/dynamo-nts-db.service.js +327 -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 +74 -54
  33. package/src/_services/dynamo-nts-db.service.ts +355 -281
  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,64 +75,85 @@ 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
+ * Find the data first by any of its parameters, throws error if not found
104
+ * @param filter if you can, use unique parameters for find!
124
105
  *
125
- * @returns dataList
106
+ * @example
107
+ * // by email:
108
+ * { email: email }
109
+ * //
110
+ * @example
111
+ * // or by id that is in list:
112
+ * { userIds: { $in: this.userId } }
113
+ * //
114
+ * @example
115
+ * // or by number or Date that is Greater Than AND Less Than:
116
+ * { points: { $gt: 2, $lt: 14 } }
117
+ * // further tools (syntax matches with $gt):
118
+ * $eq: // Matches values that are EQual to a specified value.
119
+ * $gte: // Matches values that are Greater Than OR Equal to a specified value.
120
+ * $lte: // Matches values that are Less Than or Equal to a specified value.
121
+ * $ne: // Matches all values that are Not Equal to a specified value.
122
+ * $nin: // Matches None of the values specified IN an array.
123
+ * //
124
+ * @returns {T[]} dataList: T[]
126
125
  */
127
126
  find(filter: any): Promise<T[]>;
128
127
  /**
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.
128
+ * Find the data first by any of its parameters, throws error if not found
129
+ * @param filter if you can, use unique parameters for find!
143
130
  *
131
+ * @example
132
+ * // by email:
133
+ * { email: email }
134
+ * //
135
+ * @example
136
+ * // or by id that is in list:
137
+ * { userIds: { $in: this.userId } }
138
+ * //
139
+ * @example
140
+ * // or by number or Date that is Greater Than AND Less Than:
141
+ * { points: { $gt: 2, $lt: 14 } }
142
+ * // further tools (syntax matches with $gt):
143
+ * $eq: // Matches values that are EQual to a specified value.
144
+ * $gte: // Matches values that are Greater Than OR Equal to a specified value.
145
+ * $lte: // Matches values that are Less Than or Equal to a specified value.
146
+ * $ne: // Matches all values that are Not Equal to a specified value.
147
+ * $nin: // Matches None of the values specified IN an array.
148
+ * //
144
149
  * @param page page
145
150
  * @param pageSize pageSize
146
- * @param sort etc. by dateTime: { dateTime: -1 }
147
- * @returns dataList
151
+ * @param sort
152
+ * @example
153
+ * // by dateTime (this uses the basic sort function):
154
+ * { dateTime: -1 }
155
+ * //
156
+ * @returns {T[]} dataList: T[]
148
157
  */
149
158
  findWithPaging(filter: any, page: number, pageSize: number, sort?: any): Promise<T[]>;
150
159
  /**
@@ -155,70 +164,106 @@ export declare class DynamoNTS_DBService<T extends Dynamo_Metadata> {
155
164
  */
156
165
  findByIdAndUpdate(id: string, update: any, modifier: string): Promise<T>;
157
166
  /**
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.
167
+ * Find the data first by any of its parameters, throws error if not found
168
+ * @param filter This uses the basic Mongoose updateOne.
169
+ * If you can, use unique parameters for find!
170
+ * @example
171
+ * // by email:
172
+ * { email: email }
173
+ * //
174
+ * @example
175
+ * // or by id that is in list:
176
+ * { userIds: { $in: this.userId } }
177
+ * //
178
+ * @example
179
+ * // or by number or Date that is Greater Than AND Less Than:
180
+ * { points: { $gt: 2, $lt: 14 } }
181
+ * // further tools (syntax matches with $gt):
182
+ * $eq: // Matches values that are EQual to a specified value.
183
+ * $gte: // Matches values that are Greater Than OR Equal to a specified value.
184
+ * $lte: // Matches values that are Less Than or Equal to a specified value.
185
+ * $ne: // Matches all values that are Not Equal to a specified value.
186
+ * $nin: // Matches None of the values specified IN an array.
187
+ * //
173
188
  *
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)
188
- */
189
- updateOne(updateBy: any, update: any, modifier: string): Promise<void>;
189
+ * @param update this uses the basic Mongoose updateOne
190
+ * @example
191
+ * // increase a specific value (here by 15):
192
+ * { $inc: { popularity: 15 } }
193
+ * //
194
+ * @example
195
+ * // or add element to a list:
196
+ * { $push: { reactions: this.newReaction }
197
+ * // or add multiple elements to a list
198
+ * { $push: { schedule: {$each: [ monday, tuesday, wednesday ] } } }
199
+ * //
200
+ * @example
201
+ * // or all at once
202
+ * {
203
+ * $inc: { popularity: this.newVote.amount },
204
+ * emailVerified: true,
205
+ * $push: { reactions: this.newReaction }
206
+ * }
207
+ * // further tools (syntax matches with $inc):
208
+ * $currentDate: // Sets the value of a field to current date, either as a Date or a Timestamp.
209
+ * $min: // Only updates the field if the specified value is less than the existing field value.
210
+ * $max: // Only updates the field if the specified value is greater than the existing field value.
211
+ * $mul: // Multiplies the value of the field by the specified amount.
212
+ * $rename: // Renames a field.
213
+ * $unset: // Removes the specified field from a document. (set: "" to value)
214
+ * //
215
+ */
216
+ updateOne(updateBy: any, update: any, modifier: string): Promise<T>;
190
217
  /**
191
218
  * 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.
219
+ * @param filter This uses the basic Mongoose updateMany.
220
+ * @example
221
+ * // by email:
222
+ * { email: email }
223
+ * //
224
+ * @example
225
+ * // or by id that is in list:
226
+ * { userIds: { $in: this.userId } }
227
+ * //
228
+ * @example
229
+ * // or by number or Date that is Greater Than AND Less Than:
230
+ * { points: { $gt: 2, $lt: 14 } }
231
+ * // further tools (syntax matches with $gt):
232
+ * $eq: // Matches values that are EQual to a specified value.
233
+ * $gte: // Matches values that are Greater Than OR Equal to a specified value.
234
+ * $lte: // Matches values that are Less Than or Equal to a specified value.
235
+ * $ne: // Matches all values that are Not Equal to a specified value.
236
+ * $nin: // Matches None of the values specified IN an array.
237
+ * //
205
238
  *
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)
220
- */
221
- updateMany(updateBy: any, update: any, modifier: string): Promise<void>;
239
+ * @param update this uses the basic Mongoose updateOne
240
+ * @example
241
+ * // increase a specific value (here by 15):
242
+ * { $inc: { popularity: 15 } }
243
+ * //
244
+ * @example
245
+ * // or add element to a list:
246
+ * { $push: { reactions: this.newReaction }
247
+ * // or add multiple elements to a list
248
+ * { $push: { schedule: {$each: [ monday, tuesday, wednesday ] } } }
249
+ * //
250
+ * @example
251
+ * // or all at once
252
+ * {
253
+ * $inc: { popularity: this.newVote.amount },
254
+ * emailVerified: true,
255
+ * $push: { reactions: this.newReaction }
256
+ * }
257
+ * // further tools (syntax matches with $inc):
258
+ * $currentDate: // Sets the value of a field to current date, either as a Date or a Timestamp.
259
+ * $min: // Only updates the field if the specified value is less than the existing field value.
260
+ * $max: // Only updates the field if the specified value is greater than the existing field value.
261
+ * $mul: // Multiplies the value of the field by the specified amount.
262
+ * $rename: // Renames a field.
263
+ * $unset: // Removes the specified field from a document. (set: "" to value)
264
+ * //
265
+ */
266
+ updateMany(updateBy: any, update: any, modifier: string): Promise<T[]>;
222
267
  /**
223
268
  * builds and returns mongoose schema
224
269
  * @returns schema
@@ -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;;;;;;;;;;;;;;;;;;;;;;;OAuBG;IACG,IAAI,CAAC,MAAM,EAAE,GAAG,GAAG,OAAO,CAAC,CAAC,EAAE,CAAC;IAyBrC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA8BG;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;;;;;OAKG;IACG,iBAAiB,CAAC,EAAE,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAE,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,CAAC,CAAC;IAoC9E;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAiDG;IACG,SAAS,CAAC,QAAQ,EAAE,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,CAAC,CAAC;IAqCzE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAgDG;IACG,UAAU,CAAC,QAAQ,EAAE,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,CAAC,EAAE,CAAC;IAmC5E;;;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"}