@punks/backend-entity-manager 0.0.63 → 0.0.64
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 +31 -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 +4 -1
- package/dist/cjs/types/platforms/nest/dto/facets.d.ts +14 -5
- package/dist/cjs/types/platforms/nest/dto/index.d.ts +1 -1
- package/dist/esm/index.js +29 -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 +4 -1
- package/dist/esm/types/platforms/nest/dto/facets.d.ts +14 -5
- package/dist/esm/types/platforms/nest/dto/index.d.ts +1 -1
- package/dist/index.d.ts +18 -6
- package/package.json +1 -1
package/dist/cjs/index.js
CHANGED
|
@@ -257,36 +257,54 @@ 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
270
|
class NumericFacet {
|
|
271
271
|
}
|
|
272
|
+
__decorate([
|
|
273
|
+
swagger.ApiProperty({ type: [NumericFacetItem] }),
|
|
274
|
+
__metadata("design:type", Array)
|
|
275
|
+
], NumericFacet.prototype, "items", void 0);
|
|
276
|
+
class BooleanFacetItem {
|
|
277
|
+
}
|
|
272
278
|
__decorate([
|
|
273
279
|
swagger.ApiProperty(),
|
|
274
|
-
__metadata("design:type",
|
|
275
|
-
],
|
|
280
|
+
__metadata("design:type", Boolean)
|
|
281
|
+
], BooleanFacetItem.prototype, "value", void 0);
|
|
276
282
|
__decorate([
|
|
277
283
|
swagger.ApiProperty({ nullable: true }),
|
|
278
284
|
__metadata("design:type", String)
|
|
279
|
-
],
|
|
285
|
+
], BooleanFacetItem.prototype, "name", void 0);
|
|
280
286
|
class BooleanFacet {
|
|
281
287
|
}
|
|
288
|
+
__decorate([
|
|
289
|
+
swagger.ApiProperty({ type: [BooleanFacetItem] }),
|
|
290
|
+
__metadata("design:type", Array)
|
|
291
|
+
], BooleanFacet.prototype, "items", void 0);
|
|
292
|
+
class StringFacetItem {
|
|
293
|
+
}
|
|
282
294
|
__decorate([
|
|
283
295
|
swagger.ApiProperty(),
|
|
284
|
-
__metadata("design:type",
|
|
285
|
-
],
|
|
296
|
+
__metadata("design:type", String)
|
|
297
|
+
], StringFacetItem.prototype, "value", void 0);
|
|
286
298
|
__decorate([
|
|
287
299
|
swagger.ApiProperty({ nullable: true }),
|
|
288
300
|
__metadata("design:type", String)
|
|
289
|
-
],
|
|
301
|
+
], StringFacetItem.prototype, "name", void 0);
|
|
302
|
+
class StringFacet {
|
|
303
|
+
}
|
|
304
|
+
__decorate([
|
|
305
|
+
swagger.ApiProperty({ type: [StringFacetItem] }),
|
|
306
|
+
__metadata("design:type", Array)
|
|
307
|
+
], StringFacet.prototype, "items", void 0);
|
|
290
308
|
|
|
291
309
|
const AuthenticationExtensionSymbols = {
|
|
292
310
|
UserService: Symbol.for("WP.EXT:AUTHENTICATION.USER_SERVICE"),
|
|
@@ -25414,6 +25432,7 @@ exports.AuthenticationEvents = AuthenticationEvents;
|
|
|
25414
25432
|
exports.AuthenticationExtensionSymbols = AuthenticationExtensionSymbols;
|
|
25415
25433
|
exports.AwsSesEmailTemplate = AwsSesEmailTemplate;
|
|
25416
25434
|
exports.BooleanFacet = BooleanFacet;
|
|
25435
|
+
exports.BooleanFacetItem = BooleanFacetItem;
|
|
25417
25436
|
exports.EntityManagerConfigurationError = EntityManagerConfigurationError;
|
|
25418
25437
|
exports.EntityManagerException = EntityManagerException;
|
|
25419
25438
|
exports.EntityManagerSymbols = EntityManagerSymbols;
|
|
@@ -25430,12 +25449,14 @@ exports.NestTypeOrmEntitySeeder = NestTypeOrmEntitySeeder;
|
|
|
25430
25449
|
exports.NestTypeOrmQueryBuilder = NestTypeOrmQueryBuilder;
|
|
25431
25450
|
exports.NestTypeOrmRepository = NestTypeOrmRepository;
|
|
25432
25451
|
exports.NumericFacet = NumericFacet;
|
|
25452
|
+
exports.NumericFacetItem = NumericFacetItem;
|
|
25433
25453
|
exports.OperationTokenMismatchError = OperationTokenMismatchError;
|
|
25434
25454
|
exports.PLATFORM_EVENT_NAMESPACE = PLATFORM_EVENT_NAMESPACE;
|
|
25435
25455
|
exports.PlatformEvents = PlatformEvents;
|
|
25436
25456
|
exports.QueryBuilderBase = QueryBuilderBase;
|
|
25437
25457
|
exports.SendgridEmailTemplate = SendgridEmailTemplate;
|
|
25438
25458
|
exports.StringFacet = StringFacet;
|
|
25459
|
+
exports.StringFacetItem = StringFacetItem;
|
|
25439
25460
|
exports.WpAppInitializer = WpAppInitializer;
|
|
25440
25461
|
exports.WpAwsSesEmailTemplate = WpAwsSesEmailTemplate;
|
|
25441
25462
|
exports.WpEmailTemplate = WpEmailTemplate;
|