@punks/backend-entity-manager 0.0.63 → 0.0.65
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/cjs/index.js +43 -10
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/abstractions/index.d.ts +1 -1
- package/dist/cjs/types/abstractions/queries.d.ts +5 -1
- package/dist/cjs/types/platforms/nest/dto/facets.d.ts +17 -5
- package/dist/cjs/types/platforms/nest/dto/index.d.ts +1 -1
- package/dist/esm/index.js +41 -11
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/abstractions/index.d.ts +1 -1
- package/dist/esm/types/abstractions/queries.d.ts +5 -1
- package/dist/esm/types/platforms/nest/dto/facets.d.ts +17 -5
- package/dist/esm/types/platforms/nest/dto/index.d.ts +1 -1
- package/dist/index.d.ts +22 -6
- package/package.json +1 -1
package/dist/cjs/index.js
CHANGED
|
@@ -257,36 +257,66 @@ typeof SuppressedError === "function" ? SuppressedError : function (error, suppr
|
|
|
257
257
|
return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
|
|
258
258
|
};
|
|
259
259
|
|
|
260
|
-
class
|
|
260
|
+
class NumericFacetItem {
|
|
261
261
|
}
|
|
262
262
|
__decorate([
|
|
263
263
|
swagger.ApiProperty(),
|
|
264
|
-
__metadata("design:type",
|
|
265
|
-
],
|
|
264
|
+
__metadata("design:type", Number)
|
|
265
|
+
], NumericFacetItem.prototype, "value", void 0);
|
|
266
266
|
__decorate([
|
|
267
267
|
swagger.ApiProperty({ nullable: true }),
|
|
268
268
|
__metadata("design:type", String)
|
|
269
|
-
],
|
|
269
|
+
], NumericFacetItem.prototype, "name", void 0);
|
|
270
|
+
__decorate([
|
|
271
|
+
swagger.ApiProperty({ nullable: true }),
|
|
272
|
+
__metadata("design:type", Number)
|
|
273
|
+
], NumericFacetItem.prototype, "count", void 0);
|
|
270
274
|
class NumericFacet {
|
|
271
275
|
}
|
|
276
|
+
__decorate([
|
|
277
|
+
swagger.ApiProperty({ type: [NumericFacetItem] }),
|
|
278
|
+
__metadata("design:type", Array)
|
|
279
|
+
], NumericFacet.prototype, "items", void 0);
|
|
280
|
+
class BooleanFacetItem {
|
|
281
|
+
}
|
|
272
282
|
__decorate([
|
|
273
283
|
swagger.ApiProperty(),
|
|
274
|
-
__metadata("design:type",
|
|
275
|
-
],
|
|
284
|
+
__metadata("design:type", Boolean)
|
|
285
|
+
], BooleanFacetItem.prototype, "value", void 0);
|
|
276
286
|
__decorate([
|
|
277
287
|
swagger.ApiProperty({ nullable: true }),
|
|
278
288
|
__metadata("design:type", String)
|
|
279
|
-
],
|
|
289
|
+
], BooleanFacetItem.prototype, "name", void 0);
|
|
290
|
+
__decorate([
|
|
291
|
+
swagger.ApiProperty({ nullable: true }),
|
|
292
|
+
__metadata("design:type", Number)
|
|
293
|
+
], BooleanFacetItem.prototype, "count", void 0);
|
|
280
294
|
class BooleanFacet {
|
|
281
295
|
}
|
|
296
|
+
__decorate([
|
|
297
|
+
swagger.ApiProperty({ type: [BooleanFacetItem] }),
|
|
298
|
+
__metadata("design:type", Array)
|
|
299
|
+
], BooleanFacet.prototype, "items", void 0);
|
|
300
|
+
class StringFacetItem {
|
|
301
|
+
}
|
|
282
302
|
__decorate([
|
|
283
303
|
swagger.ApiProperty(),
|
|
284
|
-
__metadata("design:type",
|
|
285
|
-
],
|
|
304
|
+
__metadata("design:type", String)
|
|
305
|
+
], StringFacetItem.prototype, "value", void 0);
|
|
286
306
|
__decorate([
|
|
287
307
|
swagger.ApiProperty({ nullable: true }),
|
|
288
308
|
__metadata("design:type", String)
|
|
289
|
-
],
|
|
309
|
+
], StringFacetItem.prototype, "name", void 0);
|
|
310
|
+
__decorate([
|
|
311
|
+
swagger.ApiProperty({ nullable: true }),
|
|
312
|
+
__metadata("design:type", Number)
|
|
313
|
+
], StringFacetItem.prototype, "count", void 0);
|
|
314
|
+
class StringFacet {
|
|
315
|
+
}
|
|
316
|
+
__decorate([
|
|
317
|
+
swagger.ApiProperty({ type: [StringFacetItem] }),
|
|
318
|
+
__metadata("design:type", Array)
|
|
319
|
+
], StringFacet.prototype, "items", void 0);
|
|
290
320
|
|
|
291
321
|
const AuthenticationExtensionSymbols = {
|
|
292
322
|
UserService: Symbol.for("WP.EXT:AUTHENTICATION.USER_SERVICE"),
|
|
@@ -25414,6 +25444,7 @@ exports.AuthenticationEvents = AuthenticationEvents;
|
|
|
25414
25444
|
exports.AuthenticationExtensionSymbols = AuthenticationExtensionSymbols;
|
|
25415
25445
|
exports.AwsSesEmailTemplate = AwsSesEmailTemplate;
|
|
25416
25446
|
exports.BooleanFacet = BooleanFacet;
|
|
25447
|
+
exports.BooleanFacetItem = BooleanFacetItem;
|
|
25417
25448
|
exports.EntityManagerConfigurationError = EntityManagerConfigurationError;
|
|
25418
25449
|
exports.EntityManagerException = EntityManagerException;
|
|
25419
25450
|
exports.EntityManagerSymbols = EntityManagerSymbols;
|
|
@@ -25430,12 +25461,14 @@ exports.NestTypeOrmEntitySeeder = NestTypeOrmEntitySeeder;
|
|
|
25430
25461
|
exports.NestTypeOrmQueryBuilder = NestTypeOrmQueryBuilder;
|
|
25431
25462
|
exports.NestTypeOrmRepository = NestTypeOrmRepository;
|
|
25432
25463
|
exports.NumericFacet = NumericFacet;
|
|
25464
|
+
exports.NumericFacetItem = NumericFacetItem;
|
|
25433
25465
|
exports.OperationTokenMismatchError = OperationTokenMismatchError;
|
|
25434
25466
|
exports.PLATFORM_EVENT_NAMESPACE = PLATFORM_EVENT_NAMESPACE;
|
|
25435
25467
|
exports.PlatformEvents = PlatformEvents;
|
|
25436
25468
|
exports.QueryBuilderBase = QueryBuilderBase;
|
|
25437
25469
|
exports.SendgridEmailTemplate = SendgridEmailTemplate;
|
|
25438
25470
|
exports.StringFacet = StringFacet;
|
|
25471
|
+
exports.StringFacetItem = StringFacetItem;
|
|
25439
25472
|
exports.WpAppInitializer = WpAppInitializer;
|
|
25440
25473
|
exports.WpAwsSesEmailTemplate = WpAwsSesEmailTemplate;
|
|
25441
25474
|
exports.WpEmailTemplate = WpEmailTemplate;
|